Warning: session_start(): Session cannot be started after headers have already been sent in /home/tvrreohg/public_html/manga.php on line 13
/*M!999999\- enable the sandbox mode */ -- MariaDB dump 10.19 Distrib 10.6.22-MariaDB, for Linux (x86_64) -- -- Host: localhost Database: admin_victorq -- ------------------------------------------------------ -- Server version 10.6.22-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 `victorq_commentmeta` -- DROP TABLE IF EXISTS `victorq_commentmeta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `victorq_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 `victorq_commentmeta` -- LOCK TABLES `victorq_commentmeta` WRITE; /*!40000 ALTER TABLE `victorq_commentmeta` DISABLE KEYS */; /*!40000 ALTER TABLE `victorq_commentmeta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `victorq_comments` -- DROP TABLE IF EXISTS `victorq_comments`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `victorq_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 `victorq_comments` -- LOCK TABLES `victorq_comments` WRITE; /*!40000 ALTER TABLE `victorq_comments` DISABLE KEYS */; /*!40000 ALTER TABLE `victorq_comments` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `victorq_e_events` -- DROP TABLE IF EXISTS `victorq_e_events`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `victorq_e_events` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `event_data` text DEFAULT NULL, `created_at` datetime NOT NULL, PRIMARY KEY (`id`), KEY `created_at_index` (`created_at`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `victorq_e_events` -- LOCK TABLES `victorq_e_events` WRITE; /*!40000 ALTER TABLE `victorq_e_events` DISABLE KEYS */; INSERT INTO `victorq_e_events` VALUES (1,'{\"event\":\"modal load\",\"version\":\"\",\"details\":\"{\\\"placement\\\":\\\"Onboarding wizard\\\",\\\"step\\\":\\\"account\\\",\\\"user_state\\\":\\\"anon\\\"}\",\"ts\":\"2024-07-23T14:33:43.141+04:00\"}','2024-07-23 14:33:43'),(2,'{\"event\":\"close modal\",\"version\":\"\",\"details\":\"{\\\"placement\\\":\\\"Onboarding wizard\\\",\\\"step\\\":\\\"account\\\"}\",\"ts\":\"2024-07-23T14:33:45.036+04:00\"}','2024-07-23 14:33:45'); /*!40000 ALTER TABLE `victorq_e_events` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `victorq_e_submissions` -- DROP TABLE IF EXISTS `victorq_e_submissions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `victorq_e_submissions` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `type` varchar(60) DEFAULT NULL, `hash_id` varchar(60) NOT NULL, `main_meta_id` bigint(20) unsigned NOT NULL COMMENT 'Id of main field. to represent the main meta field', `post_id` bigint(20) unsigned NOT NULL, `referer` varchar(500) NOT NULL, `referer_title` varchar(300) DEFAULT NULL, `element_id` varchar(20) NOT NULL, `form_name` varchar(60) NOT NULL, `campaign_id` bigint(20) unsigned NOT NULL, `user_id` bigint(20) unsigned DEFAULT NULL, `user_ip` varchar(46) NOT NULL, `user_agent` text NOT NULL, `actions_count` int(11) DEFAULT 0, `actions_succeeded_count` int(11) DEFAULT 0, `status` varchar(20) NOT NULL, `is_read` tinyint(1) NOT NULL DEFAULT 0, `meta` text DEFAULT NULL, `created_at_gmt` datetime NOT NULL, `updated_at_gmt` datetime NOT NULL, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `hash_id_unique_index` (`hash_id`), KEY `main_meta_id_index` (`main_meta_id`), KEY `hash_id_index` (`hash_id`), KEY `type_index` (`type`), KEY `post_id_index` (`post_id`), KEY `element_id_index` (`element_id`), KEY `campaign_id_index` (`campaign_id`), KEY `user_id_index` (`user_id`), KEY `user_ip_index` (`user_ip`), KEY `status_index` (`status`), KEY `is_read_index` (`is_read`), KEY `created_at_gmt_index` (`created_at_gmt`), KEY `updated_at_gmt_index` (`updated_at_gmt`), KEY `created_at_index` (`created_at`), KEY `updated_at_index` (`updated_at`), KEY `referer_index` (`referer`(191)), KEY `referer_title_index` (`referer_title`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `victorq_e_submissions` -- LOCK TABLES `victorq_e_submissions` WRITE; /*!40000 ALTER TABLE `victorq_e_submissions` DISABLE KEYS */; /*!40000 ALTER TABLE `victorq_e_submissions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `victorq_e_submissions_actions_log` -- DROP TABLE IF EXISTS `victorq_e_submissions_actions_log`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `victorq_e_submissions_actions_log` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `submission_id` bigint(20) unsigned NOT NULL, `action_name` varchar(60) NOT NULL, `action_label` varchar(60) DEFAULT NULL, `status` varchar(20) NOT NULL, `log` text DEFAULT NULL, `created_at_gmt` datetime NOT NULL, `updated_at_gmt` datetime NOT NULL, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL, PRIMARY KEY (`id`), KEY `submission_id_index` (`submission_id`), KEY `action_name_index` (`action_name`), KEY `status_index` (`status`), KEY `created_at_gmt_index` (`created_at_gmt`), KEY `updated_at_gmt_index` (`updated_at_gmt`), KEY `created_at_index` (`created_at`), KEY `updated_at_index` (`updated_at`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `victorq_e_submissions_actions_log` -- LOCK TABLES `victorq_e_submissions_actions_log` WRITE; /*!40000 ALTER TABLE `victorq_e_submissions_actions_log` DISABLE KEYS */; /*!40000 ALTER TABLE `victorq_e_submissions_actions_log` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `victorq_e_submissions_values` -- DROP TABLE IF EXISTS `victorq_e_submissions_values`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `victorq_e_submissions_values` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `submission_id` bigint(20) unsigned NOT NULL DEFAULT 0, `key` varchar(60) DEFAULT NULL, `value` longtext DEFAULT NULL, PRIMARY KEY (`id`), KEY `submission_id_index` (`submission_id`), KEY `key_index` (`key`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `victorq_e_submissions_values` -- LOCK TABLES `victorq_e_submissions_values` WRITE; /*!40000 ALTER TABLE `victorq_e_submissions_values` DISABLE KEYS */; /*!40000 ALTER TABLE `victorq_e_submissions_values` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `victorq_links` -- DROP TABLE IF EXISTS `victorq_links`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `victorq_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 `victorq_links` -- LOCK TABLES `victorq_links` WRITE; /*!40000 ALTER TABLE `victorq_links` DISABLE KEYS */; /*!40000 ALTER TABLE `victorq_links` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `victorq_options` -- DROP TABLE IF EXISTS `victorq_options`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `victorq_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=5573 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `victorq_options` -- LOCK TABLES `victorq_options` WRITE; /*!40000 ALTER TABLE `victorq_options` DISABLE KEYS */; INSERT INTO `victorq_options` VALUES (1,'cron','a:11:{i:1750185092;a:2:{s:32:\"recovery_mode_clean_expired_keys\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s: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:1750185093;a:3:{s:19:\"wp_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:25:\"delete_expired_transients\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s: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:1750185095;a:1:{s:30:\"wp_scheduled_auto_draft_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1750185111;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:1750185220;a:1:{s:28:\"elementor/tracker/send_event\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1750190492;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:1750192292;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:1750268213;a:1:{s:21:\"ai1wm_storage_cleanup\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1750271492;a:1:{s:30:\"wp_site_health_scheduled_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1750311013;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;}}}s:7:\"version\";i:2;}','on'),(2,'siteurl','https://victor-quintero.designsfunnelserver.com','on'),(3,'home','https://victor-quintero.designsfunnelserver.com','on'),(4,'blogname','Prestige Luxury Cleanings LLC','on'),(5,'blogdescription','','on'),(6,'users_can_register','0','on'),(7,'admin_email','designsfunnel@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','password','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','0','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','/%postname%/','on'),(30,'rewrite_rules','a:191:{s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:21:\"^index.php/wp-json/?$\";s:22:\"index.php?rest_route=/\";s:24:\"^index.php/wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:17:\"^wp-sitemap\\.xml$\";s:23:\"index.php?sitemap=index\";s:17:\"^wp-sitemap\\.xsl$\";s:36:\"index.php?sitemap-stylesheet=sitemap\";s:23:\"^wp-sitemap-index\\.xsl$\";s:34:\"index.php?sitemap-stylesheet=index\";s:48:\"^wp-sitemap-([a-z]+?)-([a-z\\d_-]+?)-(\\d+?)\\.xml$\";s:75:\"index.php?sitemap=$matches[1]&sitemap-subtype=$matches[2]&paged=$matches[3]\";s:34:\"^wp-sitemap-([a-z]+?)-(\\d+?)\\.xml$\";s:47:\"index.php?sitemap=$matches[1]&paged=$matches[2]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s: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:42:\"e-landing-page/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:52:\"e-landing-page/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:72:\"e-landing-page/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:67:\"e-landing-page/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:67:\"e-landing-page/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:48:\"e-landing-page/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:31:\"e-landing-page/([^/]+)/embed/?$\";s:47:\"index.php?e-landing-page=$matches[1]&embed=true\";s:35:\"e-landing-page/([^/]+)/trackback/?$\";s:41:\"index.php?e-landing-page=$matches[1]&tb=1\";s:43:\"e-landing-page/([^/]+)/page/?([0-9]{1,})/?$\";s:54:\"index.php?e-landing-page=$matches[1]&paged=$matches[2]\";s:50:\"e-landing-page/([^/]+)/comment-page-([0-9]{1,})/?$\";s:54:\"index.php?e-landing-page=$matches[1]&cpage=$matches[2]\";s:39:\"e-landing-page/([^/]+)(?:/([0-9]+))?/?$\";s:53:\"index.php?e-landing-page=$matches[1]&page=$matches[2]\";s:31:\"e-landing-page/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:41:\"e-landing-page/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:61:\"e-landing-page/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"e-landing-page/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"e-landing-page/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:37:\"e-landing-page/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:39:\"jkit-header/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:49:\"jkit-header/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:69:\"jkit-header/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:64:\"jkit-header/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:64:\"jkit-header/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:45:\"jkit-header/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:28:\"jkit-header/([^/]+)/embed/?$\";s:44:\"index.php?jkit-header=$matches[1]&embed=true\";s:32:\"jkit-header/([^/]+)/trackback/?$\";s:38:\"index.php?jkit-header=$matches[1]&tb=1\";s:40:\"jkit-header/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?jkit-header=$matches[1]&paged=$matches[2]\";s:47:\"jkit-header/([^/]+)/comment-page-([0-9]{1,})/?$\";s:51:\"index.php?jkit-header=$matches[1]&cpage=$matches[2]\";s:36:\"jkit-header/([^/]+)(?:/([0-9]+))?/?$\";s:50:\"index.php?jkit-header=$matches[1]&page=$matches[2]\";s:28:\"jkit-header/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:38:\"jkit-header/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:58:\"jkit-header/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:53:\"jkit-header/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:53:\"jkit-header/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:34:\"jkit-header/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:39:\"jkit-footer/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:49:\"jkit-footer/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:69:\"jkit-footer/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:64:\"jkit-footer/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:64:\"jkit-footer/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:45:\"jkit-footer/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:28:\"jkit-footer/([^/]+)/embed/?$\";s:44:\"index.php?jkit-footer=$matches[1]&embed=true\";s:32:\"jkit-footer/([^/]+)/trackback/?$\";s:38:\"index.php?jkit-footer=$matches[1]&tb=1\";s:40:\"jkit-footer/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?jkit-footer=$matches[1]&paged=$matches[2]\";s:47:\"jkit-footer/([^/]+)/comment-page-([0-9]{1,})/?$\";s:51:\"index.php?jkit-footer=$matches[1]&cpage=$matches[2]\";s:36:\"jkit-footer/([^/]+)(?:/([0-9]+))?/?$\";s:50:\"index.php?jkit-footer=$matches[1]&page=$matches[2]\";s:28:\"jkit-footer/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:38:\"jkit-footer/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:58:\"jkit-footer/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:53:\"jkit-footer/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:53:\"jkit-footer/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:34:\"jkit-footer/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:41:\"jkit-template/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:51:\"jkit-template/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:71:\"jkit-template/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:66:\"jkit-template/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:66:\"jkit-template/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:47:\"jkit-template/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:30:\"jkit-template/([^/]+)/embed/?$\";s:46:\"index.php?jkit-template=$matches[1]&embed=true\";s:34:\"jkit-template/([^/]+)/trackback/?$\";s:40:\"index.php?jkit-template=$matches[1]&tb=1\";s:42:\"jkit-template/([^/]+)/page/?([0-9]{1,})/?$\";s:53:\"index.php?jkit-template=$matches[1]&paged=$matches[2]\";s:49:\"jkit-template/([^/]+)/comment-page-([0-9]{1,})/?$\";s:53:\"index.php?jkit-template=$matches[1]&cpage=$matches[2]\";s:38:\"jkit-template/([^/]+)(?:/([0-9]+))?/?$\";s:52:\"index.php?jkit-template=$matches[1]&page=$matches[2]\";s:30:\"jkit-template/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:40:\"jkit-template/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:60:\"jkit-template/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:55:\"jkit-template/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:55:\"jkit-template/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:36:\"jkit-template/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:40:\"elementor-hf/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:50:\"elementor-hf/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:70:\"elementor-hf/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"elementor-hf/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"elementor-hf/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:46:\"elementor-hf/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:29:\"elementor-hf/([^/]+)/embed/?$\";s:45:\"index.php?elementor-hf=$matches[1]&embed=true\";s:33:\"elementor-hf/([^/]+)/trackback/?$\";s:39:\"index.php?elementor-hf=$matches[1]&tb=1\";s:41:\"elementor-hf/([^/]+)/page/?([0-9]{1,})/?$\";s:52:\"index.php?elementor-hf=$matches[1]&paged=$matches[2]\";s:48:\"elementor-hf/([^/]+)/comment-page-([0-9]{1,})/?$\";s:52:\"index.php?elementor-hf=$matches[1]&cpage=$matches[2]\";s:37:\"elementor-hf/([^/]+)(?:/([0-9]+))?/?$\";s:51:\"index.php?elementor-hf=$matches[1]&page=$matches[2]\";s:29:\"elementor-hf/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:39:\"elementor-hf/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:59:\"elementor-hf/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"elementor-hf/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"elementor-hf/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:35:\"elementor-hf/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:38:\"metform-form/.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:48:\"metform-form/.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:68:\"metform-form/.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:63:\"metform-form/.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:63:\"metform-form/.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:44:\"metform-form/.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:27:\"metform-form/(.+?)/embed/?$\";s:45:\"index.php?metform-form=$matches[1]&embed=true\";s:31:\"metform-form/(.+?)/trackback/?$\";s:39:\"index.php?metform-form=$matches[1]&tb=1\";s:39:\"metform-form/(.+?)/page/?([0-9]{1,})/?$\";s:52:\"index.php?metform-form=$matches[1]&paged=$matches[2]\";s:46:\"metform-form/(.+?)/comment-page-([0-9]{1,})/?$\";s:52:\"index.php?metform-form=$matches[1]&cpage=$matches[2]\";s:35:\"metform-form/(.+?)(?:/([0-9]+))?/?$\";s:51:\"index.php?metform-form=$matches[1]&page=$matches[2]\";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:39:\"index.php?&page_id=24&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: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]\";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:37:\"index.php?name=$matches[1]&embed=true\";s:20:\"([^/]+)/trackback/?$\";s:31:\"index.php?name=$matches[1]&tb=1\";s:40:\"([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:35:\"([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:28:\"([^/]+)/page/?([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&paged=$matches[2]\";s:35:\"([^/]+)/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&cpage=$matches[2]\";s:24:\"([^/]+)(?:/([0-9]+))?/?$\";s:43:\"index.php?name=$matches[1]&page=$matches[2]\";s:16:\"[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:26:\"[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:46:\"[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:22:\"[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";}','on'),(31,'hack_file','0','on'),(32,'blog_charset','UTF-8','on'),(33,'moderation_keys','','off'),(34,'active_plugins','a:8:{i:0;s:51:\"all-in-one-wp-migration/all-in-one-wp-migration.php\";i:1;s:31:\"elementor-pro/elementor-pro.php\";i:2;s:23:\"elementor/elementor.php\";i:3;s:35:\"envato-elements/envato-elements.php\";i:4;s:51:\"header-footer-elementor/header-footer-elementor.php\";i:5;s:39:\"jeg-elementor-kit/jeg-elementor-kit.php\";i:6;s:19:\"metform/metform.php\";i:7;s:61:\"premium-addons-for-elementor/premium-addons-for-elementor.php\";}','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','a:2:{i:0;s:109:\"/home/admin/victor-quintero.designsfunnelserver.com/wp-content/themes/prestige-luxury-cleanings-llc/style.css\";i:1;s:0:\"\";}','off'),(41,'template','hello-elementor','on'),(42,'stylesheet','prestige-luxury-cleanings-llc','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','0','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:2:{s:21:\"wp-reset/wp-reset.php\";a:2:{i:0;s:8:\"WP_Reset\";i:1;s:9:\"uninstall\";}s:23:\"elementor/elementor.php\";a:2:{i:0;s:21:\"Elementor\\Maintenance\";i:1;s:9:\"uninstall\";}}','off'),(81,'timezone_string','','on'),(82,'page_for_posts','0','on'),(83,'page_on_front','24','on'),(84,'default_post_format','0','on'),(85,'link_manager_enabled','0','on'),(86,'finished_splitting_shared_terms','1','on'),(87,'site_icon','229','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','1737311492','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:{}','off'),(100,'wp_attachment_pages_enabled','0','on'),(101,'initial_db_version','57155','on'),(102,'victorq_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;}}}','auto'),(103,'fresh_site','0','off'),(104,'user_count','1','off'),(105,'widget_block','a:6:{i:2;a:1:{s:7:\"content\";s:19:\"\";}i:3;a:1:{s:7:\"content\";s:154:\"

Recent Posts

\";}i:4;a:1:{s:7:\"content\";s:227:\"

Recent Comments

\";}i:5;a:1:{s:7:\"content\";s:146:\"

Archives

\";}i:6;a:1:{s:7:\"content\";s:150:\"

Categories

\";}s:12:\"_multiwidget\";i:1;}','auto'),(106,'sidebars_widgets','a:2:{s:19:\"wp_inactive_widgets\";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: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:5:\"6.6.1\";s:5:\"files\";a:496:{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:29:\"comment-content/style-rtl.css\";i:77;s:33:\"comment-content/style-rtl.min.css\";i:78;s:25:\"comment-content/style.css\";i:79;s:29:\"comment-content/style.min.css\";i:80;s:30:\"comment-template/style-rtl.css\";i:81;s:34:\"comment-template/style-rtl.min.css\";i:82;s:26:\"comment-template/style.css\";i:83;s:30:\"comment-template/style.min.css\";i:84;s:42:\"comments-pagination-numbers/editor-rtl.css\";i:85;s:46:\"comments-pagination-numbers/editor-rtl.min.css\";i:86;s:38:\"comments-pagination-numbers/editor.css\";i:87;s:42:\"comments-pagination-numbers/editor.min.css\";i:88;s:34:\"comments-pagination/editor-rtl.css\";i:89;s:38:\"comments-pagination/editor-rtl.min.css\";i:90;s:30:\"comments-pagination/editor.css\";i:91;s:34:\"comments-pagination/editor.min.css\";i:92;s:33:\"comments-pagination/style-rtl.css\";i:93;s:37:\"comments-pagination/style-rtl.min.css\";i:94;s:29:\"comments-pagination/style.css\";i:95;s:33:\"comments-pagination/style.min.css\";i:96;s:29:\"comments-title/editor-rtl.css\";i:97;s:33:\"comments-title/editor-rtl.min.css\";i:98;s:25:\"comments-title/editor.css\";i:99;s:29:\"comments-title/editor.min.css\";i:100;s:23:\"comments/editor-rtl.css\";i:101;s:27:\"comments/editor-rtl.min.css\";i:102;s:19:\"comments/editor.css\";i:103;s:23:\"comments/editor.min.css\";i:104;s:22:\"comments/style-rtl.css\";i:105;s:26:\"comments/style-rtl.min.css\";i:106;s:18:\"comments/style.css\";i:107;s:22:\"comments/style.min.css\";i:108;s:20:\"cover/editor-rtl.css\";i:109;s:24:\"cover/editor-rtl.min.css\";i:110;s:16:\"cover/editor.css\";i:111;s:20:\"cover/editor.min.css\";i:112;s:19:\"cover/style-rtl.css\";i:113;s:23:\"cover/style-rtl.min.css\";i:114;s:15:\"cover/style.css\";i:115;s:19:\"cover/style.min.css\";i:116;s:22:\"details/editor-rtl.css\";i:117;s:26:\"details/editor-rtl.min.css\";i:118;s:18:\"details/editor.css\";i:119;s:22:\"details/editor.min.css\";i:120;s:21:\"details/style-rtl.css\";i:121;s:25:\"details/style-rtl.min.css\";i:122;s:17:\"details/style.css\";i:123;s:21:\"details/style.min.css\";i:124;s:20:\"embed/editor-rtl.css\";i:125;s:24:\"embed/editor-rtl.min.css\";i:126;s:16:\"embed/editor.css\";i:127;s:20:\"embed/editor.min.css\";i:128;s:19:\"embed/style-rtl.css\";i:129;s:23:\"embed/style-rtl.min.css\";i:130;s:15:\"embed/style.css\";i:131;s:19:\"embed/style.min.css\";i:132;s:19:\"embed/theme-rtl.css\";i:133;s:23:\"embed/theme-rtl.min.css\";i:134;s:15:\"embed/theme.css\";i:135;s:19:\"embed/theme.min.css\";i:136;s:19:\"file/editor-rtl.css\";i:137;s:23:\"file/editor-rtl.min.css\";i:138;s:15:\"file/editor.css\";i:139;s:19:\"file/editor.min.css\";i:140;s:18:\"file/style-rtl.css\";i:141;s:22:\"file/style-rtl.min.css\";i:142;s:14:\"file/style.css\";i:143;s:18:\"file/style.min.css\";i:144;s:23:\"footnotes/style-rtl.css\";i:145;s:27:\"footnotes/style-rtl.min.css\";i:146;s:19:\"footnotes/style.css\";i:147;s:23:\"footnotes/style.min.css\";i:148;s:23:\"freeform/editor-rtl.css\";i:149;s:27:\"freeform/editor-rtl.min.css\";i:150;s:19:\"freeform/editor.css\";i:151;s:23:\"freeform/editor.min.css\";i:152;s:22:\"gallery/editor-rtl.css\";i:153;s:26:\"gallery/editor-rtl.min.css\";i:154;s:18:\"gallery/editor.css\";i:155;s:22:\"gallery/editor.min.css\";i:156;s:21:\"gallery/style-rtl.css\";i:157;s:25:\"gallery/style-rtl.min.css\";i:158;s:17:\"gallery/style.css\";i:159;s:21:\"gallery/style.min.css\";i:160;s:21:\"gallery/theme-rtl.css\";i:161;s:25:\"gallery/theme-rtl.min.css\";i:162;s:17:\"gallery/theme.css\";i:163;s:21:\"gallery/theme.min.css\";i:164;s:20:\"group/editor-rtl.css\";i:165;s:24:\"group/editor-rtl.min.css\";i:166;s:16:\"group/editor.css\";i:167;s:20:\"group/editor.min.css\";i:168;s:19:\"group/style-rtl.css\";i:169;s:23:\"group/style-rtl.min.css\";i:170;s:15:\"group/style.css\";i:171;s:19:\"group/style.min.css\";i:172;s:19:\"group/theme-rtl.css\";i:173;s:23:\"group/theme-rtl.min.css\";i:174;s:15:\"group/theme.css\";i:175;s:19:\"group/theme.min.css\";i:176;s:21:\"heading/style-rtl.css\";i:177;s:25:\"heading/style-rtl.min.css\";i:178;s:17:\"heading/style.css\";i:179;s:21:\"heading/style.min.css\";i:180;s:19:\"html/editor-rtl.css\";i:181;s:23:\"html/editor-rtl.min.css\";i:182;s:15:\"html/editor.css\";i:183;s:19:\"html/editor.min.css\";i:184;s:20:\"image/editor-rtl.css\";i:185;s:24:\"image/editor-rtl.min.css\";i:186;s:16:\"image/editor.css\";i:187;s:20:\"image/editor.min.css\";i:188;s:19:\"image/style-rtl.css\";i:189;s:23:\"image/style-rtl.min.css\";i:190;s:15:\"image/style.css\";i:191;s:19:\"image/style.min.css\";i:192;s:19:\"image/theme-rtl.css\";i:193;s:23:\"image/theme-rtl.min.css\";i:194;s:15:\"image/theme.css\";i:195;s:19:\"image/theme.min.css\";i:196;s:29:\"latest-comments/style-rtl.css\";i:197;s:33:\"latest-comments/style-rtl.min.css\";i:198;s:25:\"latest-comments/style.css\";i:199;s:29:\"latest-comments/style.min.css\";i:200;s:27:\"latest-posts/editor-rtl.css\";i:201;s:31:\"latest-posts/editor-rtl.min.css\";i:202;s:23:\"latest-posts/editor.css\";i:203;s:27:\"latest-posts/editor.min.css\";i:204;s:26:\"latest-posts/style-rtl.css\";i:205;s:30:\"latest-posts/style-rtl.min.css\";i:206;s:22:\"latest-posts/style.css\";i:207;s:26:\"latest-posts/style.min.css\";i:208;s:18:\"list/style-rtl.css\";i:209;s:22:\"list/style-rtl.min.css\";i:210;s:14:\"list/style.css\";i:211;s:18:\"list/style.min.css\";i:212;s:25:\"media-text/editor-rtl.css\";i:213;s:29:\"media-text/editor-rtl.min.css\";i:214;s:21:\"media-text/editor.css\";i:215;s:25:\"media-text/editor.min.css\";i:216;s:24:\"media-text/style-rtl.css\";i:217;s:28:\"media-text/style-rtl.min.css\";i:218;s:20:\"media-text/style.css\";i:219;s:24:\"media-text/style.min.css\";i:220;s:19:\"more/editor-rtl.css\";i:221;s:23:\"more/editor-rtl.min.css\";i:222;s:15:\"more/editor.css\";i:223;s:19:\"more/editor.min.css\";i:224;s:30:\"navigation-link/editor-rtl.css\";i:225;s:34:\"navigation-link/editor-rtl.min.css\";i:226;s:26:\"navigation-link/editor.css\";i:227;s:30:\"navigation-link/editor.min.css\";i:228;s:29:\"navigation-link/style-rtl.css\";i:229;s:33:\"navigation-link/style-rtl.min.css\";i:230;s:25:\"navigation-link/style.css\";i:231;s:29:\"navigation-link/style.min.css\";i:232;s:33:\"navigation-submenu/editor-rtl.css\";i:233;s:37:\"navigation-submenu/editor-rtl.min.css\";i:234;s:29:\"navigation-submenu/editor.css\";i:235;s:33:\"navigation-submenu/editor.min.css\";i:236;s:25:\"navigation/editor-rtl.css\";i:237;s:29:\"navigation/editor-rtl.min.css\";i:238;s:21:\"navigation/editor.css\";i:239;s:25:\"navigation/editor.min.css\";i:240;s:24:\"navigation/style-rtl.css\";i:241;s:28:\"navigation/style-rtl.min.css\";i:242;s:20:\"navigation/style.css\";i:243;s:24:\"navigation/style.min.css\";i:244;s:23:\"nextpage/editor-rtl.css\";i:245;s:27:\"nextpage/editor-rtl.min.css\";i:246;s:19:\"nextpage/editor.css\";i:247;s:23:\"nextpage/editor.min.css\";i:248;s:24:\"page-list/editor-rtl.css\";i:249;s:28:\"page-list/editor-rtl.min.css\";i:250;s:20:\"page-list/editor.css\";i:251;s:24:\"page-list/editor.min.css\";i:252;s:23:\"page-list/style-rtl.css\";i:253;s:27:\"page-list/style-rtl.min.css\";i:254;s:19:\"page-list/style.css\";i:255;s:23:\"page-list/style.min.css\";i:256;s:24:\"paragraph/editor-rtl.css\";i:257;s:28:\"paragraph/editor-rtl.min.css\";i:258;s:20:\"paragraph/editor.css\";i:259;s:24:\"paragraph/editor.min.css\";i:260;s:23:\"paragraph/style-rtl.css\";i:261;s:27:\"paragraph/style-rtl.min.css\";i:262;s:19:\"paragraph/style.css\";i:263;s:23:\"paragraph/style.min.css\";i:264;s:25:\"post-author/style-rtl.css\";i:265;s:29:\"post-author/style-rtl.min.css\";i:266;s:21:\"post-author/style.css\";i:267;s:25:\"post-author/style.min.css\";i:268;s:33:\"post-comments-form/editor-rtl.css\";i:269;s:37:\"post-comments-form/editor-rtl.min.css\";i:270;s:29:\"post-comments-form/editor.css\";i:271;s:33:\"post-comments-form/editor.min.css\";i:272;s:32:\"post-comments-form/style-rtl.css\";i:273;s:36:\"post-comments-form/style-rtl.min.css\";i:274;s:28:\"post-comments-form/style.css\";i:275;s:32:\"post-comments-form/style.min.css\";i:276;s:27:\"post-content/editor-rtl.css\";i:277;s:31:\"post-content/editor-rtl.min.css\";i:278;s:23:\"post-content/editor.css\";i:279;s:27:\"post-content/editor.min.css\";i:280;s:23:\"post-date/style-rtl.css\";i:281;s:27:\"post-date/style-rtl.min.css\";i:282;s:19:\"post-date/style.css\";i:283;s:23:\"post-date/style.min.css\";i:284;s:27:\"post-excerpt/editor-rtl.css\";i:285;s:31:\"post-excerpt/editor-rtl.min.css\";i:286;s:23:\"post-excerpt/editor.css\";i:287;s:27:\"post-excerpt/editor.min.css\";i:288;s:26:\"post-excerpt/style-rtl.css\";i:289;s:30:\"post-excerpt/style-rtl.min.css\";i:290;s:22:\"post-excerpt/style.css\";i:291;s:26:\"post-excerpt/style.min.css\";i:292;s:34:\"post-featured-image/editor-rtl.css\";i:293;s:38:\"post-featured-image/editor-rtl.min.css\";i:294;s:30:\"post-featured-image/editor.css\";i:295;s:34:\"post-featured-image/editor.min.css\";i:296;s:33:\"post-featured-image/style-rtl.css\";i:297;s:37:\"post-featured-image/style-rtl.min.css\";i:298;s:29:\"post-featured-image/style.css\";i:299;s:33:\"post-featured-image/style.min.css\";i:300;s:34:\"post-navigation-link/style-rtl.css\";i:301;s:38:\"post-navigation-link/style-rtl.min.css\";i:302;s:30:\"post-navigation-link/style.css\";i:303;s:34:\"post-navigation-link/style.min.css\";i:304;s:28:\"post-template/editor-rtl.css\";i:305;s:32:\"post-template/editor-rtl.min.css\";i:306;s:24:\"post-template/editor.css\";i:307;s:28:\"post-template/editor.min.css\";i:308;s:27:\"post-template/style-rtl.css\";i:309;s:31:\"post-template/style-rtl.min.css\";i:310;s:23:\"post-template/style.css\";i:311;s:27:\"post-template/style.min.css\";i:312;s:24:\"post-terms/style-rtl.css\";i:313;s:28:\"post-terms/style-rtl.min.css\";i:314;s:20:\"post-terms/style.css\";i:315;s:24:\"post-terms/style.min.css\";i:316;s:24:\"post-title/style-rtl.css\";i:317;s:28:\"post-title/style-rtl.min.css\";i:318;s:20:\"post-title/style.css\";i:319;s:24:\"post-title/style.min.css\";i:320;s:26:\"preformatted/style-rtl.css\";i:321;s:30:\"preformatted/style-rtl.min.css\";i:322;s:22:\"preformatted/style.css\";i:323;s:26:\"preformatted/style.min.css\";i:324;s:24:\"pullquote/editor-rtl.css\";i:325;s:28:\"pullquote/editor-rtl.min.css\";i:326;s:20:\"pullquote/editor.css\";i:327;s:24:\"pullquote/editor.min.css\";i:328;s:23:\"pullquote/style-rtl.css\";i:329;s:27:\"pullquote/style-rtl.min.css\";i:330;s:19:\"pullquote/style.css\";i:331;s:23:\"pullquote/style.min.css\";i:332;s:23:\"pullquote/theme-rtl.css\";i:333;s:27:\"pullquote/theme-rtl.min.css\";i:334;s:19:\"pullquote/theme.css\";i:335;s:23:\"pullquote/theme.min.css\";i:336;s:39:\"query-pagination-numbers/editor-rtl.css\";i:337;s:43:\"query-pagination-numbers/editor-rtl.min.css\";i:338;s:35:\"query-pagination-numbers/editor.css\";i:339;s:39:\"query-pagination-numbers/editor.min.css\";i:340;s:31:\"query-pagination/editor-rtl.css\";i:341;s:35:\"query-pagination/editor-rtl.min.css\";i:342;s:27:\"query-pagination/editor.css\";i:343;s:31:\"query-pagination/editor.min.css\";i:344;s:30:\"query-pagination/style-rtl.css\";i:345;s:34:\"query-pagination/style-rtl.min.css\";i:346;s:26:\"query-pagination/style.css\";i:347;s:30:\"query-pagination/style.min.css\";i:348;s:25:\"query-title/style-rtl.css\";i:349;s:29:\"query-title/style-rtl.min.css\";i:350;s:21:\"query-title/style.css\";i:351;s:25:\"query-title/style.min.css\";i:352;s:20:\"query/editor-rtl.css\";i:353;s:24:\"query/editor-rtl.min.css\";i:354;s:16:\"query/editor.css\";i:355;s:20:\"query/editor.min.css\";i:356;s:19:\"quote/style-rtl.css\";i:357;s:23:\"quote/style-rtl.min.css\";i:358;s:15:\"quote/style.css\";i:359;s:19:\"quote/style.min.css\";i:360;s:19:\"quote/theme-rtl.css\";i:361;s:23:\"quote/theme-rtl.min.css\";i:362;s:15:\"quote/theme.css\";i:363;s:19:\"quote/theme.min.css\";i:364;s:23:\"read-more/style-rtl.css\";i:365;s:27:\"read-more/style-rtl.min.css\";i:366;s:19:\"read-more/style.css\";i:367;s:23:\"read-more/style.min.css\";i:368;s:18:\"rss/editor-rtl.css\";i:369;s:22:\"rss/editor-rtl.min.css\";i:370;s:14:\"rss/editor.css\";i:371;s:18:\"rss/editor.min.css\";i:372;s:17:\"rss/style-rtl.css\";i:373;s:21:\"rss/style-rtl.min.css\";i:374;s:13:\"rss/style.css\";i:375;s:17:\"rss/style.min.css\";i:376;s:21:\"search/editor-rtl.css\";i:377;s:25:\"search/editor-rtl.min.css\";i:378;s:17:\"search/editor.css\";i:379;s:21:\"search/editor.min.css\";i:380;s:20:\"search/style-rtl.css\";i:381;s:24:\"search/style-rtl.min.css\";i:382;s:16:\"search/style.css\";i:383;s:20:\"search/style.min.css\";i:384;s:20:\"search/theme-rtl.css\";i:385;s:24:\"search/theme-rtl.min.css\";i:386;s:16:\"search/theme.css\";i:387;s:20:\"search/theme.min.css\";i:388;s:24:\"separator/editor-rtl.css\";i:389;s:28:\"separator/editor-rtl.min.css\";i:390;s:20:\"separator/editor.css\";i:391;s:24:\"separator/editor.min.css\";i:392;s:23:\"separator/style-rtl.css\";i:393;s:27:\"separator/style-rtl.min.css\";i:394;s:19:\"separator/style.css\";i:395;s:23:\"separator/style.min.css\";i:396;s:23:\"separator/theme-rtl.css\";i:397;s:27:\"separator/theme-rtl.min.css\";i:398;s:19:\"separator/theme.css\";i:399;s:23:\"separator/theme.min.css\";i:400;s:24:\"shortcode/editor-rtl.css\";i:401;s:28:\"shortcode/editor-rtl.min.css\";i:402;s:20:\"shortcode/editor.css\";i:403;s:24:\"shortcode/editor.min.css\";i:404;s:24:\"site-logo/editor-rtl.css\";i:405;s:28:\"site-logo/editor-rtl.min.css\";i:406;s:20:\"site-logo/editor.css\";i:407;s:24:\"site-logo/editor.min.css\";i:408;s:23:\"site-logo/style-rtl.css\";i:409;s:27:\"site-logo/style-rtl.min.css\";i:410;s:19:\"site-logo/style.css\";i:411;s:23:\"site-logo/style.min.css\";i:412;s:27:\"site-tagline/editor-rtl.css\";i:413;s:31:\"site-tagline/editor-rtl.min.css\";i:414;s:23:\"site-tagline/editor.css\";i:415;s:27:\"site-tagline/editor.min.css\";i:416;s:25:\"site-title/editor-rtl.css\";i:417;s:29:\"site-title/editor-rtl.min.css\";i:418;s:21:\"site-title/editor.css\";i:419;s:25:\"site-title/editor.min.css\";i:420;s:24:\"site-title/style-rtl.css\";i:421;s:28:\"site-title/style-rtl.min.css\";i:422;s:20:\"site-title/style.css\";i:423;s:24:\"site-title/style.min.css\";i:424;s:26:\"social-link/editor-rtl.css\";i:425;s:30:\"social-link/editor-rtl.min.css\";i:426;s:22:\"social-link/editor.css\";i:427;s:26:\"social-link/editor.min.css\";i:428;s:27:\"social-links/editor-rtl.css\";i:429;s:31:\"social-links/editor-rtl.min.css\";i:430;s:23:\"social-links/editor.css\";i:431;s:27:\"social-links/editor.min.css\";i:432;s:26:\"social-links/style-rtl.css\";i:433;s:30:\"social-links/style-rtl.min.css\";i:434;s:22:\"social-links/style.css\";i:435;s:26:\"social-links/style.min.css\";i:436;s:21:\"spacer/editor-rtl.css\";i:437;s:25:\"spacer/editor-rtl.min.css\";i:438;s:17:\"spacer/editor.css\";i:439;s:21:\"spacer/editor.min.css\";i:440;s:20:\"spacer/style-rtl.css\";i:441;s:24:\"spacer/style-rtl.min.css\";i:442;s:16:\"spacer/style.css\";i:443;s:20:\"spacer/style.min.css\";i:444;s:20:\"table/editor-rtl.css\";i:445;s:24:\"table/editor-rtl.min.css\";i:446;s:16:\"table/editor.css\";i:447;s:20:\"table/editor.min.css\";i:448;s:19:\"table/style-rtl.css\";i:449;s:23:\"table/style-rtl.min.css\";i:450;s:15:\"table/style.css\";i:451;s:19:\"table/style.min.css\";i:452;s:19:\"table/theme-rtl.css\";i:453;s:23:\"table/theme-rtl.min.css\";i:454;s:15:\"table/theme.css\";i:455;s:19:\"table/theme.min.css\";i:456;s:23:\"tag-cloud/style-rtl.css\";i:457;s:27:\"tag-cloud/style-rtl.min.css\";i:458;s:19:\"tag-cloud/style.css\";i:459;s:23:\"tag-cloud/style.min.css\";i:460;s:28:\"template-part/editor-rtl.css\";i:461;s:32:\"template-part/editor-rtl.min.css\";i:462;s:24:\"template-part/editor.css\";i:463;s:28:\"template-part/editor.min.css\";i:464;s:27:\"template-part/theme-rtl.css\";i:465;s:31:\"template-part/theme-rtl.min.css\";i:466;s:23:\"template-part/theme.css\";i:467;s:27:\"template-part/theme.min.css\";i:468;s:30:\"term-description/style-rtl.css\";i:469;s:34:\"term-description/style-rtl.min.css\";i:470;s:26:\"term-description/style.css\";i:471;s:30:\"term-description/style.min.css\";i:472;s:27:\"text-columns/editor-rtl.css\";i:473;s:31:\"text-columns/editor-rtl.min.css\";i:474;s:23:\"text-columns/editor.css\";i:475;s:27:\"text-columns/editor.min.css\";i:476;s:26:\"text-columns/style-rtl.css\";i:477;s:30:\"text-columns/style-rtl.min.css\";i:478;s:22:\"text-columns/style.css\";i:479;s:26:\"text-columns/style.min.css\";i:480;s:19:\"verse/style-rtl.css\";i:481;s:23:\"verse/style-rtl.min.css\";i:482;s:15:\"verse/style.css\";i:483;s:19:\"verse/style.min.css\";i:484;s:20:\"video/editor-rtl.css\";i:485;s:24:\"video/editor-rtl.min.css\";i:486;s:16:\"video/editor.css\";i:487;s:20:\"video/editor.min.css\";i:488;s:19:\"video/style-rtl.css\";i:489;s:23:\"video/style-rtl.min.css\";i:490;s:15:\"video/style.css\";i:491;s:19:\"video/style.min.css\";i:492;s:19:\"video/theme-rtl.css\";i:493;s:23:\"video/theme-rtl.min.css\";i:494;s:15:\"video/theme.css\";i:495;s:19:\"video/theme.min.css\";}}','on'),(125,'theme_mods_twentytwentyfour','a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1721759605;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,'recovery_keys','a:0:{}','off'),(158,'finished_updating_comment_type','1','auto'),(159,'_site_transient_wp_plugin_dependencies_plugin_data','a:1:{s:9:\"elementor\";a:35:{s:4:\"name\";s:63:\"Elementor Website Builder – More Than Just a Page Builder\";s:4:\"slug\";s:9:\"elementor\";s:7:\"version\";s:6:\"3.29.2\";s:6:\"author\";s:64:\"Elementor\";s:14:\"author_profile\";s:40:\"https://profiles.wordpress.org/elemntor/\";s:12:\"contributors\";a:1:{s:8:\"elemntor\";a:3:{s:7:\"profile\";s:40:\"https://profiles.wordpress.org/elemntor/\";s:6:\"avatar\";s:120:\"https://secure.gravatar.com/avatar/7d70f15d78757f876d1847a8f87dd93e1d9c168264b4aeeaf72058656690d05b?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:9:\"Elementor\";}}s:8:\"requires\";s:3:\"6.5\";s:6:\"tested\";s:5:\"6.7.2\";s:12:\"requires_php\";s:3:\"7.4\";s:16:\"requires_plugins\";a:0:{}s:6:\"rating\";i:90;s:7:\"ratings\";a:5:{i:5;i:6022;i:4;i:217;i:3;i:104;i:2;i:102;i:1;i:616;}s:11:\"num_ratings\";i:7061;s:11:\"support_url\";s:47:\"https://wordpress.org/support/plugin/elementor/\";s:15:\"support_threads\";i:88;s:24:\"support_threads_resolved\";i:13;s:15:\"active_installs\";i:10000000;s:12:\"last_updated\";s:21:\"2025-06-04 3:00pm GMT\";s:5:\"added\";s:10:\"2016-05-30\";s:8:\"homepage\";s:87:\"https://elementor.com/?utm_source=wp-plugins&utm_campaign=plugin-uri&utm_medium=wp-dash\";s:8:\"sections\";a:6:{s:11:\"description\";s:25581:\"

\n

THE #1 NO CODE DRAG & DROP WORDPRESS WEBSITE BUILDER POWERING OVER 18M WEBSITES WORLDWIDE, NOW WITH AI.

\n

Elementor, the leading WordPress website creation platform, empowers you to build professional, pixel-perfect websites seamlessly.

\n

Unlock all features with Elementor Pro.

\n

Need fast and secure cloud hosting for your Elementor site? Try out Elementor Hosting Powered by Google Cloud & Cloudflare. 4.9/5 TrustPilot score.

\n

🌟 Create Professional Stunning Websites

\n\n

🗝️ Key features:

\n\n

😍 Elementor FREE widgets

\n

Unlock the potential of Elementor with our comprehensive suite of free widgets and tools, designed to empower your website creation process and elevate your design capabilities:

\n\n

🚀 Enhance Your Website

\n

High-Performing Websites: Website performance impacts your visitor’s experience and search result ranking. Elementor, in partnership with Google Chrome, continuously enhances performance without compromising design.

\n

Key features include:

\n\n

🔥 Elementor Pro Features

\n

Create unparalleled websites while saving time, money and resources with Elementor Pro’s full website builder. Get access to 100+ professional widgets, features, and tools.

\n

Pro Design Widgets:

\n
    \n
  1. Posts: Display your blog posts with customizable layouts and styles.
  2. \n
  3. Share Buttons: Allow visitors to easily share your content on various social media platforms.
  4. \n
  5. Portfolio: Showcase your work or projects with stunning portfolio layouts.
  6. \n
  7. Slides: Create dynamic slideshows with custom animations and transitions.
  8. \n
  9. Form: Design and customize advanced forms for user interaction and data collection.
  10. \n
  11. Login: Add a login form or user registration module to your website.
  12. \n
  13. Nav Menu: Customize and style your website’s navigation menu for better user experience.
  14. \n
  15. Animated Headline: Create attention-grabbing headlines with animated effects.
  16. \n
  17. Price Table: Display pricing plans or packages in a structured and visually appealing format.
  18. \n
  19. Price List: Showcase a list of prices or services with customizable styling options.
  20. \n
  21. Gallery: Create beautiful image galleries with various layout options and lightbox support.
  22. \n
  23. Flip Box: Add interactive flip animations to highlight content or features.
  24. \n
  25. Call to Action: Encourage user interaction and conversions with compelling call-to-action sections.
  26. \n
  27. Media Carousel: Showcase a carousel of media files such as images or videos.
  28. \n
  29. Testimonial Carousel: Display client testimonials in a carousel format for social proof.
  30. \n
  31. Nested Carousel: Create nested carousels for more complex content organization.
  32. \n
  33. Loop Carousel: Display content in a looped carousel for continuous viewing.
  34. \n
  35. Table Of Content: Generate a table of contents for longer articles or guides to improve navigation.
  36. \n
  37. Countdown: Add countdown timers to create urgency for promotions or events.
  38. \n
  39. Facebook Page: Embed your Facebook page feed or content onto your website.
  40. \n
  41. Blockquote: Highlight quotes or testimonials with stylish formatting options.
  42. \n
  43. Template: Save and reuse design templates for consistent branding and layout.
  44. \n
  45. Reviews: Showcase customer reviews and ratings to build trust and credibility.
  46. \n
  47. Facebook Button: Add buttons to promote interactions with your Facebook page or content.
  48. \n
  49. Facebook Embed: Embed Facebook posts or content onto your website.
  50. \n
  51. Facebook Comments: Enable Facebook comments on your website’s pages or posts.
  52. \n
  53. PayPal Button: Integrate PayPal buttons for easy online payments.
  54. \n
  55. Stripe Button: Integrate Stripe payment buttons to facilitate secure online transactions.
  56. \n
  57. Lottie Widget: Add Lottie animations to enhance visual appeal and engagement.
  58. \n
  59. Code Highlight: Display code snippets with syntax highlighting for better readability.
  60. \n
  61. Video Playlist: Create and customize playlists for video content on your website.
  62. \n
  63. Mega Menu: Customize advanced menus for better navigation and displaying complex content.
  64. \n
  65. Off Canvas: Create off-canvas areas that slide in to show extra info or menus without cluttering the main layout.
  66. \n
\n

Pro Theme Widgets:

\n

Build and customize all the key parts of your website including headers, footers, 404 page, global archives, and more

\n
    \n
  1. Post Title: Customize the title of individual blog posts or pages.
  2. \n
  3. Post Excerpt: Display a brief summary or teaser of your blog posts.
  4. \n
  5. Post Content: Customize the main content area of your blog posts or pages.
  6. \n
  7. Featured Image: Set and customize featured images for blog posts or pages.
  8. \n
  9. Author Box: Display author information and bios on blog posts.
  10. \n
  11. Post Comments: Customize the appearance and functionality of comments sections on your website.
  12. \n
  13. Post Navigation: Add navigation links to adjacent posts for easy browsing.
  14. \n
  15. Post Info: Display additional information about blog posts, such as author and date.
  16. \n
  17. Site Logo: Upload and customize your website’s logo for branding purposes.
  18. \n
  19. Site Title: Customize the title of your website.
  20. \n
  21. Page Title: Customize the title of individual pages.
  22. \n
  23. Search Bar: Add a search bar to allow users to search your website’s content.
  24. \n
  25. Breadcrumbs: Display hierarchical navigation paths for better user navigation.
  26. \n
  27. Sitemap: Generate a sitemap for better search engine indexing and user navigation.
  28. \n
  29. Loop Grid: Design and customize grid layouts for blog post archives or product listings.
  30. \n
\n

Pro WooCommerce Widgets:

\n

Design and customize a complete online shopping experience across your entire website.

\n
    \n
  1. Product: Display individual products with customizable layouts and styles.
  2. \n
  3. Breadcrumbs: Display hierarchical navigation paths for better user navigation within your store.
  4. \n
  5. Product Title: Customize the title of individual products.
  6. \n
  7. Product Images: Set and customize images for product listings.
  8. \n
  9. Product Price: Display the price of individual products.
  10. \n
  11. Add To Cart: Add customizable add to cart buttons for easy purchasing.
  12. \n
  13. Product Rating: Display ratings and reviews for products.
  14. \n
  15. Product Stock: Display stock availability for products.
  16. \n
  17. Product Meta: Display additional information about products, such as SKU and categories.
  18. \n
  19. Product Content: Customize the main content area of product descriptions.
  20. \n
  21. Short Description: Display brief summaries or teasers of products.
  22. \n
  23. Product Data Tabs: Organize product information into tabbed sections for better organization.
  24. \n
  25. Additional Information: Display additional details about products, such as dimensions and weight.
  26. \n
  27. Product Related: Showcase related products to encourage additional purchases.
  28. \n
  29. Upsells: Promote upsell products to increase average order value.
  30. \n
  31. Products: Display a grid or list of products with customizable settings.
  32. \n
  33. Custom Add To Cart: Customize the add to cart button for specific products.
  34. \n
  35. WooCommerce Pages: Design and customize WooCommerce-specific pages, such as the cart and checkout pages.
  36. \n
  37. Product Categories: Display product categories for easy navigation within your store.
  38. \n
  39. Menu Cart: Display a cart icon in your navigation menu for easy access to the shopping cart.
  40. \n
  41. Cart: Customize the appearance and functionality of the shopping cart page.
  42. \n
  43. Checkout: Customize the appearance and functionality of the checkout page.
  44. \n
  45. My Account: Customize the appearance and functionality of the customer account area.
  46. \n
  47. Purchase Summary: Display a summary of purchases during the checkout process.
  48. \n
  49. WooCommerce Notices: Customize the appearance and functionality of WooCommerce notices, such as order confirmation messages.
  50. \n
\n

Build professional websites with Elementor Pro!

\n

🔒 SECURITY AND COMPLIANCE

\n

Elementor places a paramount focus on security, evident through our acquisition of industry certifications such as ISO/IEC 27001, ISO/IEC 27017, ISO/IEC 27018, ISO/IEC 27701, and SOC 2 Type II. These certifications underscore our commitment to implementing robust security measures, and highlight our dedication to adhering to recognized industry standards.

\n

We encourage ethical security research through our Bug Bounty program. We collaborate with leading bug bounty services to provide opportunities for researchers to report vulnerabilities in our services. Our bounty programs include a triage team available 24/7/365.

\n

For more information: Trust Center.

\n

♿ Accessibility Best Practices

\n

Elementor offers accessibility tools and enhancements to help you provide a better experience for all users. Including HTML 5 semantic, full keyboard navigation menu, ongoing improvement of features, widget, and more.

\n

🌐 Translated to 63+ languages, includes RTL support

\n

Elementor supports multiple languages, typographies, and RTL, with editor translations in over 63 languages.

\n

It’s also compatible with WPML, Polylang, TranslatePress, Weglot, and more. To contribute, add a new language via translate.wordpress.org. See our guide on how to translate and localize the plugin.

\n

⏩ Use of 3rd Party Services

\n

To improve the user experience, Elementor may use the following 3rd party services if the required feature is enabled:

\n\n

📧 Related Products by Elementor

\n

Image Optimizer: Superior image compression for faster, high-quality website performance.

\n

Site Mailer: Reliable email management without SMTP plugins, keeping your communications streamlined and efficient.

\n

📣 See What Our Users Have to Say

\n
\n

“Elementor is hands down the best page builder out there” – ★★★★★ Graphicvision1

\n

“An incredibly user-friendly plugin” – ★★★★★ Hyeyoga

\n

“Easily, my most used WP plugin” – ★★★★★ Xander Venske

\n

“I upgraded to the Pro version and just love this plugin!” – ★★★★★ Andybarn56

\n

“Excellent product with great tech support” – ★★★★★ Martywilsonnj

\n
\n

More testimonials

\n

🌍 Join a Global Community

\n

Join a global community that helps each other achieve their goals.

\n\n\";s:12:\"installation\";s:1461:\"

Minimum Requirements

\n\n

Recommended Requirements

\n\n

\n

Installation

\n
    \n
  1. Install using the WordPress built-in Plugin installer, or Extract the zip file and drop the contents in the wp-content/plugins/ directory of your WordPress installation.
  2. \n
  3. Activate the plugin through the ‘Plugins’ menu in WordPress.
  4. \n
  5. Go to Pages > Add New
  6. \n
  7. Press the ‘Edit with Elementor’ button.
  8. \n
  9. Now you can drag and drop widgets from the left panel onto the content area, as well as add new sections and columns that make up the page structure.
  10. \n
\n

For documentation and tutorials visit our Knowledge Base.

\n\";s:3:\"faq\";s:4862:\"\n
\nHow do I install Elementor?\n\n

\n

To install the free version of Elementor, follow the steps below:
\nFrom your WordPress dashboard -> Go to Plugins -> Click on ‘Add new’-> In the Search field, enter Elementor and choose Elementor website builder.
\nPress install -> After installation, click Activate.

\n

\n
\nDoes Elementor work with all the themes?\n\n

\n

Elementor works all the themes that respect the coding standards of WordPress set by its Codex. It is recommended to use Elementor’s Hello Theme, a lightweight blank canvas, to enjoy full flexibility when using Elementor, and optimize your experience.

\n

\n
\nIs Elementor compatible with Gutenberg?\n\n

\n

Elementor and Gutenberg work seamlessly together. As a user, you can easily decide which editor to use at every point while editing your site.

\n

\n
\nCan I create an online store?\n\n

\n

Yes, with the Elementor Pro WooCommerce Builder you can customize every page of your store to create an amazing customer experience that drives sales.

\n

\n
\nDoes it work with other WordPress plugins?\n\n

\n

It works with almost all the plugins. If you experience an incompatibility issue, please report it to us and to the plugin that conflicts with Elementor.

\n

\n
\nDo I need to know how to code?\n\n

\n

No! Elementor provides you with all the widgets and features that you need to build a professional website without using code.

\n

\n
\nDo I need to know how to design?\n\n

\n

No, you can choose between professionally designed kits and templates that fit toevery industry and have all you need to create your own professional website.

\n

\n
\nWill Elementor slow down my website?\n\n

\n

As Elementor prioritizes speed and performance, you enjoy better and faster performance with each new version of Elementor. When testing the same page layout on older versions you can see a significant performance improvement, from a score of 82 in Google PageSpeed Insight in version 3.1, to a score of 95 i in version 3.5.

\n

\n
\nIs my site secure with Elementor?\n\n

\n

The security of your website is extremely important to us and we take proactive measures to assure that your websites are secure. Elementor is ISO 27001 certified, and has a dedicated team of security professionals that implements industry best-practices for maximum security and compliance, 24/7.

\n

There is also a managed security Bug Bounty program, utilizing the community power by enabling 24/7/365 crowdsourced vulnerability detection.

\n

\n
\nCan I buy templates separately?\n\n

\n

Of course, you can use any template that supports Elementor.

\n

\n
\nIs Elementor compatible with Post and Custom Post Types?\n\n

\n

Of course! You can set which post types will enable Elementor in the settings page.

\n

\n
\nWhat is the difference between Elementor’s free Plugin and Elementor Pro\n\n

\n

Elementor’s Free version allows you to explore our revolutionary drag & drop live editor, basic widgets and templates. Elementor Pro (Essential, Advanced, Expert, Studio, and Agency) empowers you with more professional tools that speed up your workflow, give you access to human-powered support, help you build more advanced content, and convert visitors. See full comparison here.

\n

\n
\nHow can I become a Contributor\n\n

\n

If you want to contribute, go to our Elementor GitHub Repository and see where you can help.
\nYou can also add a new language via translate.wordpress.org. We’ve built a short guide explaining how to translate and localize the plugin.

\n

\n\n\";s:9:\"changelog\";s:5397:\"

3.29.2 – 2025-06-04

\n\n

3.29.1 – 2025-05-28

\n\n

3.29.0 – 2025-05-19

\n\n

See changelog for all versions.

\n\";s:11:\"screenshots\";s:3148:\"
  1. \"<strong>Visual

    Visual Drag and Drop Editor - Design your website layouts and place any element anywhere on the page for pixel-perfect designs.

  2. \"<strong>Full

    Full Design System - Enjoy a professional workflow and ensure consistency across your site. Define your settings, use them globally, and instantly adjust them any time.

  3. \"<strong>Responsive

    Responsive Design Fully edit your website and customize the behavior on desktop, tablet, & mobile to optimize the visitor experience on every device.

  4. \"<strong>Kits

    Kits and Templates - Jumpstart your web creation process or get inspired with professionally-designed templates or full website kits available for your immediate customization.

  5. \"<strong>Nested

    Nested Elements Leverage Elementor\'s Nested widgets to place any widget inside the content area of another widget - like Tabs, and Accordion for complete design flexibility.

  6. \"<strong>Motion

    Motion Effects - Add entrance animations and transitions to any element in your website to captivate visitors.

\";s:7:\"reviews\";s:14524:\"
\n
\n
\n
\n

Thank You!

\n
\n
\n
\n

\n By \'\'vic2046 on June 13, 2025

\n
\n
\n
\n

Enjoy the privilege of using the application.

\n
\n
\n
\n
\n
\n
\n

Awesome what you are able to do with this Toolbox

\n
\n
\n
\n

\n By \'\'mabo77wordpress (mabo77) on June 13, 2025

\n
\n
\n
\n

Elementor is the GOTO Tool for aI driven Animation and Layout althrough for my taste its too expensive (student)

\n
\n
\n
\n
\n
\n
\n

All you need.

\n
\n
\n
\n

\n By \'\'parego on June 12, 2025

\n
\n
\n
\n

Besides Jetengine, Litespeed and Wordfence, Elementor Pro is all you need.

\n
\n
\n
\n
\n
\n
\n

The UI is simple and beautiful.

\n
\n
\n
\n

\n By \'\'kirtika1622 on June 11, 2025

\n
\n
\n
\n

My website has been using the Elementor for the last two years. The user interface is elegant and simple.

\n
\n
\n
\n
\n
\n
\n

Nice

\n
\n
\n
\n

\n By \'\'davidshill71 on June 11, 2025

\n
\n
\n
\n

Elementor is a game-changer! Fast, flexible, and makes creating stunning sites a breeze.

\n
\n
\n
\n
\n
\n
\n

Fantastic builder

\n
\n
\n
\n

\n By \'\'keithclambert on June 10, 2025

\n
\n
\n
\n

Elementor makes designing websites quick and simple. Great features and very user-friendly!

\n
\n
\n
\n
\n
\n
\n

Admin side popups

\n
\n
\n
\n

\n By \'\'fwuk on June 7, 2025

\n
\n
\n
\n

Sick of popups on admin side.

\n
\n
\n
\n
\n
\n
\n

shameful

\n
\n
\n
\n

\n By \'\'antoine44 on June 3, 2025

\n
\n
\n
\n

The worst component you can install on your WordPress, shameful… it doesn\'t work, it crashes on everything, the page almost never loads, and it\'s always giving errors…

\n
\n
\n
\n
\n
\n
\n

good

\n
\n
\n
\n

\n By \'\'markovin on June 3, 2025

\n
\n
\n
\n

good

\n
\n
\n
\n
\n
\n
\n

Best Builder for WP

\n
\n
\n
\n

\n By \'\'codehead21 on June 2, 2025

\n
\n
\n
\n

Just love Elementor, best builder for Wordpress!

\n
\n
\n\";}s:17:\"short_description\";s:145:\"The Elementor Website Builder has it all: drag and drop page builder, pixel perfect design, mobile responsive editing, and more. Get started now!\";s:13:\"download_link\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.29.2.zip\";s:14:\"upgrade_notice\";a:0:{}s:11:\"screenshots\";a:6:{i:1;a:2:{s:3:\"src\";s:62:\"https://ps.w.org/elementor/assets/screenshot-1.gif?rev=3005087\";s:7:\"caption\";s:144:\"Visual Drag and Drop Editor - Design your website layouts and place any element anywhere on the page for pixel-perfect designs.\";}i:2;a:2:{s:3:\"src\";s:62:\"https://ps.w.org/elementor/assets/screenshot-2.gif?rev=3005087\";s:7:\"caption\";s:185:\"Full Design System - Enjoy a professional workflow and ensure consistency across your site. Define your settings, use them globally, and instantly adjust them any time.\";}i:3;a:2:{s:3:\"src\";s:62:\"https://ps.w.org/elementor/assets/screenshot-3.gif?rev=3005087\";s:7:\"caption\";s:170:\"Responsive Design Fully edit your website and customize the behavior on desktop, tablet, & mobile to optimize the visitor experience on every device.\";}i:4;a:2:{s:3:\"src\";s:62:\"https://ps.w.org/elementor/assets/screenshot-4.gif?rev=3005087\";s:7:\"caption\";s:193:\"Kits and Templates - Jumpstart your web creation process or get inspired with professionally-designed templates or full website kits available for your immediate customization.\";}i:5;a:2:{s:3:\"src\";s:62:\"https://ps.w.org/elementor/assets/screenshot-5.gif?rev=3005087\";s:7:\"caption\";s:190:\"Nested Elements Leverage Elementor\'s Nested widgets to place any widget inside the content area of another widget - like Tabs, and Accordion for complete design flexibility.\";}i:6;a:2:{s:3:\"src\";s:62:\"https://ps.w.org/elementor/assets/screenshot-6.gif?rev=3005087\";s:7:\"caption\";s:127:\"Motion Effects - Add entrance animations and transitions to any element in your website to captivate visitors.\";}}s:4:\"tags\";a:5:{s:13:\"drag-and-drop\";s:13:\"drag-and-drop\";s:6:\"editor\";s:6:\"editor\";s:9:\"elementor\";s:9:\"elementor\";s:12:\"landing-page\";s:12:\"landing page\";s:12:\"page-builder\";s:12:\"page builder\";}s:8:\"versions\";a:337:{s:5:\"3.0.0\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.0.0.zip\";s:5:\"3.0.1\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.0.1.zip\";s:6:\"3.0.10\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.0.10.zip\";s:6:\"3.0.11\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.0.11.zip\";s:6:\"3.0.12\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.0.12.zip\";s:6:\"3.0.13\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.0.13.zip\";s:6:\"3.0.14\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.0.14.zip\";s:6:\"3.0.15\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.0.15.zip\";s:6:\"3.0.16\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.0.16.zip\";s:5:\"3.0.2\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.0.2.zip\";s:5:\"3.0.3\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.0.3.zip\";s:5:\"3.0.4\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.0.4.zip\";s:5:\"3.0.5\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.0.5.zip\";s:5:\"3.0.6\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.0.6.zip\";s:5:\"3.0.7\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.0.7.zip\";s:5:\"3.0.8\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.0.8.zip\";s:7:\"3.0.8.1\";s:60:\"https://downloads.wordpress.org/plugin/elementor.3.0.8.1.zip\";s:5:\"3.0.9\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.0.9.zip\";s:5:\"3.1.0\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.1.0.zip\";s:11:\"3.1.0-beta1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.1.0-beta1.zip\";s:11:\"3.1.0-beta2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.1.0-beta2.zip\";s:11:\"3.1.0-beta3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.1.0-beta3.zip\";s:11:\"3.1.0-beta4\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.1.0-beta4.zip\";s:10:\"3.1.0-dev1\";s:63:\"https://downloads.wordpress.org/plugin/elementor.3.1.0-dev1.zip\";s:10:\"3.1.0-dev2\";s:63:\"https://downloads.wordpress.org/plugin/elementor.3.1.0-dev2.zip\";s:10:\"3.1.0-dev3\";s:63:\"https://downloads.wordpress.org/plugin/elementor.3.1.0-dev3.zip\";s:5:\"3.1.1\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.1.1.zip\";s:5:\"3.1.2\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.1.2.zip\";s:5:\"3.1.3\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.1.3.zip\";s:5:\"3.1.4\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.1.4.zip\";s:6:\"3.10.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.10.0.zip\";s:11:\"3.10.0-dev1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.10.0-dev1.zip\";s:6:\"3.10.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.10.1.zip\";s:6:\"3.10.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.10.2.zip\";s:6:\"3.11.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.11.0.zip\";s:12:\"3.11.0-beta1\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.11.0-beta1.zip\";s:12:\"3.11.0-beta2\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.11.0-beta2.zip\";s:12:\"3.11.0-beta3\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.11.0-beta3.zip\";s:11:\"3.11.0-dev1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.11.0-dev1.zip\";s:11:\"3.11.0-dev2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.11.0-dev2.zip\";s:11:\"3.11.0-dev3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.11.0-dev3.zip\";s:6:\"3.11.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.11.1.zip\";s:6:\"3.11.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.11.2.zip\";s:6:\"3.11.3\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.11.3.zip\";s:6:\"3.11.4\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.11.4.zip\";s:6:\"3.11.5\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.11.5.zip\";s:6:\"3.12.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.12.0.zip\";s:6:\"3.12.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.12.1.zip\";s:6:\"3.12.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.12.2.zip\";s:6:\"3.13.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.13.0.zip\";s:12:\"3.13.0-beta1\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.13.0-beta1.zip\";s:12:\"3.13.0-beta2\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.13.0-beta2.zip\";s:12:\"3.13.0-beta3\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.13.0-beta3.zip\";s:11:\"3.13.0-dev3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.13.0-dev3.zip\";s:11:\"3.13.0-dev4\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.13.0-dev4.zip\";s:6:\"3.13.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.13.1.zip\";s:6:\"3.13.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.13.2.zip\";s:6:\"3.13.3\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.13.3.zip\";s:6:\"3.13.4\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.13.4.zip\";s:6:\"3.14.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.14.0.zip\";s:12:\"3.14.0-beta1\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.14.0-beta1.zip\";s:12:\"3.14.0-beta2\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.14.0-beta2.zip\";s:12:\"3.14.0-beta3\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.14.0-beta3.zip\";s:12:\"3.14.0-beta4\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.14.0-beta4.zip\";s:12:\"3.14.0-beta5\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.14.0-beta5.zip\";s:6:\"3.14.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.14.1.zip\";s:6:\"3.15.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.15.0.zip\";s:6:\"3.15.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.15.1.zip\";s:6:\"3.15.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.15.2.zip\";s:6:\"3.15.3\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.15.3.zip\";s:6:\"3.16.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.16.0.zip\";s:12:\"3.16.0-beta3\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.16.0-beta3.zip\";s:12:\"3.16.0-beta4\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.16.0-beta4.zip\";s:11:\"3.16.0-dev1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.16.0-dev1.zip\";s:11:\"3.16.0-dev2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.16.0-dev2.zip\";s:6:\"3.16.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.16.1.zip\";s:6:\"3.16.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.16.2.zip\";s:6:\"3.16.3\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.16.3.zip\";s:6:\"3.16.4\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.16.4.zip\";s:6:\"3.16.5\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.16.5.zip\";s:6:\"3.16.6\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.16.6.zip\";s:6:\"3.17.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.17.0.zip\";s:11:\"3.17.0-dev2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.17.0-dev2.zip\";s:11:\"3.17.0-dev3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.17.0-dev3.zip\";s:11:\"3.17.0-dev4\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.17.0-dev4.zip\";s:6:\"3.17.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.17.1.zip\";s:6:\"3.17.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.17.2.zip\";s:6:\"3.17.3\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.17.3.zip\";s:6:\"3.18.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.18.0.zip\";s:12:\"3.18.0-beta1\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.18.0-beta1.zip\";s:12:\"3.18.0-beta2\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.18.0-beta2.zip\";s:12:\"3.18.0-beta3\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.18.0-beta3.zip\";s:12:\"3.18.0-beta4\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.18.0-beta4.zip\";s:11:\"3.18.0-dev1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.18.0-dev1.zip\";s:6:\"3.18.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.18.1.zip\";s:6:\"3.18.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.18.2.zip\";s:6:\"3.18.3\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.18.3.zip\";s:6:\"3.19.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.19.0.zip\";s:12:\"3.19.0-beta1\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.19.0-beta1.zip\";s:12:\"3.19.0-beta2\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.19.0-beta2.zip\";s:12:\"3.19.0-beta3\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.19.0-beta3.zip\";s:12:\"3.19.0-beta4\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.19.0-beta4.zip\";s:12:\"3.19.0-beta5\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.19.0-beta5.zip\";s:12:\"3.19.0-beta6\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.19.0-beta6.zip\";s:11:\"3.19.0-dev1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.19.0-dev1.zip\";s:11:\"3.19.0-dev2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.19.0-dev2.zip\";s:11:\"3.19.0-dev3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.19.0-dev3.zip\";s:11:\"3.19.0-dev4\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.19.0-dev4.zip\";s:11:\"3.19.0-dev5\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.19.0-dev5.zip\";s:11:\"3.19.0-dev6\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.19.0-dev6.zip\";s:6:\"3.19.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.19.1.zip\";s:6:\"3.19.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.19.2.zip\";s:6:\"3.19.3\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.19.3.zip\";s:6:\"3.19.4\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.19.4.zip\";s:5:\"3.2.0\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.2.0.zip\";s:5:\"3.2.1\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.2.1.zip\";s:5:\"3.2.2\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.2.2.zip\";s:5:\"3.2.3\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.2.3.zip\";s:5:\"3.2.4\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.2.4.zip\";s:5:\"3.2.5\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.2.5.zip\";s:6:\"3.20.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.20.0.zip\";s:12:\"3.20.0-beta1\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.20.0-beta1.zip\";s:12:\"3.20.0-beta2\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.20.0-beta2.zip\";s:12:\"3.20.0-beta3\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.20.0-beta3.zip\";s:12:\"3.20.0-beta4\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.20.0-beta4.zip\";s:11:\"3.20.0-dev1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.20.0-dev1.zip\";s:11:\"3.20.0-dev2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.20.0-dev2.zip\";s:11:\"3.20.0-dev3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.20.0-dev3.zip\";s:11:\"3.20.0-dev4\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.20.0-dev4.zip\";s:6:\"3.20.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.20.1.zip\";s:6:\"3.20.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.20.2.zip\";s:6:\"3.20.3\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.20.3.zip\";s:6:\"3.20.4\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.20.4.zip\";s:6:\"3.21.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.21.0.zip\";s:12:\"3.21.0-beta1\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.21.0-beta1.zip\";s:12:\"3.21.0-beta2\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.21.0-beta2.zip\";s:12:\"3.21.0-beta3\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.21.0-beta3.zip\";s:11:\"3.21.0-dev1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.21.0-dev1.zip\";s:11:\"3.21.0-dev2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.21.0-dev2.zip\";s:11:\"3.21.0-dev3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.21.0-dev3.zip\";s:6:\"3.21.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.21.1.zip\";s:6:\"3.21.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.21.2.zip\";s:6:\"3.21.3\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.21.3.zip\";s:6:\"3.21.4\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.21.4.zip\";s:6:\"3.21.5\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.21.5.zip\";s:6:\"3.21.6\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.21.6.zip\";s:6:\"3.21.7\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.21.7.zip\";s:6:\"3.21.8\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.21.8.zip\";s:6:\"3.22.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.22.0.zip\";s:12:\"3.22.0-beta1\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.22.0-beta1.zip\";s:12:\"3.22.0-beta2\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.22.0-beta2.zip\";s:12:\"3.22.0-beta3\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.22.0-beta3.zip\";s:12:\"3.22.0-beta4\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.22.0-beta4.zip\";s:12:\"3.22.0-beta5\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.22.0-beta5.zip\";s:12:\"3.22.0-beta6\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.22.0-beta6.zip\";s:11:\"3.22.0-dev1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.22.0-dev1.zip\";s:11:\"3.22.0-dev2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.22.0-dev2.zip\";s:11:\"3.22.0-dev3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.22.0-dev3.zip\";s:11:\"3.22.0-dev4\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.22.0-dev4.zip\";s:11:\"3.22.0-dev5\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.22.0-dev5.zip\";s:11:\"3.22.0-dev6\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.22.0-dev6.zip\";s:6:\"3.22.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.22.1.zip\";s:6:\"3.22.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.22.2.zip\";s:6:\"3.22.3\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.22.3.zip\";s:6:\"3.23.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.23.0.zip\";s:12:\"3.23.0-beta1\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.23.0-beta1.zip\";s:12:\"3.23.0-beta2\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.23.0-beta2.zip\";s:12:\"3.23.0-beta3\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.23.0-beta3.zip\";s:12:\"3.23.0-beta4\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.23.0-beta4.zip\";s:12:\"3.23.0-beta5\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.23.0-beta5.zip\";s:12:\"3.23.0-beta6\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.23.0-beta6.zip\";s:11:\"3.23.0-dev1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.23.0-dev1.zip\";s:11:\"3.23.0-dev2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.23.0-dev2.zip\";s:11:\"3.23.0-dev3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.23.0-dev3.zip\";s:11:\"3.23.0-dev4\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.23.0-dev4.zip\";s:11:\"3.23.0-dev5\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.23.0-dev5.zip\";s:11:\"3.23.0-dev6\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.23.0-dev6.zip\";s:6:\"3.23.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.23.1.zip\";s:6:\"3.23.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.23.2.zip\";s:6:\"3.23.3\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.23.3.zip\";s:6:\"3.23.4\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.23.4.zip\";s:6:\"3.24.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.24.0.zip\";s:12:\"3.24.0-beta1\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.24.0-beta1.zip\";s:12:\"3.24.0-beta2\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.24.0-beta2.zip\";s:12:\"3.24.0-beta3\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.24.0-beta3.zip\";s:11:\"3.24.0-dev1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.24.0-dev1.zip\";s:11:\"3.24.0-dev2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.24.0-dev2.zip\";s:11:\"3.24.0-dev3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.24.0-dev3.zip\";s:6:\"3.24.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.24.1.zip\";s:6:\"3.24.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.24.2.zip\";s:6:\"3.24.3\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.24.3.zip\";s:6:\"3.24.4\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.24.4.zip\";s:6:\"3.24.5\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.24.5.zip\";s:6:\"3.24.6\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.24.6.zip\";s:6:\"3.24.7\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.24.7.zip\";s:6:\"3.24.8\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.24.8.zip\";s:6:\"3.25.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.25.0.zip\";s:12:\"3.25.0-beta1\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.25.0-beta1.zip\";s:12:\"3.25.0-beta2\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.25.0-beta2.zip\";s:12:\"3.25.0-beta3\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.25.0-beta3.zip\";s:11:\"3.25.0-dev1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.25.0-dev1.zip\";s:11:\"3.25.0-dev2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.25.0-dev2.zip\";s:11:\"3.25.0-dev3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.25.0-dev3.zip\";s:6:\"3.25.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.25.1.zip\";s:7:\"3.25.10\";s:60:\"https://downloads.wordpress.org/plugin/elementor.3.25.10.zip\";s:7:\"3.25.11\";s:60:\"https://downloads.wordpress.org/plugin/elementor.3.25.11.zip\";s:6:\"3.25.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.25.2.zip\";s:6:\"3.25.3\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.25.3.zip\";s:6:\"3.25.4\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.25.4.zip\";s:6:\"3.25.5\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.25.5.zip\";s:6:\"3.25.6\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.25.6.zip\";s:6:\"3.25.7\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.25.7.zip\";s:6:\"3.25.8\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.25.8.zip\";s:6:\"3.25.9\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.25.9.zip\";s:6:\"3.26.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.26.0.zip\";s:12:\"3.26.0-beta1\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.26.0-beta1.zip\";s:12:\"3.26.0-beta2\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.26.0-beta2.zip\";s:12:\"3.26.0-beta3\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.26.0-beta3.zip\";s:12:\"3.26.0-beta4\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.26.0-beta4.zip\";s:12:\"3.26.0-beta5\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.26.0-beta5.zip\";s:11:\"3.26.0-dev1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.26.0-dev1.zip\";s:11:\"3.26.0-dev2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.26.0-dev2.zip\";s:11:\"3.26.0-dev3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.26.0-dev3.zip\";s:11:\"3.26.0-dev4\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.26.0-dev4.zip\";s:11:\"3.26.0-dev5\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.26.0-dev5.zip\";s:6:\"3.26.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.26.1.zip\";s:6:\"3.26.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.26.2.zip\";s:6:\"3.26.3\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.26.3.zip\";s:6:\"3.26.4\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.26.4.zip\";s:6:\"3.26.5\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.26.5.zip\";s:6:\"3.27.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.27.0.zip\";s:12:\"3.27.0-beta1\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.27.0-beta1.zip\";s:12:\"3.27.0-beta2\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.27.0-beta2.zip\";s:11:\"3.27.0-dev1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.27.0-dev1.zip\";s:11:\"3.27.0-dev2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.27.0-dev2.zip\";s:6:\"3.27.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.27.1.zip\";s:6:\"3.27.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.27.2.zip\";s:6:\"3.27.3\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.27.3.zip\";s:6:\"3.27.4\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.27.4.zip\";s:6:\"3.27.5\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.27.5.zip\";s:6:\"3.27.6\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.27.6.zip\";s:6:\"3.27.7\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.27.7.zip\";s:6:\"3.28.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.28.0.zip\";s:12:\"3.28.0-beta1\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.28.0-beta1.zip\";s:12:\"3.28.0-beta2\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.28.0-beta2.zip\";s:12:\"3.28.0-beta3\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.28.0-beta3.zip\";s:11:\"3.28.0-dev1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.28.0-dev1.zip\";s:11:\"3.28.0-dev2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.28.0-dev2.zip\";s:11:\"3.28.0-dev3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.28.0-dev3.zip\";s:6:\"3.28.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.28.1.zip\";s:6:\"3.28.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.28.2.zip\";s:6:\"3.28.3\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.28.3.zip\";s:6:\"3.28.4\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.28.4.zip\";s:6:\"3.29.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.29.0.zip\";s:12:\"3.29.0-beta1\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.29.0-beta1.zip\";s:12:\"3.29.0-beta2\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.29.0-beta2.zip\";s:12:\"3.29.0-beta3\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.29.0-beta3.zip\";s:12:\"3.29.0-beta4\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.29.0-beta4.zip\";s:11:\"3.29.0-dev1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.29.0-dev1.zip\";s:11:\"3.29.0-dev2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.29.0-dev2.zip\";s:11:\"3.29.0-dev3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.29.0-dev3.zip\";s:11:\"3.29.0-dev4\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.29.0-dev4.zip\";s:6:\"3.29.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.29.1.zip\";s:6:\"3.29.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.29.2.zip\";s:5:\"3.3.0\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.3.0.zip\";s:5:\"3.3.1\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.3.1.zip\";s:12:\"3.30.0-beta1\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.30.0-beta1.zip\";s:12:\"3.30.0-beta2\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.30.0-beta2.zip\";s:11:\"3.30.0-dev1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.30.0-dev1.zip\";s:11:\"3.30.0-dev2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.30.0-dev2.zip\";s:5:\"3.4.0\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.4.0.zip\";s:10:\"3.4.0-dev7\";s:63:\"https://downloads.wordpress.org/plugin/elementor.3.4.0-dev7.zip\";s:10:\"3.4.0-dev8\";s:63:\"https://downloads.wordpress.org/plugin/elementor.3.4.0-dev8.zip\";s:10:\"3.4.0-dev9\";s:63:\"https://downloads.wordpress.org/plugin/elementor.3.4.0-dev9.zip\";s:5:\"3.4.1\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.4.1.zip\";s:5:\"3.4.2\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.4.2.zip\";s:5:\"3.4.3\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.4.3.zip\";s:5:\"3.4.4\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.4.4.zip\";s:5:\"3.4.5\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.4.5.zip\";s:5:\"3.4.6\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.4.6.zip\";s:5:\"3.4.7\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.4.7.zip\";s:5:\"3.4.8\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.4.8.zip\";s:5:\"3.5.0\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.5.0.zip\";s:11:\"3.5.0-beta1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.5.0-beta1.zip\";s:11:\"3.5.0-beta2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.5.0-beta2.zip\";s:11:\"3.5.0-beta3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.5.0-beta3.zip\";s:11:\"3.5.0-beta4\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.5.0-beta4.zip\";s:11:\"3.5.0-beta5\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.5.0-beta5.zip\";s:11:\"3.5.0-beta7\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.5.0-beta7.zip\";s:11:\"3.5.0-beta8\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.5.0-beta8.zip\";s:10:\"3.5.0-dev8\";s:63:\"https://downloads.wordpress.org/plugin/elementor.3.5.0-dev8.zip\";s:10:\"3.5.0-dev9\";s:63:\"https://downloads.wordpress.org/plugin/elementor.3.5.0-dev9.zip\";s:5:\"3.5.1\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.5.1.zip\";s:5:\"3.5.2\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.5.2.zip\";s:5:\"3.5.3\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.5.3.zip\";s:5:\"3.5.4\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.5.4.zip\";s:5:\"3.5.5\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.5.5.zip\";s:5:\"3.5.6\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.5.6.zip\";s:5:\"3.6.0\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.0.zip\";s:11:\"3.6.0-beta1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.6.0-beta1.zip\";s:11:\"3.6.0-beta2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.6.0-beta2.zip\";s:11:\"3.6.0-beta3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.6.0-beta3.zip\";s:11:\"3.6.0-beta4\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.6.0-beta4.zip\";s:11:\"3.6.0-beta5\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.6.0-beta5.zip\";s:10:\"3.6.0-dev1\";s:63:\"https://downloads.wordpress.org/plugin/elementor.3.6.0-dev1.zip\";s:11:\"3.6.0-dev10\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.6.0-dev10.zip\";s:5:\"3.6.1\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.1.zip\";s:5:\"3.6.2\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.2.zip\";s:5:\"3.6.3\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.3.zip\";s:5:\"3.6.4\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.4.zip\";s:5:\"3.6.5\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.5.zip\";s:5:\"3.6.6\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.6.zip\";s:5:\"3.6.7\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.7.zip\";s:5:\"3.6.8\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.8.zip\";s:5:\"3.7.0\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.7.0.zip\";s:11:\"3.7.0-beta1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.7.0-beta1.zip\";s:11:\"3.7.0-beta2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.7.0-beta2.zip\";s:11:\"3.7.0-beta3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.7.0-beta3.zip\";s:11:\"3.7.0-beta4\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.7.0-beta4.zip\";s:10:\"3.7.0-dev1\";s:63:\"https://downloads.wordpress.org/plugin/elementor.3.7.0-dev1.zip\";s:5:\"3.7.1\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.7.1.zip\";s:5:\"3.7.2\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.7.2.zip\";s:5:\"3.7.3\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.7.3.zip\";s:5:\"3.7.4\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.7.4.zip\";s:5:\"3.7.5\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.7.5.zip\";s:5:\"3.7.6\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.7.6.zip\";s:5:\"3.7.7\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.7.7.zip\";s:5:\"3.7.8\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.7.8.zip\";s:5:\"3.8.0\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.8.0.zip\";s:11:\"3.8.0-beta1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.8.0-beta1.zip\";s:11:\"3.8.0-beta2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.8.0-beta2.zip\";s:11:\"3.8.0-beta3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.8.0-beta3.zip\";s:5:\"3.8.1\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.8.1.zip\";s:5:\"3.9.0\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.9.0.zip\";s:5:\"3.9.1\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.9.1.zip\";s:5:\"3.9.2\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.9.2.zip\";s:5:\"trunk\";s:52:\"https://downloads.wordpress.org/plugin/elementor.zip\";}s:14:\"business_model\";s:10:\"commercial\";s:14:\"repository_url\";s:0:\"\";s:22:\"commercial_support_url\";s:94:\"https://elementor.com/support/?utm_source=wp-repo&utm_medium=link&utm_campaign=premium-support\";s:11:\"donate_link\";s:0:\"\";s:7:\"banners\";a:2:{s:3:\"low\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=3164133\";s:4:\"high\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=3164133\";}s:5:\"icons\";a:2:{s:2:\"1x\";s:62:\"https://ps.w.org/elementor/assets/icon-128x128.gif?rev=3111597\";s:2:\"2x\";s:62:\"https://ps.w.org/elementor/assets/icon-256x256.gif?rev=3111597\";}s:12:\"preview_link\";s:0:\"\";s:4:\"Name\";s:63:\"Elementor Website Builder – More Than Just a Page Builder\";}}','off'),(160,'recently_activated','a:0:{}','off'),(163,'current_theme','Prestige Luxury Cleanings LLC','auto'),(164,'theme_mods_prestige-luxury-cleanings-llc','a:3:{i:0;b:0;s:18:\"nav_menu_locations\";a:0:{}s:18:\"custom_css_post_id\";i:-1;}','on'),(165,'theme_switched','','auto'),(166,'hello_theme_version','3.1.0','auto'),(173,'elementor_active_kit','35','auto'),(174,'elementor_font_display','swap','auto'),(177,'elementor_version','3.23.2','auto'),(178,'elementor_install_history','a:2:{s:6:\"3.10.1\";i:1721759658;s:6:\"3.23.2\";i:1721759620;}','auto'),(179,'elementor_events_db_version','1.0.0','off'),(181,'elementor_onboarded','1','auto'),(182,'_elementor_installed_time','1721759625','auto'),(183,'elementor_remote_info_library','a:3:{s:10:\"types_data\";a:4:{s:5:\"block\";a:2:{s:10:\"categories\";a:30:{i:0;s:8:\"404 page\";i:1;s:5:\"about\";i:2;s:7:\"archive\";i:3;s:8:\"Benefits\";i:4;s:14:\"call to action\";i:5;s:7:\"clients\";i:6;s:7:\"contact\";i:7;s:4:\"Data\";i:8;s:10:\"ehp-footer\";i:9;s:10:\"ehp-header\";i:10;s:3:\"faq\";i:11;s:8:\"features\";i:12;s:6:\"footer\";i:13;s:7:\"Gallery\";i:14;s:6:\"header\";i:15;s:4:\"hero\";i:16;s:11:\"Link in Bio\";i:17;s:9:\"portfolio\";i:18;s:7:\"pricing\";i:19;s:15:\"product archive\";i:20;s:5:\"Quote\";i:21;s:15:\"Service Details\";i:22;s:8:\"services\";i:23;s:11:\"single page\";i:24;s:11:\"single post\";i:25;s:14:\"single product\";i:26;s:5:\"stats\";i:27;s:9:\"subscribe\";i:28;s:4:\"team\";i:29;s:12:\"testimonials\";}s:4:\"sets\";a:5:{i:0;s:11:\"Boxing Club\";i:1;s:19:\"Business Consultant\";i:2;s:16:\"Marketing Agency\";i:3;s:9:\"Wireframe\";i:4;s:15:\"Workshop Center\";}}s:5:\"popup\";a:1:{s:10:\"categories\";a:6:{i:0;s:10:\"bottom bar\";i:1;s:7:\"classic\";i:2;s:6:\"fly-in\";i:3;s:11:\"full screen\";i:4;s:9:\"hello bar\";i:5;s:8:\"slide-in\";}}s:2:\"lp\";a:1:{s:10:\"categories\";a:15:{i:0;s:8:\"Business\";i:1;s:16:\"Coming Soon Page\";i:2;s:9:\"eCommerce\";i:3;s:9:\"Education\";i:4;s:6:\"Events\";i:5;s:18:\"Health and Fitness\";i:6;s:3:\"NFT\";i:7;s:14:\"Online Service\";i:8;s:7:\"Product\";i:9;s:11:\"Real Estate\";i:10;s:18:\"Social Involvement\";i:11;s:14:\"Thank You Page\";i:12;s:6:\"Travel\";i:13;s:18:\"Under Construction\";i:14;s:9:\"Wireframe\";}}s:2:\"lb\";a:1:{s:10:\"categories\";a:2:{i:0;s:4:\"post\";i:1;s:7:\"product\";}}}s:10:\"categories\";a:30:{i:0;s:8:\"404 page\";i:1;s:5:\"about\";i:2;s:7:\"archive\";i:3;s:8:\"Benefits\";i:4;s:14:\"call to action\";i:5;s:7:\"clients\";i:6;s:7:\"contact\";i:7;s:4:\"Data\";i:8;s:10:\"ehp-footer\";i:9;s:10:\"ehp-header\";i:10;s:3:\"faq\";i:11;s:8:\"features\";i:12;s:6:\"footer\";i:13;s:7:\"Gallery\";i:14;s:6:\"header\";i:15;s:4:\"hero\";i:16;s:11:\"Link in Bio\";i:17;s:9:\"portfolio\";i:18;s:7:\"pricing\";i:19;s:15:\"product archive\";i:20;s:5:\"Quote\";i:21;s:15:\"Service Details\";i:22;s:8:\"services\";i:23;s:11:\"single page\";i:24;s:11:\"single post\";i:25;s:14:\"single product\";i:26;s:5:\"stats\";i:27;s:9:\"subscribe\";i:28;s:4:\"team\";i:29;s:12:\"testimonials\";}s:9:\"templates\";a:823:{i:0;a:20:{s:4:\"tmpl\";i:1280;s:2:\"id\";i:22403;s:5:\"title\";s:40:\"Hello Bar | Subscribe | Aesthetic Clinic\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/aesthetic-clinic-19.jpg\";s:12:\"tmpl_created\";i:1647354307;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/hello-bar-subscribe-aesthetic-clinic/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:48:\"[\"Barbershop\",\"Business\",\"Discount\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:1;a:20:{s:4:\"tmpl\";i:1281;s:2:\"id\";i:22410;s:5:\"title\";s:32:\"Fly-In | Discount | Hair Stylist\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/hair-stylist-20.jpg\";s:12:\"tmpl_created\";i:1647354614;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-discount-hair-stylist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:32:\"[\"Barbershop\",\"Discount\",\"Hair\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:2;a:20:{s:4:\"tmpl\";i:1285;s:2:\"id\";i:22440;s:5:\"title\";s:32:\"Classic | Subscribe | Shoe Store\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/shoes-store-21.jpg\";s:12:\"tmpl_created\";i:1647418620;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-subscribe-shoe-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:37:\"[\"Ecommerce\",\"Marketing\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:3;a:20:{s:4:\"tmpl\";i:1286;s:2:\"id\";i:22446;s:5:\"title\";s:37:\"Full Screen | Subscribe | Denim Store\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/denim-store-22.jpg\";s:12:\"tmpl_created\";i:1647419614;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/full-screen-subscribe-denim-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:35:\"[\"Ecommerce\",\"Fashion\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:4;a:20:{s:4:\"tmpl\";i:1287;s:2:\"id\";i:22452;s:5:\"title\";s:37:\"Fly-In | Subscribe | Pizza Restaurant\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/pizza-restaurant-23.jpg\";s:12:\"tmpl_created\";i:1647420733;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/fly-in-subscribe-pizza-restaurant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:19:\"[\"Business\",\"Food\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:5;a:20:{s:4:\"tmpl\";i:1288;s:2:\"id\";i:22458;s:5:\"title\";s:38:\"Full Screen | Subscribe | Fashion Shop\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/fashion-shop-24.jpg\";s:12:\"tmpl_created\";i:1647426379;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/full-screen-subscribe-fashion-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:31:\"[\"Ecommerce\",\"Fashion\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:6;a:20:{s:4:\"tmpl\";i:1289;s:2:\"id\";i:22464;s:5:\"title\";s:32:\"Fly-In | Contact | Makeup Studio\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/makeup-studio-25.jpg\";s:12:\"tmpl_created\";i:1647427026;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-contact-makeup-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:22:\"[\"Business\",\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:7;a:20:{s:4:\"tmpl\";i:1290;s:2:\"id\";i:22470;s:5:\"title\";s:32:\"Fly-In | Contact | Design Studio\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/design-studio-26.jpg\";s:12:\"tmpl_created\";i:1647428250;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-contact-design-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:39:\"[\"Business\",\"Contact\",\"Digital Agency\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:8;a:20:{s:4:\"tmpl\";i:1291;s:2:\"id\";i:22480;s:5:\"title\";s:27:\"Classic | CTA | MasterClass\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/master-class-27.jpg\";s:12:\"tmpl_created\";i:1647428474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-cta-masterclass/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"cta\",\"Magazine\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:9;a:20:{s:4:\"tmpl\";i:1292;s:2:\"id\";i:22489;s:5:\"title\";s:29:\"Classic | CTA | Music Concert\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/music-concert-29.jpg\";s:12:\"tmpl_created\";i:1647429738;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/classic-cta-music-concert/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"cta\",\"Landing Pages\",\"Magazine\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:10;a:20:{s:4:\"tmpl\";i:1293;s:2:\"id\";i:22495;s:5:\"title\";s:27:\"Classic | CTA | Music Album\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/music-album-30.jpg\";s:12:\"tmpl_created\";i:1647430056;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-cta-music-album/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Ba\",\"Landing Pages\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:11;a:20:{s:4:\"tmpl\";i:1294;s:2:\"id\";i:22501;s:5:\"title\";s:37:\"Fly-In | CTA | Photography Exhibition\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/photography-exhibition-31.jpg\";s:12:\"tmpl_created\";i:1647430512;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/fly-in-cta-photography-exhibition/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:33:\"[\"cta\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:12;a:20:{s:4:\"tmpl\";i:1295;s:2:\"id\";i:22507;s:5:\"title\";s:34:\"Classic | CTA | Clothing Shop Sale\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/clothing-shop-sale-32.jpg\";s:12:\"tmpl_created\";i:1647430774;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/classic-cta-clothing-shop-sale/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:35:\"[\"Ecommerce\",\"Fashion\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:13;a:20:{s:4:\"tmpl\";i:1296;s:2:\"id\";i:22486;s:5:\"title\";s:30:\"Classic | CTA | Shop Promotion\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/shop-promotion-28.jpg\";s:12:\"tmpl_created\";i:1647430951;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-shop-promotion/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"cta\",\"Magazine\",\"Photography\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:14;a:20:{s:4:\"tmpl\";i:1297;s:2:\"id\";i:22516;s:5:\"title\";s:32:\"Fly-In | CTA | Glasses Shop Sale\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/glasses-shop-sale-33.jpg\";s:12:\"tmpl_created\";i:1647431136;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-cta-glasses-shop-sale/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:30:\"[\"Business\",\"cta\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:15;a:20:{s:4:\"tmpl\";i:1298;s:2:\"id\";i:22522;s:5:\"title\";s:30:\"Fly-In | Discount | Skate Shop\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/50-skate-shop-Discount.jpg\";s:12:\"tmpl_created\";i:1647434058;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/fly-in-discount-skate-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:32:\"[\"Discount\",\"Ecommerce\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:16;a:20:{s:4:\"tmpl\";i:1299;s:2:\"id\";i:22532;s:5:\"title\";s:43:\"Classic | Subscription | Basketball Academy\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/21-basketball-academy-Subscription.jpg\";s:12:\"tmpl_created\";i:1647434608;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/popups/classic-subscription-basketball-academy/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:33:\"[\"Education\",\"Marketing\",\"Sport\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:17;a:20:{s:4:\"tmpl\";i:1300;s:2:\"id\";i:22543;s:5:\"title\";s:38:\"Classic | Discount | Veterinary Clinic\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/veterinery-clinic-small.jpg\";s:12:\"tmpl_created\";i:1647435581;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/classic-discount-veterinary-clinic/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"Discount\",\"Pets\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:18;a:20:{s:4:\"tmpl\";i:1301;s:2:\"id\";i:22553;s:5:\"title\";s:39:\"Classic | Contact | Business Consulting\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/27-business-consulting-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647439935;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/classic-contact-business-consulting/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:22:\"[\"Business\",\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:19;a:20:{s:4:\"tmpl\";i:1302;s:2:\"id\";i:22562;s:5:\"title\";s:28:\"Classic | Contact | Handyman\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/handyman-small.jpg\";s:12:\"tmpl_created\";i:1647440333;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-contact-handyman/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:33:\"[\"Business\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:20;a:20:{s:4:\"tmpl\";i:1303;s:2:\"id\";i:22573;s:5:\"title\";s:40:\"Classic | Discount | Online Fashion Shop\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/31-online-fashion-shop-Discount.jpg\";s:12:\"tmpl_created\";i:1647462549;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/classic-discount-online-fashion-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Discount\",\"Ecommerce\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:21;a:20:{s:4:\"tmpl\";i:1304;s:2:\"id\";i:22583;s:5:\"title\";s:36:\"Fly-In | Discount | Personal Trainer\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/personal-trainer-small.jpg\";s:12:\"tmpl_created\";i:1647503781;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/fly-in-discount-personal-trainer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:31:\"[\"Discount\",\"Sport\",\"Training\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:22;a:20:{s:4:\"tmpl\";i:1305;s:2:\"id\";i:22592;s:5:\"title\";s:41:\"Classic | Contact | Illustrator Portfolio\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/illustrator-protfolio-small.jpg\";s:12:\"tmpl_created\";i:1647504218;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/classic-contact-illustrator-portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:49:\"[\"Contact\",\"Creative Portfolio\",\"Digital Agency\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:23;a:20:{s:4:\"tmpl\";i:1306;s:2:\"id\";i:22602;s:5:\"title\";s:46:\"Bottom Bar | Discount | Handmade Ceramics Shop\";s:9:\"thumbnail\";s:91:\"https://library.elementor.com/wp-content/uploads/2022/03/handmade-ceramic-shop-36-small.jpg\";s:12:\"tmpl_created\";i:1647507007;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/bottom-bar-discount-handmade-ceramics-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:48:\"[\"Business\",\"cta\",\"Ecommerce\",\"Interior Design\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:24;a:20:{s:4:\"tmpl\";i:1307;s:2:\"id\";i:22612;s:5:\"title\";s:51:\"Classic | Contact | Classic Car Restoration Company\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/restoration-car-shop-37-small.jpg\";s:12:\"tmpl_created\";i:1647507310;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:153:\"https://library.elementor.com/popups/classic-contact-classic-car-restoration-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Booking\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:25;a:20:{s:4:\"tmpl\";i:1308;s:2:\"id\";i:22621;s:5:\"title\";s:30:\"Classic | Booking | Life Coach\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/38-life-coach-Booking.jpg\";s:12:\"tmpl_created\";i:1647508596;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-booking-life-coach/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:33:\"[\"Booking\",\"Business\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:26;a:20:{s:4:\"tmpl\";i:1309;s:2:\"id\";i:22632;s:5:\"title\";s:42:\"Classic | Subscription | Merchandise Shop\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/Merchandise-Shop-39-small.jpg\";s:12:\"tmpl_created\";i:1647509196;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/classic-subscription-merchandise-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Ecommerce\",\"Marketing\",\"Shop\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:27;a:20:{s:4:\"tmpl\";i:1310;s:2:\"id\";i:22643;s:5:\"title\";s:48:\"Fly-In | Contact | Non-Governmental Organization\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/03/NGO-41-small.jpg\";s:12:\"tmpl_created\";i:1647509528;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:150:\"https://library.elementor.com/popups/fly-in-contact-non-governmental-organization/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:28;a:20:{s:4:\"tmpl\";i:1311;s:2:\"id\";i:22654;s:5:\"title\";s:35:\"Hello Bar | Contact | Family Doctor\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/family-doctor-44-small.jpg\";s:12:\"tmpl_created\";i:1647509732;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/hello-bar-contact-family-doctor/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:31:\"[\"Contact\",\"Health\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:29;a:20:{s:4:\"tmpl\";i:1312;s:2:\"id\";i:22663;s:5:\"title\";s:36:\"Classic | Subscription | Sports Blog\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/03/45-sport-blog-Subscription.jpg\";s:12:\"tmpl_created\";i:1647509908;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-subscription-sports-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:16:\"[\"Blog\",\"Sport\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:30;a:20:{s:4:\"tmpl\";i:1313;s:2:\"id\";i:22673;s:5:\"title\";s:30:\"Hello Bar | Booking | Event DJ\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/DJ-service-46-small.jpg\";s:12:\"tmpl_created\";i:1647510160;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/hello-bar-booking-event-dj/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:31:\"[\"Booking\",\"Events\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:31;a:20:{s:4:\"tmpl\";i:1314;s:2:\"id\";i:22684;s:5:\"title\";s:36:\"Fly-In | Discount | Cleaning Company\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/51-cleaning-company-Discount.jpg\";s:12:\"tmpl_created\";i:1647510546;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/fly-in-discount-cleaning-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:31:\"[\"Discount\",\"Offer\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:32;a:20:{s:4:\"tmpl\";i:1315;s:2:\"id\";i:22693;s:5:\"title\";s:28:\"Fly-In | Contact | Carpenter\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/carpenter-53-small.jpg\";s:12:\"tmpl_created\";i:1647511972;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/fly-in-contact-carpenter/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:22:\"[\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:33;a:20:{s:4:\"tmpl\";i:1316;s:2:\"id\";i:22703;s:5:\"title\";s:31:\"Classic | Booking | Yoga Studio\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/55-yoga-studio-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647512209;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-booking-yoga-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:30:\"[\"Booking\",\"Contact\",\"Health\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:34;a:20:{s:4:\"tmpl\";i:1317;s:2:\"id\";i:22714;s:5:\"title\";s:37:\"Classic | Discount | Pet Care Company\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/56-Pet-Care-Discount.jpg\";s:12:\"tmpl_created\";i:1647513031;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/classic-discount-pet-care-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:17:\"[\"Offer\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:35;a:20:{s:4:\"tmpl\";i:1318;s:2:\"id\";i:22725;s:5:\"title\";s:38:\"Fly-In | Discount | Online Coffee Shop\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/online-coffee-shop-57-small.jpg\";s:12:\"tmpl_created\";i:1647513325;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/fly-in-discount-online-coffee-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:29:\"[\"Food\",\"Offer\",\"Restaurant\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:36;a:20:{s:4:\"tmpl\";i:1319;s:2:\"id\";i:22737;s:5:\"title\";s:44:\"Fly-In | CTA | Moving & Storage Company\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/moving-company-59-small.jpg\";s:12:\"tmpl_created\";i:1647520956;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/fly-in-cta-moving-storage-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:37;a:20:{s:4:\"tmpl\";i:1320;s:2:\"id\";i:22749;s:5:\"title\";s:47:\"Classic | Contact | Industrial Design Portfolio\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/60-industrial-design-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647528116;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:149:\"https://library.elementor.com/popups/classic-contact-industrial-design-portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:40:\"[\"Contact\",\"Interior Design\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:38;a:20:{s:4:\"tmpl\";i:1321;s:2:\"id\";i:22759;s:5:\"title\";s:25:\"Classic | Contact | Drone\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/drone-61-small.jpg\";s:12:\"tmpl_created\";i:1647528899;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/classic-contact-drone/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:22:\"[\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:39;a:20:{s:4:\"tmpl\";i:1322;s:2:\"id\";i:22768;s:5:\"title\";s:46:\"Full Screen | Menu | Fashion Stylist Portfolio\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/62-Fashion-Stylist-Menu.jpg\";s:12:\"tmpl_created\";i:1647529434;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/full-screen-menu-fashion-stylist-portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:31:\"[\"Fashion\",\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:40;a:20:{s:4:\"tmpl\";i:1323;s:2:\"id\";i:22780;s:5:\"title\";s:31:\"Fly-In | CTA | Landscape Design\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/64-Landscape-Design-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647530337;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-cta-landscape-design/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:18:\"[\"cta\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:41;a:20:{s:4:\"tmpl\";i:1324;s:2:\"id\";i:22790;s:5:\"title\";s:48:\"Bottom Bar | Contact | Architecture Photography\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/architecture-photography-65-small.jpg\";s:12:\"tmpl_created\";i:1647532358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:149:\"https://library.elementor.com/popups/bottom-bar-contact-architecture-photography/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:26:\"[\"Architecture\",\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:42;a:20:{s:4:\"tmpl\";i:1325;s:2:\"id\";i:22800;s:5:\"title\";s:41:\"Fly-In | CTA | Speech-Language Therapist\";s:9:\"thumbnail\";s:103:\"https://library.elementor.com/wp-content/uploads/2022/03/66-Speech-Language-Therapist-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647532720;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/fly-in-cta-speech-language-therapist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:25:\"[\"cta\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:43;a:20:{s:4:\"tmpl\";i:1326;s:2:\"id\";i:22812;s:5:\"title\";s:35:\"Full Screen | Verification | Winery\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/67-Winery-Verification.jpg\";s:12:\"tmpl_created\";i:1647761384;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/full-screen-verification-winery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:24:\"[\"Alert\",\"Verification\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:44;a:20:{s:4:\"tmpl\";i:1327;s:2:\"id\";i:22822;s:5:\"title\";s:36:\"Fly-In | Subscription | Nutritionist\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/nutritionist-69-small.jpg\";s:12:\"tmpl_created\";i:1647762620;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/fly-in-subscription-nutritionist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:28:\"[\"Food\",\"Health\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:45;a:20:{s:4:\"tmpl\";i:1328;s:2:\"id\";i:22833;s:5:\"title\";s:40:\"Classic | Subscription | App & SaaS\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/03/app-70-small.jpg\";s:12:\"tmpl_created\";i:1647762955;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/classic-subscription-app-saas/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:14:\"[\"App\",\"SaaS\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:46;a:20:{s:4:\"tmpl\";i:1329;s:2:\"id\";i:22844;s:5:\"title\";s:41:\"Bottom Bar | Discount | Handmade Cupcakes\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/72-Handmade-Cupcakes-Discount.jpg\";s:12:\"tmpl_created\";i:1647763350;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/bottom-bar-discount-handmade-cupcakes/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:21:\"[\"Food\",\"Restaurant\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:47;a:20:{s:4:\"tmpl\";i:1330;s:2:\"id\";i:22855;s:5:\"title\";s:40:\"Bottom Bar | Subscription | Fashion Blog\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/fashion-blog-75-small.jpg\";s:12:\"tmpl_created\";i:1647763907;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/bottom-bar-subscription-fashion-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:30:\"[\"Blog\",\"Fashion\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:48;a:20:{s:4:\"tmpl\";i:1331;s:2:\"id\";i:22866;s:5:\"title\";s:28:\"Fly-In | CTA | Private Tutor\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/private-tutor-77-small.jpg\";s:12:\"tmpl_created\";i:1647764062;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/fly-in-cta-private-tutor/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:49;a:20:{s:4:\"tmpl\";i:1332;s:2:\"id\";i:22876;s:5:\"title\";s:30:\"Classic | CTA | Tennis Academy\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/78-Tennis-Academy-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647765192;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-tennis-academy/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:50;a:20:{s:4:\"tmpl\";i:1333;s:2:\"id\";i:22887;s:5:\"title\";s:31:\"Fly-In | CTA | Shared Workspace\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/shared-workspace-79-small.jpg\";s:12:\"tmpl_created\";i:1647765419;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-cta-shared-workspace/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:18:\"[\"Business\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:51;a:20:{s:4:\"tmpl\";i:1334;s:2:\"id\";i:22899;s:5:\"title\";s:30:\"Bottom Bar | CTA | Art Gallery\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/80-Art-Gallery-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647765652;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/bottom-bar-cta-art-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:13:\"[\"Art\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:52;a:20:{s:4:\"tmpl\";i:1335;s:2:\"id\";i:22910;s:5:\"title\";s:44:\"Fly-In | Subscription | Hiking Tours Company\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/hiking-tours-company-81-small.jpg\";s:12:\"tmpl_created\";i:1647765835;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/popups/fly-in-subscription-hiking-tours-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:29:\"[\"Subscribe\",\"Travel\",\"Trip\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:53;a:20:{s:4:\"tmpl\";i:1336;s:2:\"id\";i:22921;s:5:\"title\";s:26:\"Classic | CTA | Music Band\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/music-band-82-small.jpg\";s:12:\"tmpl_created\";i:1647769462;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/popups/classic-cta-music-band/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:21:\"[\"Marketing\",\"Music\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:54;a:20:{s:4:\"tmpl\";i:1337;s:2:\"id\";i:22935;s:5:\"title\";s:35:\"Classic | CTA | Computer Technician\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/comuter-technician-83-small.jpg\";s:12:\"tmpl_created\";i:1647769843;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/classic-cta-computer-technician/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:18:\"[\"cta\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:55;a:20:{s:4:\"tmpl\";i:1338;s:2:\"id\";i:22945;s:5:\"title\";s:37:\"Classic | Discount | Delivery Company\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/delivery-company-88-small.jpg\";s:12:\"tmpl_created\";i:1647770834;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/classic-discount-delivery-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"Discount\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:56;a:20:{s:4:\"tmpl\";i:1339;s:2:\"id\";i:22959;s:5:\"title\";s:29:\"Classic | Discount | Eco Shop\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/echo-shop-89-small.jpg\";s:12:\"tmpl_created\";i:1647771211;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/classic-discount-eco-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:24:\"[\"Discount\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:57;a:20:{s:4:\"tmpl\";i:1340;s:2:\"id\";i:22972;s:5:\"title\";s:54:\"Fly-In | Subscription | Health & Mindfulness Blog\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/health-blog-91-small.jpg\";s:12:\"tmpl_created\";i:1647771461;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:149:\"https://library.elementor.com/popups/fly-in-subscription-health-mindfulness-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:21:\"[\"Health\",\"Magazine\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:58;a:20:{s:4:\"tmpl\";i:1341;s:2:\"id\";i:22982;s:5:\"title\";s:31:\"Full Screen | Menu | Art Museum\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/art-museum-112-small.jpg\";s:12:\"tmpl_created\";i:1647771938;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/full-screen-menu-art-museum/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:59;a:20:{s:4:\"tmpl\";i:1342;s:2:\"id\";i:22992;s:5:\"title\";s:40:\"Classic | Discount | Urban Clothing Shop\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/health-blog-91-small-1.jpg\";s:12:\"tmpl_created\";i:1647773067;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/classic-discount-urban-clothing-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Discount\",\"Ecommerce\",\"Fashion\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:60;a:20:{s:4:\"tmpl\";i:1343;s:2:\"id\";i:23004;s:5:\"title\";s:60:\"Full Screen | Menu | Digital & Technology Design School\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/digital-design-tech-school-small-1.jpg\";s:12:\"tmpl_created\";i:1647773366;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:155:\"https://library.elementor.com/popups/full-screen-menu-digital-technology-design-school/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:61;a:20:{s:4:\"tmpl\";i:1344;s:2:\"id\";i:23015;s:5:\"title\";s:62:\"Bottom Bar | Contact | Digital & Technology Design School\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2022/03/digital-design-tech-school-small.jpg\";s:12:\"tmpl_created\";i:1647773492;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:157:\"https://library.elementor.com/popups/bottom-bar-contact-digital-technology-design-school/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:23:\"[\"Contact\",\"Portfolio\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:62;a:20:{s:4:\"tmpl\";i:1345;s:2:\"id\";i:23025;s:5:\"title\";s:32:\"Full Screen | Menu | Flower Shop\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/flower-shop-small.jpg\";s:12:\"tmpl_created\";i:1647773820;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/full-screen-menu-flower-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:63;a:20:{s:4:\"tmpl\";i:1346;s:2:\"id\";i:23037;s:5:\"title\";s:36:\"Classic | Subscription | Flower Shop\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/flower-shop-small-1.jpg\";s:12:\"tmpl_created\";i:1647773949;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-subscription-flower-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:24:\"[\"Discount\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:64;a:20:{s:4:\"tmpl\";i:1347;s:2:\"id\";i:23056;s:5:\"title\";s:48:\"Classic | Discount | Health & Fitness eBook\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/fitness-ebook-small-1.jpg\";s:12:\"tmpl_created\";i:1647774468;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/classic-discount-health-fitness-ebook/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"Contact\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:65;a:20:{s:4:\"tmpl\";i:1348;s:2:\"id\";i:23067;s:5:\"title\";s:37:\"Fly-In | Menu | Baby Sleep Consultant\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/baby-sleep-consultant-small-1.jpg\";s:12:\"tmpl_created\";i:1647778954;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/baby-sleep-consultant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:66;a:20:{s:4:\"tmpl\";i:1349;s:2:\"id\";i:23077;s:5:\"title\";s:46:\"Classic | Subscription | Baby Sleep Consultant\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/baby-sleep-consultant-small.jpg\";s:12:\"tmpl_created\";i:1647779074;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/classic-subscription-baby-sleep-consultant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:12:\"[\"Discount\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:67;a:20:{s:4:\"tmpl\";i:1350;s:2:\"id\";i:23090;s:5:\"title\";s:33:\"Full Screen | Menu | Luxury Hotel\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/luxury-hotel-small.jpg\";s:12:\"tmpl_created\";i:1647779390;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/full-screen-menu-luxury-hotel/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:68;a:20:{s:4:\"tmpl\";i:1351;s:2:\"id\";i:23100;s:5:\"title\";s:31:\"Fly-In | Booking | Luxury Hotel\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/luxury-hotel-small-1.jpg\";s:12:\"tmpl_created\";i:1647779500;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-booking-luxury-hotel/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:20:\"[\"Booking\",\"Travel\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:69;a:20:{s:4:\"tmpl\";i:1352;s:2:\"id\";i:23109;s:5:\"title\";s:38:\"Full Screen | Menu | Design Conference\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/03/design-conference-35-small.jpg\";s:12:\"tmpl_created\";i:1647779675;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/full-screen-menu-design-conference/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:70;a:20:{s:4:\"tmpl\";i:1353;s:2:\"id\";i:23120;s:5:\"title\";s:41:\"Full Screen | Booking | Design Conference\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/design-conference-35-small-1.jpg\";s:12:\"tmpl_created\";i:1647779793;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/full-screen-booking-design-conference/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:35:\"[\"Booking\",\"Conference\",\"Creative\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:71;a:20:{s:4:\"tmpl\";i:1354;s:2:\"id\";i:23129;s:5:\"title\";s:29:\"Slide-In | Menu | VR Headsets\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/VR-headset-small.jpg\";s:12:\"tmpl_created\";i:1647781211;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/slide-in-menu-vr-headsets/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:72;a:20:{s:4:\"tmpl\";i:1355;s:2:\"id\";i:23139;s:5:\"title\";s:31:\"Classic | Contact | VR Headsets\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/VR-headset-small-1.jpg\";s:12:\"tmpl_created\";i:1647781384;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-contact-vr-headsets/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:73;a:20:{s:4:\"tmpl\";i:1356;s:2:\"id\";i:23149;s:5:\"title\";s:38:\"Slide-In | Menu | Portrait Photography\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/48-portrair-photography-Menu.jpg\";s:12:\"tmpl_created\";i:1647782336;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/slide-in-menu-portrait-photography/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:74;a:20:{s:4:\"tmpl\";i:1357;s:2:\"id\";i:23159;s:5:\"title\";s:47:\"Hello Bar | Subscription | Portrait Photography\";s:9:\"thumbnail\";s:97:\"https://library.elementor.com/wp-content/uploads/2022/03/48-portrair-photography-Subscription.jpg\";s:12:\"tmpl_created\";i:1647782478;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:149:\"https://library.elementor.com/popups/hello-bar-subscription-portrait-photography/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:34:\"[\"Blog\",\"Photography\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:75;a:20:{s:4:\"tmpl\";i:1358;s:2:\"id\";i:23169;s:5:\"title\";s:32:\"Full Screen | Menu | English Pub\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/49-englisg-pub-Menu.jpg\";s:12:\"tmpl_created\";i:1647782664;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/full-screen-menu-english-pub/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:76;a:20:{s:4:\"tmpl\";i:1359;s:2:\"id\";i:23179;s:5:\"title\";s:32:\"Classic | Discount | English Pub\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/49-englisg-pub-Discount.jpg\";s:12:\"tmpl_created\";i:1647782796;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-discount-english-pub/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:20:\"[\"Discount\",\"Offer\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:77;a:20:{s:4:\"tmpl\";i:1360;s:2:\"id\";i:23189;s:5:\"title\";s:27:\"Full Screen | Menu | Singer\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/58-Music-Artist-Menu.jpg\";s:12:\"tmpl_created\";i:1647783070;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/full-screen-menu-singer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:29:\"[\"Fullscreen\",\"menu\",\"Music\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:78;a:20:{s:4:\"tmpl\";i:1361;s:2:\"id\";i:23200;s:5:\"title\";s:31:\"Classic | Subscription | Singer\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/58-Music-Artist-Subscription.jpg\";s:12:\"tmpl_created\";i:1647783249;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-subscription-singer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:21:\"[\"Music\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:79;a:20:{s:4:\"tmpl\";i:1362;s:2:\"id\";i:23210;s:5:\"title\";s:38:\"Full Screen | Menu | Virtual Assistant\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/virtual-assistnt-73-small.jpg\";s:12:\"tmpl_created\";i:1647784292;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/full-screen-menu-virtual-assistant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:80;a:20:{s:4:\"tmpl\";i:1363;s:2:\"id\";i:23223;s:5:\"title\";s:39:\"Hello Bar | Contact | Virtual Assistant\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/73-Virtual-Assistant-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647784616;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/hello-bar-contact-virtual-assistant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:37:\"[\"Contact\",\"Psychologist\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:81;a:20:{s:4:\"tmpl\";i:1364;s:2:\"id\";i:23234;s:5:\"title\";s:32:\"Slide-In | Menu | Personal Chef\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/74-Personal-Chef-Menu.jpg\";s:12:\"tmpl_created\";i:1647798194;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/slide-in-menu-personal-chef/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:82;a:20:{s:4:\"tmpl\";i:1365;s:2:\"id\";i:23244;s:5:\"title\";s:29:\"Classic | CTA | Personal Chef\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/74-Personal-Chef-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647798297;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/classic-cta-personal-chef/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:24:\"[\"Booking\",\"Chef\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:83;a:20:{s:4:\"tmpl\";i:1366;s:2:\"id\";i:23254;s:5:\"title\";s:31:\"Full Screen | Menu | Food Truck\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/food-truck-76-small-1.jpg\";s:12:\"tmpl_created\";i:1647798447;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/full-screen-menu-food-truck/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:84;a:20:{s:4:\"tmpl\";i:1367;s:2:\"id\";i:23265;s:5:\"title\";s:30:\"Fly-In | Discount | Food Truck\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/food-truck-76-small.jpg\";s:12:\"tmpl_created\";i:1647798657;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/fly-in-discount-food-truck/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:20:\"[\"Discount\",\"Offer\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:85;a:20:{s:4:\"tmpl\";i:1369;s:2:\"id\";i:23323;s:5:\"title\";s:28:\"Classic | CTA | Black Friday\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-6-Small.jpg\";s:12:\"tmpl_created\";i:1647855505;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-cta-black-friday/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:86;a:20:{s:4:\"tmpl\";i:1370;s:2:\"id\";i:23329;s:5:\"title\";s:29:\"Slide-In | CTA | Black Friday\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-5-Small.jpg\";s:12:\"tmpl_created\";i:1647855865;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/slide-in-cta-black-friday/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:87;a:20:{s:4:\"tmpl\";i:1371;s:2:\"id\";i:23335;s:5:\"title\";s:31:\"Slide-In | CTA | Black Friday 1\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-1-Small.jpg\";s:12:\"tmpl_created\";i:1647856357;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/slide-in-cta-black-friday-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:88;a:20:{s:4:\"tmpl\";i:1372;s:2:\"id\";i:23341;s:5:\"title\";s:30:\"Classic | CTA | Black Friday 2\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-3-Small.jpg\";s:12:\"tmpl_created\";i:1647856493;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-black-friday-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:89;a:20:{s:4:\"tmpl\";i:1373;s:2:\"id\";i:23347;s:5:\"title\";s:30:\"Classic | CTA | Black Friday 3\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-2-Small.jpg\";s:12:\"tmpl_created\";i:1647856891;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-black-friday-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:90;a:20:{s:4:\"tmpl\";i:1374;s:2:\"id\";i:23354;s:5:\"title\";s:30:\"Classic | CTA | Black Friday 4\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-4-Small.jpg\";s:12:\"tmpl_created\";i:1647856996;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-black-friday-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:91;a:20:{s:4:\"tmpl\";i:1375;s:2:\"id\";i:23394;s:5:\"title\";s:27:\"Classic | CTA | Halloween 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-3-Small.jpg\";s:12:\"tmpl_created\";i:1647857351;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-cta-halloween-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:31:\"[\"cta\",\"Ecommerce\",\"Halloween\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:92;a:20:{s:4:\"tmpl\";i:1376;s:2:\"id\";i:23401;s:5:\"title\";s:33:\"Slide-In | Discount | Halloween 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-2-Small.jpg\";s:12:\"tmpl_created\";i:1647857567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/slide-in-discount-halloween-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:36:\"[\"Discount\",\"Ecommerce\",\"Halloween\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:93;a:20:{s:4:\"tmpl\";i:1377;s:2:\"id\";i:23407;s:5:\"title\";s:33:\"Slide-In | Discount | Halloween 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-1-Small.jpg\";s:12:\"tmpl_created\";i:1647857814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/slide-in-discount-halloween-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:36:\"[\"Discount\",\"Ecommerce\",\"Halloween\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:94;a:20:{s:4:\"tmpl\";i:1378;s:2:\"id\";i:23416;s:5:\"title\";s:31:\"Fly-In | Discount | Halloween 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-5-Small.jpg\";s:12:\"tmpl_created\";i:1647858024;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-discount-halloween-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:44:\"[\"Discount\",\"Ecommerce\",\"Halloween\",\"Offer\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:95;a:20:{s:4:\"tmpl\";i:1379;s:2:\"id\";i:23422;s:5:\"title\";s:36:\"Classic | Subscription | Halloween 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-4-Small.jpg\";s:12:\"tmpl_created\";i:1647858246;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-subscription-halloween-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:48:\"[\"Discount\",\"Ecommerce\",\"Halloween\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:96;a:20:{s:4:\"tmpl\";i:1380;s:2:\"id\";i:23471;s:5:\"title\";s:28:\"Slide-In | CTA | Christmas 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-2-Small.jpg\";s:12:\"tmpl_created\";i:1647859193;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/slide-in-cta-christmas-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:19:\"[\"Christmas\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:97;a:20:{s:4:\"tmpl\";i:1381;s:2:\"id\";i:23477;s:5:\"title\";s:28:\"Slide-In | CTA | Christmas 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-4-Small.jpg\";s:12:\"tmpl_created\";i:1647859838;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/slide-in-cta-christmas-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:19:\"[\"Christmas\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:98;a:20:{s:4:\"tmpl\";i:1382;s:2:\"id\";i:23483;s:5:\"title\";s:26:\"Fly-In | CTA | Christmas 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-1-Small.jpg\";s:12:\"tmpl_created\";i:1647860157;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/popups/fly-in-cta-christmas-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:31:\"[\"Christmas\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:99;a:20:{s:4:\"tmpl\";i:1383;s:2:\"id\";i:23489;s:5:\"title\";s:33:\"Slide-In | Discount | Christmas 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-5-Small.jpg\";s:12:\"tmpl_created\";i:1647860302;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/slide-in-discount-christmas-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:31:\"[\"Christmas\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:100;a:20:{s:4:\"tmpl\";i:1384;s:2:\"id\";i:23496;s:5:\"title\";s:32:\"Classic | Discount | Christmas 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-3-Small.jpg\";s:12:\"tmpl_created\";i:1647860454;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-discount-christmas-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Christmas\",\"Offer\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:101;a:20:{s:4:\"tmpl\";i:1385;s:2:\"id\";i:23523;s:5:\"title\";s:30:\"Classic | CTA | Valentines Day\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/Valentines-Day-2-Small.jpg\";s:12:\"tmpl_created\";i:1647860912;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-valentines-day/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"cta\",\"Valentine\'s Day\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:102;a:20:{s:4:\"tmpl\";i:1386;s:2:\"id\";i:23529;s:5:\"title\";s:39:\"Hello Bar | Discount | Valentines Day 2\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/Valentines-Day-1-Small.jpg\";s:12:\"tmpl_created\";i:1647861064;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/hello-bar-discount-valentines-day-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:30:\"[\"Discount\",\"Valentine\'s Day\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:103;a:20:{s:4:\"tmpl\";i:1387;s:2:\"id\";i:23536;s:5:\"title\";s:32:\"Classic | CTA | Valentines Day 3\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/Valentines-Day-3-Small.jpg\";s:12:\"tmpl_created\";i:1647861536;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-cta-valentines-day-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"cta\",\"Valentine\'s Day\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:104;a:20:{s:4:\"tmpl\";i:1388;s:2:\"id\";i:23586;s:5:\"title\";s:51:\"Fly-In | Subscribe | Health & Wellness Company\";s:9:\"thumbnail\";s:103:\"https://library.elementor.com/wp-content/uploads/2022/03/35-Subscribe-Health-Wellness-Company-Small.jpg\";s:12:\"tmpl_created\";i:1647862008;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/popups/fly-in-subscribe-health-wellness-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:24:\"[\"Business\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:105;a:20:{s:4:\"tmpl\";i:1389;s:2:\"id\";i:23592;s:5:\"title\";s:34:\"Classic | Subscribe | Tech Company\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/36-Subscribe-Tech-Company-Small.jpg\";s:12:\"tmpl_created\";i:1647866706;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/classic-subscribe-tech-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"Marketing\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:106;a:20:{s:4:\"tmpl\";i:1390;s:2:\"id\";i:23598;s:5:\"title\";s:36:\"Classic | Contact Us | Fight Classes\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/37-Contact-Us-Fight-Classes-Small.jpg\";s:12:\"tmpl_created\";i:1647866869;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-contact-us-fight-classes/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"Contact\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:107;a:20:{s:4:\"tmpl\";i:1391;s:2:\"id\";i:23611;s:5:\"title\";s:31:\"Classic | CTA | Mochi Shop Sale\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2022/03/39-Click-Through-Mochi-Shop-Sale-Small.jpg\";s:12:\"tmpl_created\";i:1647867750;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-cta-mochi-shop-sale/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"cta\",\"Offer\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:108;a:20:{s:4:\"tmpl\";i:1392;s:2:\"id\";i:23618;s:5:\"title\";s:28:\"Classic | CTA | Fashion Shop\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2022/03/40-Click-Through-Fashion-Shop-Small.jpg\";s:12:\"tmpl_created\";i:1647868251;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-cta-fashion-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:109;a:20:{s:4:\"tmpl\";i:1393;s:2:\"id\";i:23624;s:5:\"title\";s:29:\"Fly-In | Login | Tech Company\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/41-Login-Tech-Company-Small.jpg\";s:12:\"tmpl_created\";i:1647868704;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/fly-in-login-tech-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:9:\"[\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:110;a:20:{s:4:\"tmpl\";i:1394;s:2:\"id\";i:23630;s:5:\"title\";s:36:\"Fly-In | Verification | Liquor Store\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/42-Verification-Liquor-Store-Small.jpg\";s:12:\"tmpl_created\";i:1647870308;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/fly-in-verification-liquor-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:16:\"[\"Verification\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:111;a:20:{s:4:\"tmpl\";i:1395;s:2:\"id\";i:23636;s:5:\"title\";s:39:\"Hello Bar | Subscribe | Online Magazine\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/44-Subscribe-Online-Magazine-Small.jpg\";s:12:\"tmpl_created\";i:1647870465;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/hello-bar-subscribe-online-magazine/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:20:\"[\"Blog\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:112;a:20:{s:4:\"tmpl\";i:1396;s:2:\"id\";i:23642;s:5:\"title\";s:27:\"Fly-In | Login | Health Spa\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/43-Login-Health-Spa-Small.jpg\";s:12:\"tmpl_created\";i:1647872427;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/fly-in-login-health-spa/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:20:\"[\"Login\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:113;a:20:{s:4:\"tmpl\";i:1397;s:2:\"id\";i:23648;s:5:\"title\";s:33:\"Fly-In | Verification | Wine Shop\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/45-Verification-Wine-Shop-Small.jpg\";s:12:\"tmpl_created\";i:1647872627;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/fly-in-verification-wine-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:16:\"[\"Verification\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:114;a:20:{s:4:\"tmpl\";i:1421;s:2:\"id\";i:24235;s:5:\"title\";s:24:\"Ladydog Club – NFT\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/05/Ladydog_Club.jpg\";s:12:\"tmpl_created\";i:1651525072;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/ladydog-club-nft/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:115;a:20:{s:4:\"tmpl\";i:1422;s:2:\"id\";i:24166;s:5:\"title\";s:15:\"Dot – NFT\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2022/05/Dot-250_280.jpg\";s:12:\"tmpl_created\";i:1651525117;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/lp/dot-nft/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:116;a:20:{s:4:\"tmpl\";i:1423;s:2:\"id\";i:24191;s:5:\"title\";s:28:\"Cosmic Neighbors – NFT\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Cosmic_Neighbors-250_280.jpg\";s:12:\"tmpl_created\";i:1651525124;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/cosmic-neighbors-nft/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:117;a:20:{s:4:\"tmpl\";i:1424;s:2:\"id\";i:24255;s:5:\"title\";s:30:\"Happy Food Friends – NFT\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/05/Featured_Image.jpg\";s:12:\"tmpl_created\";i:1651525475;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/happy-food-friends-nft/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:118;a:20:{s:4:\"tmpl\";i:1443;s:2:\"id\";i:24599;s:5:\"title\";s:27:\"Wireframe – Courses 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Courses-1.jpg\";s:12:\"tmpl_created\";i:1653989626;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/wireframe-courses-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:180:\"[\"About\",\"Academy\",\"Booking\",\"Business\",\"Course Online\",\"Features\",\"Footer\",\"Landing Pages\",\"Online Service\",\"Professional\",\"School\",\"Services\",\"Subscribe\",\"Teacher\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:119;a:20:{s:4:\"tmpl\";i:1444;s:2:\"id\";i:24614;s:5:\"title\";s:28:\"Wireframe – Services 1\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-1-2.jpg\";s:12:\"tmpl_created\";i:1653990084;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:139:\"[\"About\",\"Business\",\"Contact\",\"Features\",\"Footer\",\"Form\",\"Header\",\"Landing Pages\",\"Online Service\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:120;a:20:{s:4:\"tmpl\";i:1445;s:2:\"id\";i:24629;s:5:\"title\";s:28:\"Wireframe – Services 2\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-2-2.jpg\";s:12:\"tmpl_created\";i:1653990132;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:123:\"[\"About\",\"Business\",\"Contact\",\"Features\",\"Footer\",\"Form\",\"Gallery\",\"Landing Pages\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:121;a:20:{s:4:\"tmpl\";i:1446;s:2:\"id\";i:24644;s:5:\"title\";s:27:\"Wireframe – Webinar 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Webinar-1.jpg\";s:12:\"tmpl_created\";i:1653990164;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/wireframe-webinar-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:177:\"[\"About\",\"Academy\",\"Booking\",\"Conference\",\"Course Online\",\"Education\",\"Features\",\"Footer\",\"Form\",\"Landing Pages\",\"Online Event\",\"Online Service\",\"Subscribe\",\"Virtual\",\"Webinar\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:122;a:20:{s:4:\"tmpl\";i:1447;s:2:\"id\";i:24655;s:5:\"title\";s:28:\"Wireframe – Services 3\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-3-2.jpg\";s:12:\"tmpl_created\";i:1653990198;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:143:\"[\"About\",\"Agency\",\"Business\",\"Contact\",\"Footer\",\"Form\",\"Gallery\",\"Landing Pages\",\"Portfolio\",\"Professional\",\"Project\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:123;a:20:{s:4:\"tmpl\";i:1448;s:2:\"id\";i:24677;s:5:\"title\";s:28:\"Wireframe – Services 4\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-4.jpg\";s:12:\"tmpl_created\";i:1653990233;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:102:\"[\"About\",\"Business\",\"Contact\",\"Footer\",\"Form\",\"Landing Pages\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:124;a:20:{s:4:\"tmpl\";i:1449;s:2:\"id\";i:24687;s:5:\"title\";s:28:\"Wireframe – Products 1\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Products-1.jpg\";s:12:\"tmpl_created\";i:1653990273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-products-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:128:\"[\"About\",\"Booking\",\"Business\",\"Clients\",\"Ecommerce\",\"Features\",\"Footer\",\"Landing Pages\",\"Products\",\"Sales\",\"Shop\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:125;a:20:{s:4:\"tmpl\";i:1450;s:2:\"id\";i:24706;s:5:\"title\";s:28:\"Wireframe – Services 5\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-5.jpg\";s:12:\"tmpl_created\";i:1653990322;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:149:\"[\"About\",\"Booking\",\"Consulting\",\"Contact\",\"Doctor\",\"Footer\",\"Form\",\"Header\",\"Landing Pages\",\"Online Service\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:126;a:20:{s:4:\"tmpl\";i:1451;s:2:\"id\";i:23604;s:5:\"title\";s:38:\"Classic | Subscribe | Nail Polish Shop\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2022/03/38-Subscribe-Nail-Polish-Shop-Small.jpg\";s:12:\"tmpl_created\";i:1660205114;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/classic-subscribe-nail-polish-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:20:\"[\"Blog\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:127;a:20:{s:4:\"tmpl\";i:1452;s:2:\"id\";i:23047;s:5:\"title\";s:46:\"Fly-In | Contact | Health & Fitness eBook\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/fitness-ebook-small.jpg\";s:12:\"tmpl_created\";i:1660205149;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/fly-in-contact-health-fitness-ebook/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:28:\"[\"Contact\",\"Ebook\",\"Health\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:128;a:20:{s:4:\"tmpl\";i:1199;s:2:\"id\";i:18839;s:5:\"title\";s:27:\"Hello Bar | CTA | eCommerce\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/05/350x250.png\";s:12:\"tmpl_created\";i:1621870603;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/hello-bar-cta-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:41:\"[\"Ecommerce\",\"Online Shop\",\"Sale\",\"Shop\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:129;a:20:{s:4:\"tmpl\";i:1247;s:2:\"id\";i:21907;s:5:\"title\";s:50:\"Fly-In | Team Details | Electronic Music Festival\";s:9:\"thumbnail\";s:104:\"https://library.elementor.com/wp-content/uploads/2022/03/Kit-8-electronic-music-festival-CTA-image-1.jpg\";s:12:\"tmpl_created\";i:1646660881;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:157:\"https://library.elementor.com/popups/fly-in-team-details-popup-electronic-music-festival/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:130;a:20:{s:4:\"tmpl\";i:1253;s:2:\"id\";i:22162;s:5:\"title\";s:46:\"Full Screen | Menu | Electronic Music Festival\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/8-music-festival-Team-Details.jpg\";s:12:\"tmpl_created\";i:1647272934;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:154:\"https://library.elementor.com/popups/full-screen-menu-popup-electronic-music-festival/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:131;a:20:{s:4:\"tmpl\";i:1254;s:2:\"id\";i:22172;s:5:\"title\";s:45:\"Classic | Discount | Health & Beauty Spa\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/health-beauty-spa-small.jpg\";s:12:\"tmpl_created\";i:1647273547;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/popups/classic-discount-popup-health-beauty-spa/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:36:\"[\"Hair\",\"Health\",\"Sales\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:132;a:20:{s:4:\"tmpl\";i:1255;s:2:\"id\";i:22183;s:5:\"title\";s:44:\"Hello Bar | CTA | Environmental Organization\";s:9:\"thumbnail\";s:104:\"https://library.elementor.com/wp-content/uploads/2022/03/11-Environmental-Organization-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647274384;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:152:\"https://library.elementor.com/popups/hello-bar-cta-popup-environmental-organization/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:133;a:20:{s:4:\"tmpl\";i:1256;s:2:\"id\";i:22195;s:5:\"title\";s:39:\"Classic | Discount | Italian Restaurant\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/restaurant-small.jpg\";s:12:\"tmpl_created\";i:1647329432;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:147:\"https://library.elementor.com/popups/classic-discount-popup-italian-restaurant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:22:\"[\"Restaurant\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:134;a:20:{s:4:\"tmpl\";i:1257;s:2:\"id\";i:22210;s:5:\"title\";s:45:\"Bottom Bar | Discount | Technology Conference\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/tech-conference-small.jpg\";s:12:\"tmpl_created\";i:1647330423;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:153:\"https://library.elementor.com/popups/bottom-bar-discount-popup-technology-conference/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:38:\"[\"Conference\",\"Sales\",\"Save the Date\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:135;a:20:{s:4:\"tmpl\";i:1258;s:2:\"id\";i:22221;s:5:\"title\";s:32:\"Hello Bar | Menu | Tattoo Studio\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/tattoo-studio-small-1.jpg\";s:12:\"tmpl_created\";i:1647330705;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/hello-bar-menu-popup-tattoo-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:17:\"[\"Header\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:136;a:20:{s:4:\"tmpl\";i:1259;s:2:\"id\";i:22231;s:5:\"title\";s:37:\"Full Screen | Booking | Tattoo Studio\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/tattoo-studio-small.jpg\";s:12:\"tmpl_created\";i:1647331823;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/popups/full-screen-booking-popup-tattoo-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:32:\"[\"Booking\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:137;a:20:{s:4:\"tmpl\";i:1260;s:2:\"id\";i:22251;s:5:\"title\";s:34:\"Classic | Discount | Dental Clinic\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/dental-clinic-small.jpg\";s:12:\"tmpl_created\";i:1647332171;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/classic-discount-popup-dental-clinic/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:30:\"[\"Health\",\"Marketing\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:138;a:20:{s:4:\"tmpl\";i:1261;s:2:\"id\";i:22261;s:5:\"title\";s:34:\"Slide-In | Contact | Makeup Artist\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/20-Makeup-Artist-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647333946;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/slide-in-contact-popup-makeup-artist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:33:\"[\"Business\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:139;a:20:{s:4:\"tmpl\";i:1262;s:2:\"id\";i:22271;s:5:\"title\";s:24:\"Fly-In | CTA | Headphone\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/headphones-1-small.jpg\";s:12:\"tmpl_created\";i:1647334784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/fly-in-cta-popup-headphone/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:41:\"[\"cta\",\"Ecommerce\",\"Marketing\",\"Product\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:140;a:20:{s:4:\"tmpl\";i:1263;s:2:\"id\";i:22277;s:5:\"title\";s:29:\"Classic | CTA | Online Course\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/online-course-2.jpg\";s:12:\"tmpl_created\";i:1647337110;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/classic-cta-popup-online-course/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:35:\"[\"Course Online\",\"cta\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:141;a:20:{s:4:\"tmpl\";i:1264;s:2:\"id\";i:22283;s:5:\"title\";s:40:\"Bottom Bar | Contact | Virtual Assistant\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/virtual-assistant-3.jpg\";s:12:\"tmpl_created\";i:1647337517;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/bottom-bar-contact-popup-virtual-assistant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:33:\"[\"Business\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:142;a:20:{s:4:\"tmpl\";i:1265;s:2:\"id\";i:22289;s:5:\"title\";s:32:\"Fly-In | Contact | Private Tutor\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/private-tutor-4.jpg\";s:12:\"tmpl_created\";i:1647337676;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/fly-in-contact-popup-private-tutor/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:27:\"[\"Contact\",\"Course Online\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:143;a:20:{s:4:\"tmpl\";i:1266;s:2:\"id\";i:22295;s:5:\"title\";s:31:\"Classic | Login | Login Travel\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/login-travel-6.jpg\";s:12:\"tmpl_created\";i:1647339467;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-login-popup-login-travel/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:9:\"[\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:144;a:20:{s:4:\"tmpl\";i:1267;s:2:\"id\";i:22301;s:5:\"title\";s:36:\"Full Screen | Login | Login Business\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/login-business-7.jpg\";s:12:\"tmpl_created\";i:1647339782;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:144:\"https://library.elementor.com/popups/full-screen-login-popup-login-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:16:\"[\"Login\",\"SaaS\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:145;a:20:{s:4:\"tmpl\";i:1268;s:2:\"id\";i:22307;s:5:\"title\";s:28:\"Classic | Login | Login Blog\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/03/login-blog-8.jpg\";s:12:\"tmpl_created\";i:1647339986;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/classic-login-popup-login-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:16:\"[\"Blog\",\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:146;a:20:{s:4:\"tmpl\";i:1269;s:2:\"id\";i:22313;s:5:\"title\";s:31:\"Classic | Login | Login Fashion\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/login-fashion-9.jpg\";s:12:\"tmpl_created\";i:1647340204;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/classic-login-popup-login-fashion/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"Fashion\",\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:147;a:20:{s:4:\"tmpl\";i:1270;s:2:\"id\";i:22319;s:5:\"title\";s:40:\"Classic | Login | Login Design Platform\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/03/login-design-platform-10.jpg\";s:12:\"tmpl_created\";i:1647340531;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:147:\"https://library.elementor.com/popups/classic-login-popup-login-design-platform/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"Design\",\"Login\",\"SaaS\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:148;a:20:{s:4:\"tmpl\";i:1271;s:2:\"id\";i:22325;s:5:\"title\";s:36:\"Fly-In | Contact | Digital Marketing\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/digital-marketing-11.jpg\";s:12:\"tmpl_created\";i:1647340770;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:144:\"https://library.elementor.com/popups/fly-in-contact-popup-digital-marketing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:51:\"[\"Business\",\"Contact\",\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:149;a:20:{s:4:\"tmpl\";i:1272;s:2:\"id\";i:22331;s:5:\"title\";s:36:\"Fly-In | CTA | Dog Cat Food Delivery\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/dog-cat-food-delivery-5.jpg\";s:12:\"tmpl_created\";i:1647341069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:144:\"https://library.elementor.com/popups/fly-in-cta-popup-dog-cat-food-delivery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:33:\"[\"cta\",\"Delivery Service\",\"Pets\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:150;a:20:{s:4:\"tmpl\";i:1273;s:2:\"id\";i:22337;s:5:\"title\";s:37:\"Full Screen | Contact | Design Studio\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/design-studio-12.jpg\";s:12:\"tmpl_created\";i:1647341370;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/popups/full-screen-contact-popup-design-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:39:\"[\"Business\",\"Contact\",\"Digital Agency\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:151;a:20:{s:4:\"tmpl\";i:1274;s:2:\"id\";i:22343;s:5:\"title\";s:44:\"Classic | Contact | Support Product Platform\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2022/03/support-13.jpg\";s:12:\"tmpl_created\";i:1647341972;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/popups/classic-contact-support-product-platform/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:21:\"[\"Contact\",\"Support\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:152;a:20:{s:4:\"tmpl\";i:1275;s:2:\"id\";i:22371;s:5:\"title\";s:38:\"Full Screen | Contact | Small Business\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/small-business-14.jpg\";s:12:\"tmpl_created\";i:1647342508;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/full-screen-contact-small-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:40:\"[\"Business\",\"Contact\",\"Interior Design\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:153;a:20:{s:4:\"tmpl\";i:1276;s:2:\"id\";i:22377;s:5:\"title\";s:31:\"Classic | Contact | Online Shop\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/online-shop-15.jpg\";s:12:\"tmpl_created\";i:1647352786;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-contact-online-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:154;a:20:{s:4:\"tmpl\";i:1277;s:2:\"id\";i:22383;s:5:\"title\";s:40:\"Classic | Booking | Children Optometrist\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/children-optometrist-16.jpg\";s:12:\"tmpl_created\";i:1647352963;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/classic-booking-children-optometrist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:53:\"[\"Booking\",\"Business\",\"Contact\",\"Education\",\"Health\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:155;a:20:{s:4:\"tmpl\";i:1278;s:2:\"id\";i:22389;s:5:\"title\";s:28:\"Fly-In | Contact | Open Week\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2022/03/open-week17.jpg\";s:12:\"tmpl_created\";i:1647353281;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/fly-in-contact-open-week/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:34:\"[\"Business\",\"Contact\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:156;a:20:{s:4:\"tmpl\";i:1279;s:2:\"id\";i:22397;s:5:\"title\";s:43:\"Full Screen | CTA | Plant Pots Online Store\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/03/plant-pots-online-store-18.jpg\";s:12:\"tmpl_created\";i:1647353429;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/popups/full-screen-cta-plant-pots-online-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:33:\"[\"Ecommerce\",\"Marketing\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:157;a:20:{s:4:\"tmpl\";i:1054;s:2:\"id\";i:15414;s:5:\"title\";s:32:\"Classic | Contact | Dance Studio\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/10/PopUp.jpg\";s:12:\"tmpl_created\";i:1603180596;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-contact-dance-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:762;s:11:\"trend_index\";i:650;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:158;a:20:{s:4:\"tmpl\";i:1398;s:2:\"id\";i:23687;s:5:\"title\";s:32:\"Pizza Promotion – Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/04/48-Pizza-Promotion.jpg\";s:12:\"tmpl_created\";i:1649670575;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/pizza-promotion-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:92:\"[\"Business\",\"Cooking\",\"Delivery\",\"Discount\",\"Fast Food\",\"Food\",\"Landing Pages\",\"Restaurant\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:159;a:20:{s:4:\"tmpl\";i:1400;s:2:\"id\";i:23751;s:5:\"title\";s:33:\"Baby Sleep Webinar – Events\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/04/63-Baby-Sleep-Webinar.jpg\";s:12:\"tmpl_created\";i:1649676065;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/baby-sleep-webinar-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:227:\"[\"Baby\",\"Booking\",\"Business\",\"Children\",\"Course Online\",\"Education\",\"Events\",\"Health\",\"Landing Pages\",\"Life Coach\",\"Lifestyle\",\"Online Event\",\"Online Service\",\"Parenting\",\"Professional\",\"Remote\",\"Services\",\"Training\",\"Webinar\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:160;a:20:{s:4:\"tmpl\";i:1401;s:2:\"id\";i:23776;s:5:\"title\";s:34:\"Ski Hotel Promotion – Travel\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/04/64-Ski-Hotel-Promotion.jpg\";s:12:\"tmpl_created\";i:1649691720;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/ski-hotel-promotion-travel/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"Travel\";s:4:\"tags\";s:118:\"[\"Accommodation\",\"Booking\",\"Discount. Landing Pages\",\"Lifestyle\",\"Luxury\",\"Services\",\"Spa\",\"Travel\",\"Trip\",\"Vacation\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:161;a:20:{s:4:\"tmpl\";i:1402;s:2:\"id\";i:23804;s:5:\"title\";s:30:\"Cake Delivery – Business\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/04/67-Cake-Delivery.jpg\";s:12:\"tmpl_created\";i:1649692909;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/cake-delivery-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:101:\"[\"Bakery\",\"Business\",\"Cake\",\"Cooking\",\"Delivery\",\"Discount\",\"Food\",\"Landing Pages\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:162;a:20:{s:4:\"tmpl\";i:1403;s:2:\"id\";i:23832;s:5:\"title\";s:32:\"Furniture Store – Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/04/87-Furniture-Store.jpg\";s:12:\"tmpl_created\";i:1649694812;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/furniture-store-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:232:\"[\"Architecture\",\"Art\",\"Business\",\"Construction\",\"Coupon\",\"Creative\",\"Decor\",\"Designer\",\"Discount\",\"Fashion\",\"Furniture Design\",\"Home\",\"House\",\"Interior Design\",\"Landing Pages\",\"Lifestyle\",\"Products\",\"Professional\",\"Services\",\"Shop\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:163;a:20:{s:4:\"tmpl\";i:1404;s:2:\"id\";i:23746;s:5:\"title\";s:22:\"Nails – Business\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2022/04/62-Nails-1.jpg\";s:12:\"tmpl_created\";i:1649704635;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/nails-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:173:\"[\"Art\",\"Beauty\",\"Business\",\"Colorful\",\"Cosmetics\",\"Creative\",\"Design\",\"Discount\",\"Fashion\",\"Girly\",\"Landing Pages\",\"Lifestyle\",\"Manicure\",\"Modern\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:164;a:20:{s:4:\"tmpl\";i:1405;s:2:\"id\";i:23846;s:5:\"title\";s:29:\"Music Festival – Events\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/04/88-Music-Festival.jpg\";s:12:\"tmpl_created\";i:1649707763;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/music-festival-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:128:\"[\"Author\",\"Booking\",\"Business\",\"Creative\",\"Discount\",\"Events\",\"Landing Pages\",\"Music\",\"Online\",\"Online Event\",\"Party\",\"Virtual\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:165;a:20:{s:4:\"tmpl\";i:1406;s:2:\"id\";i:23872;s:5:\"title\";s:40:\"Fashion Styling Course – Education\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/89-Fashion-Styling-Course.jpg\";s:12:\"tmpl_created\";i:1649708569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/fashion-styling-course-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:173:\"[\"Aesthetic\",\"Art\",\"Beauty\",\"Business\",\"Course Online\",\"Creative\",\"Discount\",\"Education\",\"Fashion\",\"Landing Pages\",\"Lifestyle\",\"Online\",\"Online Service\",\"Stylist\",\"Virtual\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:166;a:20:{s:4:\"tmpl\";i:1407;s:2:\"id\";i:23897;s:5:\"title\";s:33:\"Bags Online Shop – Business\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/04/90-Bags-Online-Shop.jpg\";s:12:\"tmpl_created\";i:1649709513;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/bags-online-shop-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:170:\"[\"Art\",\"Bag\",\"Business\",\"Creative\",\"Design\",\"Discount\",\"Fashion\",\"Landing Pages\",\"Lifestyle\",\"Luxury\",\"Modern\",\"Online\",\"Online Shop\",\"Products\",\"Sales\",\"Shop\",\"Stylist\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:167;a:20:{s:4:\"tmpl\";i:1408;s:2:\"id\";i:23932;s:5:\"title\";s:32:\"Cooking Academy – Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/04/91-Cooking-Academy.jpg\";s:12:\"tmpl_created\";i:1649710216;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/cooking-academy-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:145:\"[\"Academy\",\"Booking\",\"Business\",\"Chef\",\"Cooking\",\"Education\",\"Food\",\"Free Trial\",\"Landing Pages\",\"Professional\",\"School\",\"Teacher\",\"Testimonial\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:168;a:20:{s:4:\"tmpl\";i:1409;s:2:\"id\";i:23970;s:5:\"title\";s:45:\"Ophthalmology Medical Clinic – Business\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/04/92-Ophthalmology-Medical-Clinic.jpg\";s:12:\"tmpl_created\";i:1649711096;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/lp/ophthalmology-medical-clinic-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:165:\"[\"About\",\"Business\",\"Care\",\"Consulting\",\"Eye\",\"Free Trial\",\"Glasses\",\"Health\",\"Landing Pages\",\"Lifestyle\",\"Medical\",\"Modern\",\"Optometrist\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:169;a:20:{s:4:\"tmpl\";i:1425;s:2:\"id\";i:24331;s:5:\"title\";s:24:\"Wireframe – Home 1\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Home-1.jpg\";s:12:\"tmpl_created\";i:1653988363;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/wireframe-home-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:102:\"[\"Business\",\"Contact\",\"Features\",\"Footer\",\"Header\",\"Homepage\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:170;a:20:{s:4:\"tmpl\";i:1218;s:2:\"id\";i:20792;s:5:\"title\";s:26:\"Luxury Car – Product\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/11/250x280-1.jpg\";s:12:\"tmpl_created\";i:1636903770;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/lp/luxury-car-product/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:54:\"[\"car\",\"Ecommerce\",\"Landing Pages\",\"Luxury\",\"Product\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:171;a:20:{s:4:\"tmpl\";i:1428;s:2:\"id\";i:24398;s:5:\"title\";s:25:\"Wireframe – About 1\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-About-1.jpg\";s:12:\"tmpl_created\";i:1653988534;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/wireframe-about-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:83:\"[\"About\",\"Business\",\"Contact\",\"Features\",\"Footer\",\"Professional\",\"Services\",\"Team\"]\";s:10:\"menu_order\";i:2;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:172;a:20:{s:4:\"tmpl\";i:991;s:2:\"id\";i:13413;s:5:\"title\";s:33:\"Classic | Contact | Online Course\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/PopUp-Help.jpg\";s:12:\"tmpl_created\";i:1587474761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/classic-contact-online-course/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:2;s:16:\"popularity_index\";i:530;s:11:\"trend_index\";i:369;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:173;a:20:{s:4:\"tmpl\";i:1053;s:2:\"id\";i:15272;s:5:\"title\";s:32:\"Classic | Contact | Psychologist\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/09/PopUp.png\";s:12:\"tmpl_created\";i:1600170487;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-contact-psychologist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:578;s:11:\"trend_index\";i:312;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:174;a:20:{s:4:\"tmpl\";i:899;s:2:\"id\";i:11839;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Header_small.png\";s:12:\"tmpl_created\";i:1569430015;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"creative portfolio\",\"header\",\"portfolio\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:189;s:11:\"trend_index\";i:20;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:175;a:20:{s:4:\"tmpl\";i:1433;s:2:\"id\";i:24477;s:5:\"title\";s:27:\"Wireframe – Gallery 2\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Gallery-2.jpg\";s:12:\"tmpl_created\";i:1653988835;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-gallery-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:82:\"[\"Business\",\"Contact\",\"Design\",\"Footer\",\"Gallery\",\"Header\",\"Portfolio\",\"Services\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:176;a:20:{s:4:\"tmpl\";i:1205;s:2:\"id\";i:20233;s:5:\"title\";s:32:\"Art Magazine – Coming Soon\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/10/Art-Magazine-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633881371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/art-magazine-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:48:\"[\"Art\",\"Coming Soon\",\"Landing Pages\",\"Magazine\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:177;a:20:{s:4:\"tmpl\";i:1214;s:2:\"id\";i:20539;s:5:\"title\";s:31:\"Design Blog – Coming Soon\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2021/10/Design-Blog-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1634022706;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/design-blog-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:47:\"[\"Blog\",\"Coming Soon\",\"Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:178;a:20:{s:4:\"tmpl\";i:1224;s:2:\"id\";i:21013;s:5:\"title\";s:24:\"Restaurant – About\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2021/12/7-About-Restaurant.jpg\";s:12:\"tmpl_created\";i:1638795588;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/restaurant-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:36:\"[\"About\",\"Chef\",\"Food\",\"Restaurant\"]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:179;a:20:{s:4:\"tmpl\";i:992;s:2:\"id\";i:13402;s:5:\"title\";s:29:\"Classic | CTA | Online Course\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/04/Popup-Course-Completed.jpg\";s:12:\"tmpl_created\";i:1587474772;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/classic-cta-online-course/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:619;s:11:\"trend_index\";i:582;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:180;a:20:{s:4:\"tmpl\";i:1206;s:2:\"id\";i:20254;s:5:\"title\";s:41:\"Digital Marketing Agency – Business\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/10/Digital-Marketing-Agency-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633882427;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/lp/digital-marketing-agency-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:65:\"[\"Agency\",\"Business\",\"Digital Agency\",\"Landing Pages\",\"Services\"]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:181;a:20:{s:4:\"tmpl\";i:1235;s:2:\"id\";i:21281;s:5:\"title\";s:25:\"Law Firm – Services\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/12/16-Services-Law-firm.jpg\";s:12:\"tmpl_created\";i:1638819128;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/law-firm-services-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Consulting\",\"Law\",\"Law Firm\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:182;a:20:{s:4:\"tmpl\";i:1017;s:2:\"id\";i:14111;s:5:\"title\";s:36:\"Classic | Japanese restaurant | Sale\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2020/06/Pop-Up-Page-Small.jpg\";s:12:\"tmpl_created\";i:1592300400;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-japanese-restaurant-sale/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:717;s:11:\"trend_index\";i:697;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:183;a:20:{s:4:\"tmpl\";i:1213;s:2:\"id\";i:20509;s:5:\"title\";s:40:\"Dogs Adoption – Social Involvement\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/10/Dog-Adoption-250x280-1.jpg\";s:12:\"tmpl_created\";i:1634022353;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/dogs-adoption-social-involvement/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Social Involvement\";s:4:\"tags\";s:49:\"[\"Adoption\",\"Involvement\",\"Landing Pages\",\"Pets\"]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:184;a:20:{s:4:\"tmpl\";i:1233;s:2:\"id\";i:21205;s:5:\"title\";s:29:\"Photographer – Projects\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/12/25-Projects-Photographer.jpg\";s:12:\"tmpl_created\";i:1638818372;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/photographer-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:43:\"[\"Black and white\",\"Photography\",\"Project\"]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:185;a:20:{s:4:\"tmpl\";i:993;s:2:\"id\";i:13422;s:5:\"title\";s:30:\"Classic | Menu | Online Course\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/PopUp-Menu.jpg\";s:12:\"tmpl_created\";i:1587474782;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-menu-online-course/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:516;s:11:\"trend_index\";i:432;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:186;a:20:{s:4:\"tmpl\";i:925;s:2:\"id\";i:12540;s:5:\"title\";s:33:\"Classic | Menu | Travel and tours\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/12/PopUp_Menu_s.png\";s:12:\"tmpl_created\";i:1575960267;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/classic-menu-travel-and-tours/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:690;s:11:\"trend_index\";i:714;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:187;a:20:{s:4:\"tmpl\";i:1208;s:2:\"id\";i:20361;s:5:\"title\";s:51:\"Exercise & Fitness Equipment – eCommerce\";s:9:\"thumbnail\";s:97:\"https://library.elementor.com/wp-content/uploads/2021/10/Exercise-Fitness-Equipment-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633883766;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/lp/exercise-fitness-equipment-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:50:\"[\"Fitness\",\"Health\",\"Landing Pages\",\"Online Shop\"]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:188;a:20:{s:4:\"tmpl\";i:1239;s:2:\"id\";i:21373;s:5:\"title\";s:28:\"Photographer – Gallery\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/18-Gallery-Photographer.jpg\";s:12:\"tmpl_created\";i:1638821177;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/photographer-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Gallery\",\"Photography\",\"Portfolio\",\"Project\",\"Travel\"]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:189;a:20:{s:4:\"tmpl\";i:1426;s:2:\"id\";i:24348;s:5:\"title\";s:24:\"Wireframe – Home 2\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Home-2.jpg\";s:12:\"tmpl_created\";i:1653988444;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/wireframe-home-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:102:\"[\"Business\",\"Contact\",\"Features\",\"Footer\",\"Header\",\"Homepage\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:8;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:190;a:20:{s:4:\"tmpl\";i:958;s:2:\"id\";i:13129;s:5:\"title\";s:28:\"Classic | Menu | Photography\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/PopUp_s.png\";s:12:\"tmpl_created\";i:1582092645;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-menu-photography/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:8;s:16:\"popularity_index\";i:646;s:11:\"trend_index\";i:521;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:191;a:20:{s:4:\"tmpl\";i:1427;s:2:\"id\";i:24366;s:5:\"title\";s:24:\"Wireframe – Home 3\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Home-3.jpg\";s:12:\"tmpl_created\";i:1653988491;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/wireframe-home-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:102:\"[\"Business\",\"Contact\",\"Features\",\"Footer\",\"Header\",\"Homepage\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:192;a:20:{s:4:\"tmpl\";i:1207;s:2:\"id\";i:20299;s:5:\"title\";s:51:\"Interior Design Consultation – Online Service\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2021/10/Interior-Design-Consultation-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633882989;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/lp/interior-design-consultation-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:65:\"[\"Consulting\",\"Interior Design\",\"Landing Pages\",\"Online Service\"]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:193;a:20:{s:4:\"tmpl\";i:952;s:2:\"id\";i:12726;s:5:\"title\";s:52:\"Classic | Newsletter | Subscribe | Magazine and Blog\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/01/PopUp_Newsletter_s.png\";s:12:\"tmpl_created\";i:1579061019;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:152:\"https://library.elementor.com/popups/classic-newsletter-subscribe-magazine-and-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:357;s:11:\"trend_index\";i:281;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:194;a:20:{s:4:\"tmpl\";i:883;s:2:\"id\";i:11468;s:5:\"title\";s:20:\"Classic | Sale | Gym\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/08/PopUp_Small.png\";s:12:\"tmpl_created\";i:1567393182;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/classic-sale-gym/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:696;s:11:\"trend_index\";i:740;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:195;a:20:{s:4:\"tmpl\";i:1216;s:2:\"id\";i:20623;s:5:\"title\";s:57:\"Luxurious Camping Accommodation For Events – Events\";s:9:\"thumbnail\";s:113:\"https://library.elementor.com/wp-content/uploads/2021/10/Luxurious-Camping-Accommodation-For-Events-250x280-2.jpg\";s:12:\"tmpl_created\";i:1634041681;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:151:\"https://library.elementor.com/lp/luxurious-camping-accommodation-for-events-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:43:\"[\"Event\",\"Events\",\"Landing Pages\",\"Travel\"]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:196;a:20:{s:4:\"tmpl\";i:1219;s:2:\"id\";i:20886;s:5:\"title\";s:28:\"Online Training – Home\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/12/2-Home-Online-Training.jpg\";s:12:\"tmpl_created\";i:1638784769;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/online-training-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Fitness\",\"Online\",\"Sport\",\"Training\"]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:197;a:20:{s:4:\"tmpl\";i:1065;s:2:\"id\";i:15570;s:5:\"title\";s:33:\"Classic | Subscribe | Travel Blog\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/11/PopUp.jpg\";s:12:\"tmpl_created\";i:1606215555;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/classic-subscribe-travel-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:709;s:11:\"trend_index\";i:459;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:198;a:20:{s:4:\"tmpl\";i:1431;s:2:\"id\";i:24437;s:5:\"title\";s:25:\"Wireframe – About 4\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-About-4.jpg\";s:12:\"tmpl_created\";i:1653988733;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/wireframe-about-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:74:\"[\"About\",\"Business\",\"Contact\",\"Features\",\"Footer\",\"Header\",\"Professional\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:199;a:20:{s:4:\"tmpl\";i:1210;s:2:\"id\";i:20414;s:5:\"title\";s:45:\"Online English Courses – Online Service\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2021/10/Online-English-Courses-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633884482;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/lp/online-english-courses-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:50:\"[\"Course Online\",\"Landing Pages\",\"Online Service\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:200;a:20:{s:4:\"tmpl\";i:1132;s:2:\"id\";i:16553;s:5:\"title\";s:31:\"Fly-In | Contact | Beauty Salon\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/12/PopUp.jpg\";s:12:\"tmpl_created\";i:1608622602;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-contact-beauty-salon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:691;s:11:\"trend_index\";i:428;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:201;a:20:{s:4:\"tmpl\";i:1441;s:2:\"id\";i:24574;s:5:\"title\";s:27:\"Wireframe – Contact 5\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-5.jpg\";s:12:\"tmpl_created\";i:1653989135;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:88:\"[\"Business\",\"Contact\",\"Footer\",\"Form\",\"Google Maps\",\"Header\",\"Professional\",\"Subscribe\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:202;a:20:{s:4:\"tmpl\";i:1217;s:2:\"id\";i:20333;s:5:\"title\";s:40:\"Plant Pots Online Shop – eCommerce\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2021/10/Plant-Pots-Online-Shop-250x280-2.jpg\";s:12:\"tmpl_created\";i:1634042184;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/plant-pots-online-shop-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:50:\"[\"Ecommerce\",\"Landing Pages\",\"Online Shop\",\"Shop\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:203;a:20:{s:4:\"tmpl\";i:1211;s:2:\"id\";i:20447;s:5:\"title\";s:33:\"Shared Workspace – Business\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/10/250x280-Shared-Workspace.jpg\";s:12:\"tmpl_created\";i:1633884934;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/shared-workspace-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:28:\"[\"Business\",\"Landing Pages\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:204;a:20:{s:4:\"tmpl\";i:1237;s:2:\"id\";i:21313;s:5:\"title\";s:34:\"Spa & Beauty – Services\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/12/Spa-Beauty-Treatments-page-1.jpg\";s:12:\"tmpl_created\";i:1638819709;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/spa-beauty-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:55:\"[\"Beauty\",\"Hair\",\"Health\",\"Services\",\"Spa\",\"Treatment\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:205;a:20:{s:4:\"tmpl\";i:1004;s:2:\"id\";i:13538;s:5:\"title\";s:32:\"Fly-In | Newsletter | Barbershop\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2020/05/Pop-Up-Page-Small.jpg\";s:12:\"tmpl_created\";i:1589893364;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-newsletter-barbershop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:710;s:11:\"trend_index\";i:667;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:206;a:20:{s:4:\"tmpl\";i:924;s:2:\"id\";i:12550;s:5:\"title\";s:32:\"Fly-in | Sale | Travel and Tours\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/PopUp_s.png\";s:12:\"tmpl_created\";i:1575960263;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/flyin-sale-travel-and-tours/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:754;s:11:\"trend_index\";i:791;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:207;a:20:{s:4:\"tmpl\";i:1212;s:2:\"id\";i:20479;s:5:\"title\";s:49:\"Teeth Straightening – Health & Fitness\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/10/250x280-Teeth-Whitening.jpg\";s:12:\"tmpl_created\";i:1633886115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/teeth-straightening-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:46:\"[\"Business\",\"Dental\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:208;a:20:{s:4:\"tmpl\";i:1234;s:2:\"id\";i:21234;s:5:\"title\";s:34:\"Insurance Company – Services\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2021/12/15-Services-Insurance-Company.jpg\";s:12:\"tmpl_created\";i:1638818688;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/insurance-company-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:51:\"[\"Faq\",\"Form\",\"Insurance\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:209;a:20:{s:4:\"tmpl\";i:1035;s:2:\"id\";i:15062;s:5:\"title\";s:35:\"Fly-In | Sign up | Flooring Company\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/08/PopUp.png\";s:12:\"tmpl_created\";i:1597739629;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/fly-in-sign-up-flooring-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:625;s:11:\"trend_index\";i:309;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:210;a:20:{s:4:\"tmpl\";i:1209;s:2:\"id\";i:20394;s:5:\"title\";s:30:\"Time Management – Events\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/10/Time-Management-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633884077;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/time-management-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:17:\"[\"Landing Pages\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:211;a:20:{s:4:\"tmpl\";i:1229;s:2:\"id\";i:21118;s:5:\"title\";s:28:\"Contact – Plants Store\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/12-Contact-Plants-Store.jpg\";s:12:\"tmpl_created\";i:1638802472;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/contact-plants-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:40:\"[\"Contact\",\"Info\",\"Plant\",\"Testimonial\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:212;a:20:{s:4:\"tmpl\";i:893;s:2:\"id\";i:11822;s:5:\"title\";s:30:\"Full Screen | Menu | Portfolio\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/09/PopUp_small.png\";s:12:\"tmpl_created\";i:1569429896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/full-screen-menu-portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:654;s:11:\"trend_index\";i:626;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:213;a:20:{s:4:\"tmpl\";i:1203;s:2:\"id\";i:18591;s:5:\"title\";s:28:\"Coffee Sale – Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/04/250x280-7.png\";s:12:\"tmpl_created\";i:1633877319;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/coffee-sale-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:33:\"[\"Coffee\",\"Landing Pages\",\"Sale\"]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:214;a:20:{s:4:\"tmpl\";i:1231;s:2:\"id\";i:21184;s:5:\"title\";s:28:\"Dental Care – Services\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/14-Services-Dental-Care.jpg\";s:12:\"tmpl_created\";i:1638807148;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/dental-care-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:45:\"[\"Dental\",\"Medical\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:215;a:20:{s:4:\"tmpl\";i:1064;s:2:\"id\";i:15580;s:5:\"title\";s:31:\"Fullscreen | Menu | Travel Blog\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/11/PopUp-Menu.jpg\";s:12:\"tmpl_created\";i:1606215358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fullscreen-menu-travel-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:673;s:11:\"trend_index\";i:348;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:216;a:20:{s:4:\"tmpl\";i:1133;s:2:\"id\";i:16645;s:5:\"title\";s:28:\"Headphones – eCommerce\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/lp_headphones.png\";s:12:\"tmpl_created\";i:1609944115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/commerce-headphones/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:39:\"[\"Ecommerce\",\"Landing Pages\",\"Product\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:633;s:11:\"trend_index\";i:87;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:217;a:20:{s:4:\"tmpl\";i:1442;s:2:\"id\";i:24584;s:5:\"title\";s:27:\"Wireframe – Pricing 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Pricing-1.jpg\";s:12:\"tmpl_created\";i:1653989152;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-pricing-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:146:\"[\"Booking\",\"Business\",\"Clients\",\"Contact\",\"Faq\",\"Features\",\"Footer\",\"Online Service\",\"Pricing\",\"Products\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:218;a:20:{s:4:\"tmpl\";i:1138;s:2:\"id\";i:16762;s:5:\"title\";s:25:\"Conference – Events\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Conference.png\";s:12:\"tmpl_created\";i:1610455119;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/conference-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:60:\"[\"Conference\",\"Convention\",\"Event\",\"Events\",\"Landing Pages\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:705;s:11:\"trend_index\";i:216;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:219;a:20:{s:4:\"tmpl\";i:1438;s:2:\"id\";i:24539;s:5:\"title\";s:27:\"Wireframe – Contact 2\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-2.jpg\";s:12:\"tmpl_created\";i:1653989019;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:69:\"[\"Business\",\"Contact\",\"Footer\",\"Google Maps\",\"Header\",\"Professional\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:220;a:20:{s:4:\"tmpl\";i:981;s:2:\"id\";i:13281;s:5:\"title\";s:37:\"Hello Bar | Contact | Interior Design\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/PopUp.png\";s:12:\"tmpl_created\";i:1586148801;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/hello-bar-contact-interior-design/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:19:\"[\"Interior Design\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:763;s:11:\"trend_index\";i:679;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:221;a:20:{s:4:\"tmpl\";i:1052;s:2:\"id\";i:15259;s:5:\"title\";s:31:\"Hello Bar | Menu | Psychologist\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/09/Menu-PopUp.png\";s:12:\"tmpl_created\";i:1600170209;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/hello-bar-menu-psychologist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:739;s:11:\"trend_index\";i:583;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:222;a:20:{s:4:\"tmpl\";i:1434;s:2:\"id\";i:24494;s:5:\"title\";s:28:\"Wireframe – Services 1\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-1.jpg\";s:12:\"tmpl_created\";i:1653988874;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/wireframe-services-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:53:\"[\"Business\",\"Faq\",\"Footer\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:223;a:20:{s:4:\"tmpl\";i:1194;s:2:\"id\";i:18701;s:5:\"title\";s:32:\"Digital Course – eCommerce\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/04/250x280.jpg\";s:12:\"tmpl_created\";i:1618995134;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/digital-course-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:57:\"[\"Course Online\",\"Ecommerce\",\"Landing Pages\",\"Marketing\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:224;a:20:{s:4:\"tmpl\";i:1192;s:2:\"id\";i:18612;s:5:\"title\";s:34:\"Bag Product Sale – eCommerce\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Bag-Product.jpeg\";s:12:\"tmpl_created\";i:1618395406;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/bag-product-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:61:\"[\"Bag\",\"Ecommerce\",\"Landing Pages\",\"Product\",\"Sale\",\"Travel\"]\";s:10:\"menu_order\";i:20;s:16:\"popularity_index\";i:875;s:11:\"trend_index\";i:605;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:225;a:20:{s:4:\"tmpl\";i:1227;s:2:\"id\";i:21083;s:5:\"title\";s:26:\"Conference – Contact\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/12/10-Contact-Conference.jpg\";s:12:\"tmpl_created\";i:1638799208;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/conference-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:44:\"[\"Conference\",\"Contact\",\"Form\",\"Info\",\"Map\"]\";s:10:\"menu_order\";i:20;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:226;a:20:{s:4:\"tmpl\";i:1193;s:2:\"id\";i:18644;s:5:\"title\";s:37:\"Camera Product Sale – eCommerce\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/camera_sale_featured-img.jpg\";s:12:\"tmpl_created\";i:1618396388;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/lp/camera-product-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:59:\"[\"Camera\",\"Ecommerce\",\"Landing Pages\",\"Photography\",\"Sale\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:873;s:11:\"trend_index\";i:535;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:227;a:20:{s:4:\"tmpl\";i:951;s:2:\"id\";i:12736;s:5:\"title\";s:41:\"Slide In | Contact Us | Magazine and Blog\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/01/PopUp_contact_s.png\";s:12:\"tmpl_created\";i:1579060978;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/slide-in-contact-us/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:734;s:11:\"trend_index\";i:686;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:228;a:20:{s:4:\"tmpl\";i:1222;s:2:\"id\";i:20960;s:5:\"title\";s:26:\"Travel Agency – Home\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/12/5-Home-Travel-Agency.jpg\";s:12:\"tmpl_created\";i:1638788432;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/travel-agency-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:53:\"[\"Adventures\",\"Experience\",\"Explore\",\"Travel\",\"Trip\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:229;a:20:{s:4:\"tmpl\";i:1196;s:2:\"id\";i:18815;s:5:\"title\";s:25:\"Car Wash – Business\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Car-Wash.png\";s:12:\"tmpl_created\";i:1621336431;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/car-wash-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:45:\"[\"Business\",\"car\",\"Discount\",\"Landing Pages\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:230;a:20:{s:4:\"tmpl\";i:1242;s:2:\"id\";i:21473;s:5:\"title\";s:40:\"Architecture Photography – Gallery\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2021/12/20-Gallery-Architecture-Photography.jpg\";s:12:\"tmpl_created\";i:1638822115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/architecture-photography-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:52:\"[\"Architecture\",\"Gallery\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:231;a:20:{s:4:\"tmpl\";i:1015;s:2:\"id\";i:14067;s:5:\"title\";s:37:\"Slide In | Japanese restaurant | Menu\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2020/06/Menu-Pop-Up-Small.jpg\";s:12:\"tmpl_created\";i:1592290352;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/slide-in-japanese-restaurant-menu/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:650;s:11:\"trend_index\";i:565;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:232;a:20:{s:4:\"tmpl\";i:923;s:2:\"id\";i:12229;s:5:\"title\";s:33:\"Slide In | Law Firm | Information\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/11/popup.png\";s:12:\"tmpl_created\";i:1572847842;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/slide-in-law-firm-information/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:547;s:11:\"trend_index\";i:413;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:233;a:20:{s:4:\"tmpl\";i:1198;s:2:\"id\";i:18824;s:5:\"title\";s:33:\"Design School – Coming Soon\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/05/250x280-1.png\";s:12:\"tmpl_created\";i:1621336756;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/design-school-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:49:\"[\"Coming Soon\",\"Design\",\"Landing Pages\",\"School\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:234;a:20:{s:4:\"tmpl\";i:1236;s:2:\"id\";i:21259;s:5:\"title\";s:28:\"3D Designer – Projects\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/24-Projects-3D-Designer.jpg\";s:12:\"tmpl_created\";i:1638819185;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/3d-designer-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:69:\"[\"3D\",\"Creative Portfolio\",\"Design\",\"Designer\",\"Portfolio\",\"Project\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:235;a:20:{s:4:\"tmpl\";i:1028;s:2:\"id\";i:14827;s:5:\"title\";s:39:\"Slide-In | Contact | Luxury Real Estate\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/07/PopUp.png\";s:12:\"tmpl_created\";i:1595323523;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/slide-in-contact-luxury-real-estate/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:559;s:11:\"trend_index\";i:284;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:236;a:20:{s:4:\"tmpl\";i:1197;s:2:\"id\";i:18819;s:5:\"title\";s:27:\"Dog Walker – Business\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Dog-Walker.png\";s:12:\"tmpl_created\";i:1621336601;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/dog-walker-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:41:\"[\"Business\",\"Dog\",\"Landing Pages\",\"Pets\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:237;a:20:{s:4:\"tmpl\";i:1238;s:2:\"id\";i:21349;s:5:\"title\";s:29:\"Architecture – Projects\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/12/23-Projects-Architecture.jpg\";s:12:\"tmpl_created\";i:1638820870;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/architecture-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:70:\"[\"Architecture\",\"Creative\",\"Creative Portfolio\",\"Portfolio\",\"Project\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:238;a:20:{s:4:\"tmpl\";i:1034;s:2:\"id\";i:15075;s:5:\"title\";s:34:\"Slide-In | Menu | Flooring Company\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/08/PopUp-1.png\";s:12:\"tmpl_created\";i:1597739605;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/slide-in-menu-flooring-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:383;s:11:\"trend_index\";i:162;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:239;a:20:{s:4:\"tmpl\";i:1414;s:2:\"id\";i:24079;s:5:\"title\";s:32:\"Fashion Shop – Coming Soon\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Fashion-Shop.jpg\";s:12:\"tmpl_created\";i:1650988089;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/fashion-shop-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:88:\"[\"Aesthetic\",\"Business\",\"Coming Soon\",\"Ecommerce\",\"Girly\",\"Lifestyle\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:240;a:20:{s:4:\"tmpl\";i:1195;s:2:\"id\";i:18761;s:5:\"title\";s:33:\"Fashion Store – Coming Soon\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Fashion-Store.png\";s:12:\"tmpl_created\";i:1621336146;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/fashion-store-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:56:\"[\"Coming Soon\",\"Fashion\",\"Landing Pages\",\"Shop\",\"store\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:241;a:20:{s:4:\"tmpl\";i:1153;s:2:\"id\";i:17060;s:5:\"title\";s:36:\"Private Tutor – Online Service\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Tutor-2.png\";s:12:\"tmpl_created\";i:1610631042;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/private-tutor-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:64:\"[\"Education\",\"Landing Pages\",\"Online Service\",\"Teacher\",\"Tutor\"]\";s:10:\"menu_order\";i:26;s:16:\"popularity_index\";i:780;s:11:\"trend_index\";i:628;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:242;a:20:{s:4:\"tmpl\";i:1430;s:2:\"id\";i:24434;s:5:\"title\";s:25:\"Wireframe – About 3\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-About-3.jpg\";s:12:\"tmpl_created\";i:1653988697;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/wireframe-about-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:76:\"[\"About\",\"Business\",\"Contact\",\"Faq\",\"Footer\",\"Header\",\"Professional\",\"Team\"]\";s:10:\"menu_order\";i:26;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:243;a:20:{s:4:\"tmpl\";i:1158;s:2:\"id\";i:17232;s:5:\"title\";s:33:\"Life Coach – Online Service\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Life-Coach.png\";s:12:\"tmpl_created\";i:1610902793;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/life-coach-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:38:\"[\"Coach\",\"Landing Pages\",\"Life Coach\"]\";s:10:\"menu_order\";i:27;s:16:\"popularity_index\";i:787;s:11:\"trend_index\";i:751;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:244;a:20:{s:4:\"tmpl\";i:1436;s:2:\"id\";i:24515;s:5:\"title\";s:28:\"Wireframe – Services 3\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-3.jpg\";s:12:\"tmpl_created\";i:1653988946;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/wireframe-services-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:66:\"[\"Business\",\"Contact\",\"Footer\",\"Header\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:27;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:245;a:20:{s:4:\"tmpl\";i:875;s:2:\"id\";i:11241;s:5:\"title\";s:36:\"Classic | Digital Agency | Marketing\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/PopUp_small.jpg\";s:12:\"tmpl_created\";i:1564643043;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-digital-agency-marketing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:362;s:11:\"trend_index\";i:315;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:246;a:20:{s:4:\"tmpl\";i:1146;s:2:\"id\";i:16932;s:5:\"title\";s:35:\"Finance Consulting – Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2021/01/Finance-Consulting.png\";s:12:\"tmpl_created\";i:1610532170;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/lp/finance-consulting-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:80:\"[\"Advisor\",\"Business\",\"Consulting\",\"Finance\",\"Investment\",\"Landing Pages\",\"Tax\"]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:790;s:11:\"trend_index\";i:630;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:247;a:20:{s:4:\"tmpl\";i:1429;s:2:\"id\";i:24421;s:5:\"title\";s:25:\"Wireframe – About 2\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-About-2.jpg\";s:12:\"tmpl_created\";i:1653988579;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/wireframe-about-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:87:\"[\"About\",\"Business\",\"Contact\",\"Faq\",\"Features\",\"Footer\",\"Header\",\"Professional\",\"Team\"]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:248;a:20:{s:4:\"tmpl\";i:674;s:2:\"id\";i:8505;s:5:\"title\";s:11:\"404 page 01\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/001.jpg\";s:12:\"tmpl_created\";i:1526415501;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-01/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:533;s:11:\"trend_index\";i:222;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:249;a:20:{s:4:\"tmpl\";i:1136;s:2:\"id\";i:16721;s:5:\"title\";s:35:\"Dental – Health & Fitness\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2021/01/Dental.jpg\";s:12:\"tmpl_created\";i:1610448567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/dental-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:44:\"[\"Dental\",\"Doctor\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:29;s:16:\"popularity_index\";i:801;s:11:\"trend_index\";i:655;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:250;a:20:{s:4:\"tmpl\";i:1417;s:2:\"id\";i:24116;s:5:\"title\";s:32:\"Tech Company – Coming Soon\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Tech-Company.jpg\";s:12:\"tmpl_created\";i:1650989265;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/tech-company-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:87:\"[\"Business\",\"Coding\",\"Coming Soon\",\"Computer\",\"Developer\",\"IT\",\"Services\",\"Technology\"]\";s:10:\"menu_order\";i:29;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:251;a:20:{s:4:\"tmpl\";i:675;s:2:\"id\";i:8511;s:5:\"title\";s:11:\"404 page 02\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/002.jpg\";s:12:\"tmpl_created\";i:1526415528;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-02/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:29;s:16:\"popularity_index\";i:347;s:11:\"trend_index\";i:155;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:252;a:20:{s:4:\"tmpl\";i:1161;s:2:\"id\";i:17269;s:5:\"title\";s:34:\"Electronics Sale – eCommerce\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Electronic-Products.png\";s:12:\"tmpl_created\";i:1610903298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/electronics-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:29:\"[\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:30;s:16:\"popularity_index\";i:800;s:11:\"trend_index\";i:556;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:253;a:20:{s:4:\"tmpl\";i:1220;s:2:\"id\";i:20908;s:5:\"title\";s:42:\"Packing & Moving Company – Home\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2021/12/3-Home-Packing-Moving-Company.jpg\";s:12:\"tmpl_created\";i:1638786127;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/packing-moving-company-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Movers\",\"Moving\",\"Storge\"]\";s:10:\"menu_order\";i:30;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:254;a:20:{s:4:\"tmpl\";i:1152;s:2:\"id\";i:17032;s:5:\"title\";s:42:\"Donate Computer – Social Involvement\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Donation-2.png\";s:12:\"tmpl_created\";i:1610630585;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/donate-computer-social-involvement/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:18:\"Social Involvement\";s:4:\"tags\";s:67:\"[\"Computer\",\"Donate\",\"Donation\",\"Kids\",\"Landing Pages\",\"Nonprofit\"]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:718;s:11:\"trend_index\";i:278;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:255;a:20:{s:4:\"tmpl\";i:672;s:2:\"id\";i:8512;s:5:\"title\";s:11:\"404 page 03\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/003.jpg\";s:12:\"tmpl_created\";i:1526415449;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-03/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:450;s:11:\"trend_index\";i:375;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:256;a:20:{s:4:\"tmpl\";i:1245;s:2:\"id\";i:21546;s:5:\"title\";s:28:\"Interior Design – Home\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/12/1-Home-Interior-Design-1.jpg\";s:12:\"tmpl_created\";i:1639046269;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/interior-design-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:68:\"[\"Design\",\"Form\",\"Furniture Design\",\"Interior Design\",\"Testimonial\"]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:257;a:20:{s:4:\"tmpl\";i:1135;s:2:\"id\";i:16684;s:5:\"title\";s:34:\"SaaS HR Management – Product\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2021/01/lp_hr.png\";s:12:\"tmpl_created\";i:1609945486;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/saas-hr-management-product/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:39:\"[\"HR\",\"Landing Pages\",\"Product\",\"SaaS\"]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:708;s:11:\"trend_index\";i:292;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:258;a:20:{s:4:\"tmpl\";i:671;s:2:\"id\";i:8513;s:5:\"title\";s:11:\"404 page 04\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/004.jpg\";s:12:\"tmpl_created\";i:1526415417;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-04/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:420;s:11:\"trend_index\";i:176;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:259;a:20:{s:4:\"tmpl\";i:1249;s:2:\"id\";i:22137;s:5:\"title\";s:31:\"Design Blog – Coming Soon\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2021/10/Design-Blog-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1647177194;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/design-blog-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:47:\"[\"Blog\",\"Coming Soon\",\"Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:260;a:20:{s:4:\"tmpl\";i:1134;s:2:\"id\";i:16660;s:5:\"title\";s:37:\"Medical center – Online service\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-medical-cosultation-250_280.png\";s:12:\"tmpl_created\";i:1609945122;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/lp/medical-center-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:44:\"[\"Landing Pages\",\"Medical\",\"Online Service\"]\";s:10:\"menu_order\";i:33;s:16:\"popularity_index\";i:750;s:11:\"trend_index\";i:332;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:261;a:20:{s:4:\"tmpl\";i:1226;s:2:\"id\";i:21069;s:5:\"title\";s:21:\"Hotel – Contact\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/12/9-Contact-Hotel.jpg\";s:12:\"tmpl_created\";i:1638798545;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/hotel-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:36:\"[\"Contact\",\"from\",\"Info\",\"Vacation\"]\";s:10:\"menu_order\";i:33;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:262;a:20:{s:4:\"tmpl\";i:1150;s:2:\"id\";i:17001;s:5:\"title\";s:36:\"Parental Counseling – Business\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2021/01/Parenting-Coach-2.png\";s:12:\"tmpl_created\";i:1610534999;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/parental-counseling-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:99:\"[\"Advisor\",\"Business\",\"Coach\",\"Counseling\",\"Landing Pages\",\"Online Service\",\"Parental\",\"Parenting\"]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:817;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:263;a:20:{s:4:\"tmpl\";i:1432;s:2:\"id\";i:24461;s:5:\"title\";s:27:\"Wireframe – Gallery 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Gallery-1.jpg\";s:12:\"tmpl_created\";i:1653988784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-gallery-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:82:\"[\"Business\",\"Contact\",\"Design\",\"Footer\",\"Gallery\",\"Header\",\"Portfolio\",\"Services\"]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:264;a:20:{s:4:\"tmpl\";i:676;s:2:\"id\";i:8514;s:5:\"title\";s:11:\"404 Page 05\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/005.jpg\";s:12:\"tmpl_created\";i:1526415558;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-05/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:419;s:11:\"trend_index\";i:220;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:265;a:20:{s:4:\"tmpl\";i:1137;s:2:\"id\";i:16742;s:5:\"title\";s:31:\"Online Course – Education\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Course.png\";s:12:\"tmpl_created\";i:1610454122;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/online-course-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:55:\"[\"Academy\",\"Course Online\",\"Education\",\"Landing Pages\"]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:777;s:11:\"trend_index\";i:776;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:266;a:20:{s:4:\"tmpl\";i:668;s:2:\"id\";i:8523;s:5:\"title\";s:11:\"404 page 06\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/006.jpg\";s:12:\"tmpl_created\";i:1526415291;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-06/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:298;s:11:\"trend_index\";i:268;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:267;a:20:{s:4:\"tmpl\";i:1440;s:2:\"id\";i:24563;s:5:\"title\";s:27:\"Wireframe – Contact 4\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-4.jpg\";s:12:\"tmpl_created\";i:1653989095;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:84:\"[\"Business\",\"Contact\",\"Footer\",\"Form\",\"Gallery\",\"Header\",\"Professional\",\"Subscribe\"]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:268;a:20:{s:4:\"tmpl\";i:1162;s:2:\"id\";i:17284;s:5:\"title\";s:38:\"Dietitian – Health & Fitness\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/01/Dietitian.png\";s:12:\"tmpl_created\";i:1610903484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/dietitian-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:39:\"[\"Fitness\",\"Health\",\"landscape design\"]\";s:10:\"menu_order\";i:36;s:16:\"popularity_index\";i:814;s:11:\"trend_index\";i:800;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:269;a:20:{s:4:\"tmpl\";i:1439;s:2:\"id\";i:24553;s:5:\"title\";s:27:\"Wireframe – Contact 3\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-3.jpg\";s:12:\"tmpl_created\";i:1653989057;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:67:\"[\"Business\",\"Contact\",\"Footer\",\"Form\",\"Professional\",\"Testimonial\"]\";s:10:\"menu_order\";i:36;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:270;a:20:{s:4:\"tmpl\";i:1144;s:2:\"id\";i:16897;s:5:\"title\";s:30:\"Personal Chef – Business\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/Personal-Chef.png\";s:12:\"tmpl_created\";i:1610466247;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/personal-chef-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:53:\"[\"Business\",\"Chef\",\"Food\",\"Landing Pages\",\"Services\"]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:795;s:11:\"trend_index\";i:617;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:271;a:20:{s:4:\"tmpl\";i:1435;s:2:\"id\";i:24504;s:5:\"title\";s:28:\"Wireframe – Services 2\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-2.jpg\";s:12:\"tmpl_created\";i:1653988910;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/wireframe-services-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:80:\"[\"Business\",\"Contact\",\"Footer\",\"Header\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:272;a:20:{s:4:\"tmpl\";i:669;s:2:\"id\";i:8524;s:5:\"title\";s:11:\"404 page 07\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/007.jpg\";s:12:\"tmpl_created\";i:1526415337;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-07/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:303;s:11:\"trend_index\";i:171;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:273;a:20:{s:4:\"tmpl\";i:1147;s:2:\"id\";i:16946;s:5:\"title\";s:52:\"Online Full-Stack Developer Course – Education\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Full-Stack-Developer-Course.png\";s:12:\"tmpl_created\";i:1610532778;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/lp/online-full-stack-developer-course-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:76:\"[\"Academy\",\"Coding\",\"Course Online\",\"Developer\",\"Education\",\"Landing Pages\"]\";s:10:\"menu_order\";i:38;s:16:\"popularity_index\";i:805;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:274;a:20:{s:4:\"tmpl\";i:1437;s:2:\"id\";i:24528;s:5:\"title\";s:27:\"Wireframe – Contact 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-1.jpg\";s:12:\"tmpl_created\";i:1653988981;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:76:\"[\"Business\",\"Contact\",\"Footer\",\"Form\",\"Google Maps\",\"Header\",\"Professional\"]\";s:10:\"menu_order\";i:38;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:275;a:20:{s:4:\"tmpl\";i:1143;s:2:\"id\";i:16868;s:5:\"title\";s:40:\"Virtual Assistant – Online Service\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2021/01/Virtual-Assistant-250x280-1.png\";s:12:\"tmpl_created\";i:1610465656;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/virtual-assistant-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:46:\"[\"Assistant\",\"Landing Pages\",\"Online Service\"]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:793;s:11:\"trend_index\";i:757;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:276;a:20:{s:4:\"tmpl\";i:673;s:2:\"id\";i:8526;s:5:\"title\";s:11:\"404 page 09\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/009.jpg\";s:12:\"tmpl_created\";i:1526415474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-09/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:477;s:11:\"trend_index\";i:285;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:277;a:20:{s:4:\"tmpl\";i:1228;s:2:\"id\";i:21104;s:5:\"title\";s:26:\"Restaurant – Contact\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/12/11-Contact-Restaurant.jpg\";s:12:\"tmpl_created\";i:1638800146;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/restaurant-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:60:\"[\"Contact\",\"Food\",\"Form\",\"Google Maps\",\"Info\",\"Testimonial\"]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:278;a:20:{s:4:\"tmpl\";i:1140;s:2:\"id\";i:16812;s:5:\"title\";s:40:\"Construction Project – Real Estate\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/01/Construction-Project.png\";s:12:\"tmpl_created\";i:1610463582;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/construction-project-real-estate/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:59:\"[\"Construction\",\"Landing Pages\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:40;s:16:\"popularity_index\";i:796;s:11:\"trend_index\";i:724;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:279;a:20:{s:4:\"tmpl\";i:1244;s:2:\"id\";i:21393;s:5:\"title\";s:34:\"Interior Designer – Projects\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2021/12/big-22-Projects-Interior-Designer-New.jpeg\";s:12:\"tmpl_created\";i:1638823945;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/interior-designer-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:93:\"[\"Creative\",\"Creative Portfolio\",\"Design\",\"Designer\",\"Interior Design\",\"Portfolio\",\"Project\"]\";s:10:\"menu_order\";i:40;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:280;a:20:{s:4:\"tmpl\";i:1148;s:2:\"id\";i:16960;s:5:\"title\";s:44:\"Dog & Cat Food Delivery – Business\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2021/01/Dog-Food.png\";s:12:\"tmpl_created\";i:1610533581;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/lp/dog-cat-food-delivery-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:71:\"[\"Business\",\"Cat\",\"Delivery\",\"Dog\",\"Food\",\"Landing Pages\",\"Pet\",\"Pets\"]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:782;s:11:\"trend_index\";i:510;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:281;a:20:{s:4:\"tmpl\";i:670;s:2:\"id\";i:8525;s:5:\"title\";s:11:\"404 page 08\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/008.jpg\";s:12:\"tmpl_created\";i:1526415374;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-08/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:510;s:11:\"trend_index\";i:575;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:282;a:20:{s:4:\"tmpl\";i:1251;s:2:\"id\";i:22143;s:5:\"title\";s:33:\"Fashion Store – Coming Soon\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Fashion-Store.png\";s:12:\"tmpl_created\";i:1647177389;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/fashion-store-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Coming Soon\",\"Fashion\",\"Landing Pages\",\"Shop\",\"store\"]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:283;a:20:{s:4:\"tmpl\";i:1155;s:2:\"id\";i:17095;s:5:\"title\";s:36:\"Mobile Pet Grooming – Business\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Mobile-Pet-Grooming.png\";s:12:\"tmpl_created\";i:1610632115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/mobile-pet-grooming-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:38:\"[\"Dog\",\"Groom\",\"Landing Pages\",\"Pets\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:786;s:11:\"trend_index\";i:731;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:284;a:20:{s:4:\"tmpl\";i:1241;s:2:\"id\";i:21451;s:5:\"title\";s:26:\"Exhibition – Gallery\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/12/21-Gallery-Exhibition.jpg\";s:12:\"tmpl_created\";i:1638821855;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/exhibition-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:74:\"[\"Art\",\"Creative\",\"Creative Portfolio\",\"Exhibition\",\"Gallery\",\"Portfolio\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:285;a:20:{s:4:\"tmpl\";i:502;s:2:\"id\";i:5438;s:5:\"title\";s:7:\"About 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_4.png\";s:12:\"tmpl_created\";i:1520443512;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:147;s:11:\"trend_index\";i:9;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:286;a:20:{s:4:\"tmpl\";i:1159;s:2:\"id\";i:17245;s:5:\"title\";s:34:\"Marketing Course – Education\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2021/01/PPC.png\";s:12:\"tmpl_created\";i:1610902958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/marketing-course-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:45:\"[\"Course Online\",\"Landing Pages\",\"Marketing\"]\";s:10:\"menu_order\";i:43;s:16:\"popularity_index\";i:770;s:11:\"trend_index\";i:430;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:287;a:20:{s:4:\"tmpl\";i:1240;s:2:\"id\";i:21430;s:5:\"title\";s:30:\"Travel Blogger – Gallery\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/12/19-Gallery-Travel-Blogger.jpg\";s:12:\"tmpl_created\";i:1638821592;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/travel-blogger-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:43:\"[\"Gallery\",\"Photography\",\"Slider\",\"Travel\"]\";s:10:\"menu_order\";i:43;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:288;a:20:{s:4:\"tmpl\";i:1149;s:2:\"id\";i:16983;s:5:\"title\";s:41:\"Pilates Instructor – Online Service\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2021/01/Pilates-Instructor.png\";s:12:\"tmpl_created\";i:1610534138;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/lp/pilates-instructor-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:70:\"[\"Free Trial\",\"Instructor\",\"Landing Pages\",\"Online Service\",\"Pilates\"]\";s:10:\"menu_order\";i:44;s:16:\"popularity_index\";i:778;s:11:\"trend_index\";i:412;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:289;a:20:{s:4:\"tmpl\";i:1416;s:2:\"id\";i:24104;s:5:\"title\";s:33:\"Ceramics Shop – Coming Soon\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Ceramics-Shop.jpg\";s:12:\"tmpl_created\";i:1650988949;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/ceramics-shop-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:115:\"[\"Art\",\"Business\",\"Coming Soon\",\"Creative\",\"Decor\",\"Design\",\"Furniture Design\",\"Interior Design\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:44;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:290;a:20:{s:4:\"tmpl\";i:557;s:2:\"id\";i:6135;s:5:\"title\";s:8:\"About 10\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_2.png\";s:12:\"tmpl_created\";i:1520443663;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:77;s:11:\"trend_index\";i:47;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:291;a:20:{s:4:\"tmpl\";i:1412;s:2:\"id\";i:24033;s:5:\"title\";s:37:\"Dance Studio – Maintenance Mode\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-Dance-Studio.jpg\";s:12:\"tmpl_created\";i:1649881344;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/dance-studio-maintenance-mode/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:113:\"[\"Academy\",\"Business\",\"Dance Studio\",\"Form\",\"Pilates\",\"School\",\"Sport\",\"Teacher\",\"Training\",\"Under Construction\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:292;a:20:{s:4:\"tmpl\";i:1190;s:2:\"id\";i:18568;s:5:\"title\";s:32:\"Flower Delivery – Business\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/04/Flower-Delivery.png\";s:12:\"tmpl_created\";i:1617546716;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/flower-delivery-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:37:\"[\"Delivery\",\"Flower\",\"Landing Pages\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:874;s:11:\"trend_index\";i:763;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:293;a:20:{s:4:\"tmpl\";i:1145;s:2:\"id\";i:16917;s:5:\"title\";s:22:\"Webinar – Events\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Webinar-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610466822;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/webinar-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:36:\"[\"Events\",\"Landing Pages\",\"Webinar\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:821;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:294;a:20:{s:4:\"tmpl\";i:1413;s:2:\"id\";i:24049;s:5:\"title\";s:33:\"ECO Shop – Maintenance Mode\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-ECO-Shop.jpg\";s:12:\"tmpl_created\";i:1649882053;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/eco-shop-maintenance-mode/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:110:\"[\"Aesthetic\",\"Business\",\"Creative\",\"Decor\",\"Health\",\"Help\",\"Lifestyle\",\"Products\",\"Shop\",\"Under Construction\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:295;a:20:{s:4:\"tmpl\";i:497;s:2:\"id\";i:5397;s:5:\"title\";s:8:\"About 11\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_1.png\";s:12:\"tmpl_created\";i:1520443503;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:148;s:11:\"trend_index\";i:43;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:296;a:20:{s:4:\"tmpl\";i:1154;s:2:\"id\";i:17079;s:5:\"title\";s:42:\"Calls Volunteer – Social Involvement\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/01/Calls-Volunteer.png\";s:12:\"tmpl_created\";i:1610631774;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/calls-volunteer-social-involvement/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Social Involvement\";s:4:\"tags\";s:68:\"[\"Care\",\"Covid-19\",\"Help\",\"Involvement\",\"Landing Pages\",\"Volunteer\"]\";s:10:\"menu_order\";i:47;s:16:\"popularity_index\";i:854;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:297;a:20:{s:4:\"tmpl\";i:1419;s:2:\"id\";i:24136;s:5:\"title\";s:29:\"Food Blog – Coming Soon\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Food-Blog.jpg\";s:12:\"tmpl_created\";i:1650990034;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/food-blog-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:62:\"[\"Blog\",\"Business\",\"Coming Soon\",\"Cooking\",\"Education\",\"Food\"]\";s:10:\"menu_order\";i:47;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:298;a:20:{s:4:\"tmpl\";i:1142;s:2:\"id\";i:16836;s:5:\"title\";s:33:\"Marketing Agency – Business\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/01/Marketing-Agency-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610464490;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/marketing-agency-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:74:\"[\"Agency\",\"Business\",\"Landing Pages\",\"Marketing\",\"Marketing Landing Page\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:816;s:11:\"trend_index\";i:787;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:299;a:20:{s:4:\"tmpl\";i:1411;s:2:\"id\";i:24020;s:5:\"title\";s:35:\"Mobile App – Maintenance Mode\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-Mobile-App.jpg\";s:12:\"tmpl_created\";i:1649880955;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/mobile-app-maintenance-mode/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:77:\"[\"App\",\"Business\",\"Coding\",\"Computer\",\"Launch\",\"Mobile\",\"Under Construction\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:300;a:20:{s:4:\"tmpl\";i:498;s:2:\"id\";i:5405;s:5:\"title\";s:8:\"About 12\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_1.png\";s:12:\"tmpl_created\";i:1520443505;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:216;s:11:\"trend_index\";i:50;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:301;a:20:{s:4:\"tmpl\";i:1139;s:2:\"id\";i:16785;s:5:\"title\";s:42:\"Gym Promotion – Health & Fitness\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2021/01/Gym-LP.jpg\";s:12:\"tmpl_created\";i:1610455496;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/gym-promotion-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:42:\"[\"Fitness\",\"Gym\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:49;s:16:\"popularity_index\";i:820;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:302;a:20:{s:4:\"tmpl\";i:1420;s:2:\"id\";i:24152;s:5:\"title\";s:32:\"Perfume Shop – Coming Soon\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Perfume-Shop.jpg\";s:12:\"tmpl_created\";i:1650990353;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/perfume-shop-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:68:\"[\"Business\",\"Coming Soon\",\"Cosmetics\",\"Lifestyle\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:49;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:303;a:20:{s:4:\"tmpl\";i:1185;s:2:\"id\";i:18492;s:5:\"title\";s:34:\"Bicycle Pre-Sale – eCommerce\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Bike-Landing-Page.png\";s:12:\"tmpl_created\";i:1617535552;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/bicycle-pre-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:34:\"[\"Bicycle\",\"Landing Pages\",\"Sale\"]\";s:10:\"menu_order\";i:50;s:16:\"popularity_index\";i:871;s:11:\"trend_index\";i:826;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:304;a:20:{s:4:\"tmpl\";i:1418;s:2:\"id\";i:24126;s:5:\"title\";s:28:\"Skincare – Coming Soon\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Skincare.jpg\";s:12:\"tmpl_created\";i:1650989585;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/skincare-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:128:\"[\"Aesthetic\",\"Beauty\",\"Beauty Salon\",\"Business\",\"Coming Soon\",\"Cosmetics\",\"Girly\",\"Lifestyle\",\"Services\",\"Skincare\",\"Treatment\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:305;a:20:{s:4:\"tmpl\";i:1181;s:2:\"id\";i:18349;s:5:\"title\";s:39:\"Virtual try-on glasses – Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-8.png\";s:12:\"tmpl_created\";i:1614772569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/lp/virtual-try-on-glasses-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:64:\"[\"Fashion\",\"Glasses\",\"Landing Pages\",\"Online Service\",\"Virtual\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:848;s:11:\"trend_index\";i:803;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:306;a:20:{s:4:\"tmpl\";i:500;s:2:\"id\";i:5421;s:5:\"title\";s:8:\"About 13\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_3.png\";s:12:\"tmpl_created\";i:1520443509;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:215;s:11:\"trend_index\";i:77;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:307;a:20:{s:4:\"tmpl\";i:513;s:2:\"id\";i:5533;s:5:\"title\";s:8:\"About 15\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_10.png\";s:12:\"tmpl_created\";i:1520443534;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:21;s:11:\"trend_index\";i:57;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:308;a:20:{s:4:\"tmpl\";i:1410;s:2:\"id\";i:24004;s:5:\"title\";s:33:\"Skincare – Maintenance Mode\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-Skincare.jpg\";s:12:\"tmpl_created\";i:1649880534;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/skincare-maintenance-mode/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:144:\"[\"Aesthetic\",\"Beauty\",\"Beauty Salon\",\"Business\",\"Cosmetics\",\"Girly\",\"Lifestyle\",\"Makeup\",\"Services\",\"Skincare\",\"Treatment\",\"Under Construction\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:309;a:20:{s:4:\"tmpl\";i:1172;s:2:\"id\";i:17458;s:5:\"title\";s:31:\"Moving Company – Business\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Moving-Company.png\";s:12:\"tmpl_created\";i:1612727025;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/moving-company-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:46:\"[\"Business\",\"Landing Pages\",\"Movers\",\"Moving\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:826;s:11:\"trend_index\";i:767;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:310;a:20:{s:4:\"tmpl\";i:1415;s:2:\"id\";i:24092;s:5:\"title\";s:29:\"Vase Shop – Coming Soon\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Vase-Shop.jpg\";s:12:\"tmpl_created\";i:1650988613;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/vase-shop-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:115:\"[\"Art\",\"Business\",\"Coming Soon\",\"Creative\",\"Decor\",\"Design\",\"Furniture Design\",\"Interior Design\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:53;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:311;a:20:{s:4:\"tmpl\";i:1186;s:2:\"id\";i:18517;s:5:\"title\";s:29:\"Food Blog – Coming Soon\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Food-Blog.png\";s:12:\"tmpl_created\";i:1617539897;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/food-blog-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:45:\"[\"Blog\",\"Coming Soon\",\"Food\",\"Landing Pages\"]\";s:10:\"menu_order\";i:53;s:16:\"popularity_index\";i:844;s:11:\"trend_index\";i:672;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:312;a:20:{s:4:\"tmpl\";i:1167;s:2:\"id\";i:17379;s:5:\"title\";s:33:\"IT Service – Online Service\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-IT-Service.png\";s:12:\"tmpl_created\";i:1612713022;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/it-service-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:41:\"[\"IT\",\"Landing Pages\",\"Remote\",\"Support\"]\";s:10:\"menu_order\";i:54;s:16:\"popularity_index\";i:806;s:11:\"trend_index\";i:634;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:313;a:20:{s:4:\"tmpl\";i:1248;s:2:\"id\";i:22134;s:5:\"title\";s:32:\"Art Magazine – Coming Soon\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/10/Art-Magazine-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1647176713;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/art-magazine-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:48:\"[\"Art\",\"Coming Soon\",\"Landing Pages\",\"Magazine\"]\";s:10:\"menu_order\";i:54;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:314;a:20:{s:4:\"tmpl\";i:512;s:2:\"id\";i:5525;s:5:\"title\";s:8:\"About 14\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_10.png\";s:12:\"tmpl_created\";i:1520443532;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:9;s:11:\"trend_index\";i:29;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:315;a:20:{s:4:\"tmpl\";i:1189;s:2:\"id\";i:18560;s:5:\"title\";s:52:\"Finance Learning Platform – Under Construction\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Finance-Platform.png\";s:12:\"tmpl_created\";i:1617542761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/lp/finance-learning-platform-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Under Construction\";s:4:\"tags\";s:27:\"[\"Finance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:843;s:11:\"trend_index\";i:561;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:316;a:20:{s:4:\"tmpl\";i:1225;s:2:\"id\";i:21041;s:5:\"title\";s:41:\"Business Consulting Company – About\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2021/12/8-About-Business-Consulting-Company.jpg\";s:12:\"tmpl_created\";i:1638797560;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/business-consulting-company-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:51:\"[\"Coach\",\"Collaboration\",\"Consulting\",\"Life Coach\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:317;a:20:{s:4:\"tmpl\";i:1187;s:2:\"id\";i:18528;s:5:\"title\";s:36:\"Home Decor Store – Coming Soon\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Home-Decore.png\";s:12:\"tmpl_created\";i:1617541784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/home-decor-store-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:57:\"[\"Coming Soon\",\"Decor\",\"Interior Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:872;s:11:\"trend_index\";i:819;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:318;a:20:{s:4:\"tmpl\";i:1243;s:2:\"id\";i:21135;s:5:\"title\";s:28:\"Construction – Service\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/13-Service-Construction.jpg\";s:12:\"tmpl_created\";i:1638823202;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/construction-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:48:\"[\"Architecture\",\"Construction\",\"Faq\",\"Services\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:319;a:20:{s:4:\"tmpl\";i:501;s:2:\"id\";i:5429;s:5:\"title\";s:8:\"About 16\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_4.png\";s:12:\"tmpl_created\";i:1520443510;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:59;s:11:\"trend_index\";i:8;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:320;a:20:{s:4:\"tmpl\";i:1174;s:2:\"id\";i:17504;s:5:\"title\";s:29:\"Hair Stylist – Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-3.png\";s:12:\"tmpl_created\";i:1612883014;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/hair-stylist-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:59:\"[\"Business\",\"Hair\",\"hairdresser\",\"Landing Pages\",\"Stylist\"]\";s:10:\"menu_order\";i:57;s:16:\"popularity_index\";i:840;s:11:\"trend_index\";i:806;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:321;a:20:{s:4:\"tmpl\";i:1223;s:2:\"id\";i:20981;s:5:\"title\";s:37:\"Creative Digital Agency – About\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2021/12/6-About-Creative-Digital-Agency.jpg\";s:12:\"tmpl_created\";i:1638789303;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/creative-digital-agency-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:51:\"[\"About\",\"Advisor\",\"Creative\",\"Creative Portfolio\"]\";s:10:\"menu_order\";i:57;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:322;a:20:{s:4:\"tmpl\";i:1184;s:2:\"id\";i:18449;s:5:\"title\";s:45:\"Aesthetic Clinic – Health & Fitness\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2021/03/Aesthetic-Clinic.png\";s:12:\"tmpl_created\";i:1616682181;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/lp/aesthetic-clinic-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:57:\"[\"Aesthetic\",\"Beauty\",\"Fitness\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:859;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:323;a:20:{s:4:\"tmpl\";i:1221;s:2:\"id\";i:20926;s:5:\"title\";s:33:\"Doctors Online Consultation -Home\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/12/4-Home-Doctors-Online-Consultation.jpg\";s:12:\"tmpl_created\";i:1638787371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/doctors-online-consultation-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:35:\"[\"App\",\"Health\",\"Medical\",\"Online\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:324;a:20:{s:4:\"tmpl\";i:505;s:2:\"id\";i:5464;s:5:\"title\";s:8:\"About 17\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_6.png\";s:12:\"tmpl_created\";i:1520443518;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:220;s:11:\"trend_index\";i:142;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:325;a:20:{s:4:\"tmpl\";i:1165;s:2:\"id\";i:17353;s:5:\"title\";s:44:\"Online Cooking Course – Online Service\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-2.png\";s:12:\"tmpl_created\";i:1612705144;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/lp/online-cooking-course-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:50:\"[\"Cooking\",\"Course Online\",\"Food\",\"Landing Pages\"]\";s:10:\"menu_order\";i:59;s:16:\"popularity_index\";i:845;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:326;a:20:{s:4:\"tmpl\";i:1188;s:2:\"id\";i:18550;s:5:\"title\";s:39:\"Online Store – Under Construction\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Online-Store.png\";s:12:\"tmpl_created\";i:1617542506;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/lp/online-store-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:18:\"Under Construction\";s:4:\"tags\";s:59:\"[\"Landing Pages\",\"Online Shop\",\"Shop\",\"Under Construction\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:832;s:11:\"trend_index\";i:600;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:327;a:20:{s:4:\"tmpl\";i:1250;s:2:\"id\";i:22140;s:5:\"title\";s:33:\"Design School – Coming Soon\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/05/250x280-1.png\";s:12:\"tmpl_created\";i:1647177317;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/design-school-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:49:\"[\"Coming Soon\",\"Design\",\"Landing Pages\",\"School\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:328;a:20:{s:4:\"tmpl\";i:510;s:2:\"id\";i:5504;s:5:\"title\";s:8:\"About 18\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_9.png\";s:12:\"tmpl_created\";i:1520443528;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:104;s:11:\"trend_index\";i:46;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:329;a:20:{s:4:\"tmpl\";i:1191;s:2:\"id\";i:18539;s:5:\"title\";s:40:\"Travel Agency – Under Construction\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Travel-Agency-1.png\";s:12:\"tmpl_created\";i:1617610273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/travel-agency-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Under Construction\";s:4:\"tags\";s:56:\"[\"Agency\",\"Landing Pages\",\"Travel\",\"Under Construction\"]\";s:10:\"menu_order\";i:61;s:16:\"popularity_index\";i:876;s:11:\"trend_index\";i:652;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:330;a:20:{s:4:\"tmpl\";i:1175;s:2:\"id\";i:18270;s:5:\"title\";s:24:\"Open week – Events\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280.png\";s:12:\"tmpl_created\";i:1614767186;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/open-week-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:59:\"[\"Education\",\"Event\",\"Events\",\"Landing Pages\",\"University\"]\";s:10:\"menu_order\";i:62;s:16:\"popularity_index\";i:831;s:11:\"trend_index\";i:673;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:331;a:20:{s:4:\"tmpl\";i:1177;s:2:\"id\";i:18300;s:5:\"title\";s:30:\"Makeup Artist – Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-2.png\";s:12:\"tmpl_created\";i:1614768608;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/makeup-artist-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:79:\"[\"Beauty\",\"Business\",\"Course Online\",\"Landing Pages\",\"Makeup\",\"Online Service\"]\";s:10:\"menu_order\";i:63;s:16:\"popularity_index\";i:861;s:11:\"trend_index\";i:783;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:332;a:20:{s:4:\"tmpl\";i:511;s:2:\"id\";i:5515;s:5:\"title\";s:8:\"About 19\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_9.png\";s:12:\"tmpl_created\";i:1520443530;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:63;s:16:\"popularity_index\";i:268;s:11:\"trend_index\";i:161;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:333;a:20:{s:4:\"tmpl\";i:1179;s:2:\"id\";i:18329;s:5:\"title\";s:63:\"Online Real Estate Investment Conference – Online Service\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-5.png\";s:12:\"tmpl_created\";i:1614770404;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:157:\"https://library.elementor.com/lp/online-real-estate-investment-conference-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:76:\"[\"Conference\",\"Event\",\"Events\",\"Landing Pages\",\"Online Event\",\"Real estate\"]\";s:10:\"menu_order\";i:64;s:16:\"popularity_index\";i:866;s:11:\"trend_index\";i:779;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:334;a:20:{s:4:\"tmpl\";i:506;s:2:\"id\";i:5472;s:5:\"title\";s:7:\"About 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_7.png\";s:12:\"tmpl_created\";i:1520443520;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:64;s:16:\"popularity_index\";i:210;s:11:\"trend_index\";i:116;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:335;a:20:{s:4:\"tmpl\";i:1183;s:2:\"id\";i:18391;s:5:\"title\";s:45:\"Children’s Optometrist – Business\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Childrens-Optometrist.png\";s:12:\"tmpl_created\";i:1614773564;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/lp/childrens-optometrist-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:85:\"[\"Business\",\"Children\",\"Eye\",\"Glasses\",\"Health\",\"Kids\",\"Landing Pages\",\"Optometrist\"]\";s:10:\"menu_order\";i:65;s:16:\"popularity_index\";i:877;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:336;a:20:{s:4:\"tmpl\";i:1182;s:2:\"id\";i:18366;s:5:\"title\";s:30:\"Car Insurance – Business\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Car-Insurance.png\";s:12:\"tmpl_created\";i:1614773263;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/car-insurance-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:46:\"[\"Business\",\"car\",\"Insurance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:66;s:16:\"popularity_index\";i:869;s:11:\"trend_index\";i:797;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:337;a:20:{s:4:\"tmpl\";i:1201;s:2:\"id\";i:19144;s:5:\"title\";s:25:\"Birthday Party Invitation\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/06/250x280.png\";s:12:\"tmpl_created\";i:1623848691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/birthday-party-invitation/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:67:\"[\"Birthday\",\"Event\",\"Landing Pages\",\"Party\",\"RSVD\",\"Save the Date\"]\";s:10:\"menu_order\";i:66;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:338;a:20:{s:4:\"tmpl\";i:1124;s:2:\"id\";i:16473;s:5:\"title\";s:26:\"Beauty Salon – About\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/12/about-1.jpg\";s:12:\"tmpl_created\";i:1608622373;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/beauty-salon-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:615;s:11:\"trend_index\";i:184;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:339;a:20:{s:4:\"tmpl\";i:1176;s:2:\"id\";i:18291;s:5:\"title\";s:47:\"Grill Restaurant Food Delivery – Business\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Food-Delivery-LP.png\";s:12:\"tmpl_created\";i:1614767830;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/lp/grill-restaurant-food-delivery-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:79:\"[\"Delivery\",\"Delivery Service\",\"Fast Food\",\"Food\",\"Landing Pages\",\"Restaurant\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:819;s:11:\"trend_index\";i:685;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:340;a:20:{s:4:\"tmpl\";i:504;s:2:\"id\";i:5455;s:5:\"title\";s:8:\"About 20\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_6.png\";s:12:\"tmpl_created\";i:1520443516;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:134;s:11:\"trend_index\";i:70;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:341;a:20:{s:4:\"tmpl\";i:1125;s:2:\"id\";i:16488;s:5:\"title\";s:28:\"Beauty Salon – Contact\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/12/contact.jpg\";s:12:\"tmpl_created\";i:1608622374;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/beauty-salon-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:548;s:11:\"trend_index\";i:101;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:342;a:20:{s:4:\"tmpl\";i:1180;s:2:\"id\";i:18340;s:5:\"title\";s:30:\"Restaurant – Coming Soon\";s:9:\"thumbnail\";s:98:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Restuarant-Coming-Soon-LP.png\";s:12:\"tmpl_created\";i:1614772183;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/restaurant-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:51:\"[\"Coming Soon\",\"Food\",\"Landing Pages\",\"Restaurant\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:810;s:11:\"trend_index\";i:809;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:343;a:20:{s:4:\"tmpl\";i:499;s:2:\"id\";i:5413;s:5:\"title\";s:8:\"About 21\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_2.png\";s:12:\"tmpl_created\";i:1520443507;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:83;s:11:\"trend_index\";i:52;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:344;a:20:{s:4:\"tmpl\";i:1126;s:2:\"id\";i:16496;s:5:\"title\";s:28:\"Beauty Salon – Gallery\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/12/gallery-1.jpg\";s:12:\"tmpl_created\";i:1608622379;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/beauty-salon-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:69;s:16:\"popularity_index\";i:491;s:11:\"trend_index\";i:90;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:345;a:20:{s:4:\"tmpl\";i:1173;s:2:\"id\";i:17480;s:5:\"title\";s:42:\"At-home Massage Therapist – Business\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/02/At-Home-Massage-Therapist.jpg\";s:12:\"tmpl_created\";i:1612879264;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/at-home-massage-therapist-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:60:\"[\"Business\",\"Health\",\"Landing Pages\",\"Services\",\"Therapist\"]\";s:10:\"menu_order\";i:69;s:16:\"popularity_index\";i:856;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:346;a:20:{s:4:\"tmpl\";i:1127;s:2:\"id\";i:16457;s:5:\"title\";s:25:\"Beauty Salon – Home\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/home-1.jpg\";s:12:\"tmpl_created\";i:1608622383;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/beauty-salon-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:70;s:16:\"popularity_index\";i:408;s:11:\"trend_index\";i:56;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:347;a:20:{s:4:\"tmpl\";i:1178;s:2:\"id\";i:18317;s:5:\"title\";s:26:\"Insurance – Business\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Life-Insirance.png\";s:12:\"tmpl_created\";i:1614769488;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/lp/insurance-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:61:\"[\"Business\",\"Family\",\"Financial\",\"Insurance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:70;s:16:\"popularity_index\";i:870;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:348;a:20:{s:4:\"tmpl\";i:1128;s:2:\"id\";i:16518;s:5:\"title\";s:29:\"Beauty Salon – Services\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/12/services-1.jpg\";s:12:\"tmpl_created\";i:1608622386;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/beauty-salon-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:664;s:11:\"trend_index\";i:261;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:349;a:20:{s:4:\"tmpl\";i:1168;s:2:\"id\";i:17401;s:5:\"title\";s:40:\"Conference Thank You Page – Events\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280.png\";s:12:\"tmpl_created\";i:1612724753;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/conference-thank-you-page-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:59:\"[\"Conference\",\"Event\",\"Events\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:799;s:11:\"trend_index\";i:540;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:350;a:20:{s:4:\"tmpl\";i:503;s:2:\"id\";i:5447;s:5:\"title\";s:7:\"About 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_5.png\";s:12:\"tmpl_created\";i:1520443514;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/about-3-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:48;s:11:\"trend_index\";i:12;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:351;a:20:{s:4:\"tmpl\";i:1073;s:2:\"id\";i:15486;s:5:\"title\";s:25:\"Travel Blog – About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/11/About.jpg\";s:12:\"tmpl_created\";i:1606215720;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/travel-blog-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:72;s:16:\"popularity_index\";i:608;s:11:\"trend_index\";i:343;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:352;a:20:{s:4:\"tmpl\";i:1166;s:2:\"id\";i:17368;s:5:\"title\";s:38:\"Real Estate Agency – Real-Estate\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Real-Estate.png\";s:12:\"tmpl_created\";i:1612711814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/lp/real-estate-agency-real-estate/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:73:\"[\"Landing Pages\",\"listing\",\"Real estate\",\"Realestate\",\"realtor\",\"realty\"]\";s:10:\"menu_order\";i:72;s:16:\"popularity_index\";i:858;s:11:\"trend_index\";i:777;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:353;a:20:{s:4:\"tmpl\";i:1074;s:2:\"id\";i:15478;s:5:\"title\";s:27:\"Travel Blog – Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/11/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1606215735;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/travel-blog-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:687;s:11:\"trend_index\";i:564;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:354;a:20:{s:4:\"tmpl\";i:1170;s:2:\"id\";i:17423;s:5:\"title\";s:57:\"Volunteer Calls Thank You Page – Social Involvement\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/02/Volunteer-Calls-TYP.jpg\";s:12:\"tmpl_created\";i:1612726058;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:151:\"https://library.elementor.com/lp/volunteer-calls-thank-you-page-social-involvement/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:62:\"[\"Care\",\"Involvement\",\"Landing Pages\",\"Thank You\",\"Volunteer\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:857;s:11:\"trend_index\";i:818;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:355;a:20:{s:4:\"tmpl\";i:507;s:2:\"id\";i:5480;s:5:\"title\";s:7:\"About 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_7-1.png\";s:12:\"tmpl_created\";i:1520443522;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/about-4-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:428;s:11:\"trend_index\";i:303;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:356;a:20:{s:4:\"tmpl\";i:1075;s:2:\"id\";i:15467;s:5:\"title\";s:24:\"Travel Blog – Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/11/Home.jpg\";s:12:\"tmpl_created\";i:1606215756;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/travel-blog-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:74;s:16:\"popularity_index\";i:567;s:11:\"trend_index\";i:224;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:357;a:20:{s:4:\"tmpl\";i:1169;s:2:\"id\";i:17409;s:5:\"title\";s:37:\"Webinar Thank You Page – Events\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Webinar-TYP.png\";s:12:\"tmpl_created\";i:1612725644;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/lp/webinar-thank-you-page-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:56:\"[\"Event\",\"Events\",\"Landing Pages\",\"Thank You\",\"Webinar\"]\";s:10:\"menu_order\";i:74;s:16:\"popularity_index\";i:868;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:358;a:20:{s:4:\"tmpl\";i:1056;s:2:\"id\";i:15317;s:5:\"title\";s:25:\"Dance Studio – Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/10/Home.jpg\";s:12:\"tmpl_created\";i:1603181291;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/dance-studio-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:596;s:11:\"trend_index\";i:301;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:359;a:20:{s:4:\"tmpl\";i:545;s:2:\"id\";i:6027;s:5:\"title\";s:7:\"About 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_1-1.png\";s:12:\"tmpl_created\";i:1520443639;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/about-5-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:40;s:11:\"trend_index\";i:40;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:360;a:20:{s:4:\"tmpl\";i:1160;s:2:\"id\";i:17258;s:5:\"title\";s:32:\"Beauty Product – eCommerce\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2021/01/Beauty-Product.png\";s:12:\"tmpl_created\";i:1610903153;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/beauty-product-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:38:\"[\"Beauty\",\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:797;s:11:\"trend_index\";i:703;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:361;a:20:{s:4:\"tmpl\";i:1057;s:2:\"id\";i:15334;s:5:\"title\";s:26:\"Dance Studio – About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/10/About.jpg\";s:12:\"tmpl_created\";i:1603181364;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/dance-studio-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:626;s:11:\"trend_index\";i:373;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:362;a:20:{s:4:\"tmpl\";i:546;s:2:\"id\";i:6036;s:5:\"title\";s:7:\"About 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_1-1.png\";s:12:\"tmpl_created\";i:1520443641;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/about-6-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:90;s:11:\"trend_index\";i:123;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:363;a:20:{s:4:\"tmpl\";i:1171;s:2:\"id\";i:17435;s:5:\"title\";s:39:\"Gym – App Service – Product\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-4.png\";s:12:\"tmpl_created\";i:1612726462;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/gym-app-service-product/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:58:\"[\"App\",\"Fitness\",\"Gym\",\"Health\",\"Landing Pages\",\"Product\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:767;s:11:\"trend_index\";i:577;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:364;a:20:{s:4:\"tmpl\";i:1058;s:2:\"id\";i:15349;s:5:\"title\";s:28:\"Dance Studio – Classes\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/10/Classes.jpg\";s:12:\"tmpl_created\";i:1603181425;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/dance-studio-classes/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:77;s:16:\"popularity_index\";i:629;s:11:\"trend_index\";i:458;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:365;a:20:{s:4:\"tmpl\";i:1156;s:2:\"id\";i:17111;s:5:\"title\";s:33:\"Sunglasses Sale – eCommerce\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/01/Sunglasses-LP-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610632408;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/sunglasses-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:59:\"[\"Ecommerce\",\"Fashion\",\"Landing Pages\",\"Sale\",\"Sunglasses\"]\";s:10:\"menu_order\";i:77;s:16:\"popularity_index\";i:812;s:11:\"trend_index\";i:732;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:366;a:20:{s:4:\"tmpl\";i:1055;s:2:\"id\";i:15366;s:5:\"title\";s:29:\"Dance Studio – Schedule\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/10/Classes-Schedule.jpg\";s:12:\"tmpl_created\";i:1603181056;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/dance-studio-schedule/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:78;s:16:\"popularity_index\";i:698;s:11:\"trend_index\";i:602;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:367;a:20:{s:4:\"tmpl\";i:1157;s:2:\"id\";i:17223;s:5:\"title\";s:25:\"Fashion – eCommerce\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2021/01/Commerce-Fashion.png\";s:12:\"tmpl_created\";i:1610902553;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/fashion-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:29:\"[\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:78;s:16:\"popularity_index\";i:808;s:11:\"trend_index\";i:745;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:368;a:20:{s:4:\"tmpl\";i:1059;s:2:\"id\";i:15373;s:5:\"title\";s:28:\"Dance Studio – Pricing\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/10/Pricing.jpg\";s:12:\"tmpl_created\";i:1603181678;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/dance-studio-pricing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:731;s:11:\"trend_index\";i:661;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:369;a:20:{s:4:\"tmpl\";i:1151;s:2:\"id\";i:17017;s:5:\"title\";s:28:\"Shoes Sale – eCommerce\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/01/Shoes-LP-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610535361;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/shoes-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:55:\"[\"Discount\",\"Ecommerce\",\"Landing Pages\",\"Sale\",\"Shoes\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:803;s:11:\"trend_index\";i:642;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:370;a:20:{s:4:\"tmpl\";i:508;s:2:\"id\";i:5488;s:5:\"title\";s:7:\"About 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_8.png\";s:12:\"tmpl_created\";i:1520443524;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:307;s:11:\"trend_index\";i:169;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:371;a:20:{s:4:\"tmpl\";i:1060;s:2:\"id\";i:15384;s:5:\"title\";s:28:\"Dance Studio – Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/10/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1603181738;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/dance-studio-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:741;s:11:\"trend_index\";i:721;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:372;a:20:{s:4:\"tmpl\";i:556;s:2:\"id\";i:6122;s:5:\"title\";s:7:\"About 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_2-1.png\";s:12:\"tmpl_created\";i:1520443661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:38;s:11:\"trend_index\";i:26;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:373;a:20:{s:4:\"tmpl\";i:1163;s:2:\"id\";i:17301;s:5:\"title\";s:53:\"Personal Chef – Thank You Page – Business\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2021/01/TYP-Personal-Chef.jpg\";s:12:\"tmpl_created\";i:1610903622;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/lp/personal-chef-thank-you-page-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:43:\"[\"Chef\",\"Food\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:823;s:11:\"trend_index\";i:754;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:374;a:20:{s:4:\"tmpl\";i:1042;s:2:\"id\";i:15158;s:5:\"title\";s:26:\"Psychologist – About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/09/About.jpg\";s:12:\"tmpl_created\";i:1600157561;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/psychologist-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:81;s:16:\"popularity_index\";i:618;s:11:\"trend_index\";i:426;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:375;a:20:{s:4:\"tmpl\";i:1164;s:2:\"id\";i:17313;s:5:\"title\";s:60:\"Development Course – Thank You Page – Education\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/01/Dev-Course-TYP-.png\";s:12:\"tmpl_created\";i:1610903776;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/lp/development-course-thank-you-page-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:57:\"[\"Course Online\",\"Education\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:81;s:16:\"popularity_index\";i:834;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:376;a:20:{s:4:\"tmpl\";i:1045;s:2:\"id\";i:15197;s:5:\"title\";s:28:\"Psychologist – Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/09/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1600160499;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/psychologist-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:82;s:16:\"popularity_index\";i:666;s:11:\"trend_index\";i:558;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:377;a:20:{s:4:\"tmpl\";i:509;s:2:\"id\";i:5496;s:5:\"title\";s:7:\"About 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_8-1.png\";s:12:\"tmpl_created\";i:1520443526;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:82;s:16:\"popularity_index\";i:523;s:11:\"trend_index\";i:453;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:378;a:20:{s:4:\"tmpl\";i:1041;s:2:\"id\";i:15142;s:5:\"title\";s:25:\"Psychologist – Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/09/Home.jpg\";s:12:\"tmpl_created\";i:1600156308;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/psychologist-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:83;s:16:\"popularity_index\";i:464;s:11:\"trend_index\";i:297;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:379;a:20:{s:4:\"tmpl\";i:1044;s:2:\"id\";i:15188;s:5:\"title\";s:28:\"Psychologist – Pricing\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/09/Pricing.jpg\";s:12:\"tmpl_created\";i:1600159731;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/psychologist-pricing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:84;s:16:\"popularity_index\";i:732;s:11:\"trend_index\";i:537;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:380;a:20:{s:4:\"tmpl\";i:684;s:2:\"id\";i:8961;s:5:\"title\";s:9:\"archive 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.1.jpg\";s:12:\"tmpl_created\";i:1528639909;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:84;s:16:\"popularity_index\";i:79;s:11:\"trend_index\";i:15;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:381;a:20:{s:4:\"tmpl\";i:1043;s:2:\"id\";i:15167;s:5:\"title\";s:29:\"Psychologist – Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/09/Services.jpg\";s:12:\"tmpl_created\";i:1600158206;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/psychologist-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:85;s:16:\"popularity_index\";i:606;s:11:\"trend_index\";i:379;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:382;a:20:{s:4:\"tmpl\";i:1036;s:2:\"id\";i:14932;s:5:\"title\";s:30:\"Flooring Company – About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/08/About.png\";s:12:\"tmpl_created\";i:1597740110;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/flooring-company-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:86;s:16:\"popularity_index\";i:488;s:11:\"trend_index\";i:319;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:383;a:20:{s:4:\"tmpl\";i:685;s:2:\"id\";i:8969;s:5:\"title\";s:9:\"archive 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.2.jpg\";s:12:\"tmpl_created\";i:1528700014;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:86;s:16:\"popularity_index\";i:250;s:11:\"trend_index\";i:124;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:384;a:20:{s:4:\"tmpl\";i:1037;s:2:\"id\";i:14998;s:5:\"title\";s:32:\"Flooring Company – Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/08/Contact-Us.png\";s:12:\"tmpl_created\";i:1597740222;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/flooring-company-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:87;s:16:\"popularity_index\";i:553;s:11:\"trend_index\";i:380;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:385;a:20:{s:4:\"tmpl\";i:1038;s:2:\"id\";i:14965;s:5:\"title\";s:32:\"Flooring Company – Gallery\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/08/Gallery.png\";s:12:\"tmpl_created\";i:1597740353;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/flooring-company-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:88;s:16:\"popularity_index\";i:371;s:11:\"trend_index\";i:291;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:386;a:20:{s:4:\"tmpl\";i:686;s:2:\"id\";i:8973;s:5:\"title\";s:9:\"archive 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.3.jpg\";s:12:\"tmpl_created\";i:1528700205;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:88;s:16:\"popularity_index\";i:176;s:11:\"trend_index\";i:54;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:387;a:20:{s:4:\"tmpl\";i:1282;s:2:\"id\";i:22417;s:5:\"title\";s:52:\"Finance Learning Platform – Under Construction\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Finance-Platform.png\";s:12:\"tmpl_created\";i:1647354987;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/finance-learning-platform-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Finance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:89;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:388;a:20:{s:4:\"tmpl\";i:1040;s:2:\"id\";i:14947;s:5:\"title\";s:33:\"Flooring company – Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/08/Services.png\";s:12:\"tmpl_created\";i:1597740551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/flooring-company-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:90;s:16:\"popularity_index\";i:538;s:11:\"trend_index\";i:392;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:389;a:20:{s:4:\"tmpl\";i:1039;s:2:\"id\";i:14901;s:5:\"title\";s:29:\"Flooring Company – Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/08/Home.png\";s:12:\"tmpl_created\";i:1597740474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/flooring-company-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:91;s:16:\"popularity_index\";i:387;s:11:\"trend_index\";i:185;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:390;a:20:{s:4:\"tmpl\";i:687;s:2:\"id\";i:8977;s:5:\"title\";s:9:\"archive 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.4.jpg\";s:12:\"tmpl_created\";i:1528700326;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:91;s:16:\"popularity_index\";i:354;s:11:\"trend_index\";i:396;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:391;a:20:{s:4:\"tmpl\";i:1252;s:2:\"id\";i:22146;s:5:\"title\";s:36:\"Home Decor Store – Coming Soon\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Home-Decore.png\";s:12:\"tmpl_created\";i:1647177514;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/home-decor-store-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:57:\"[\"Coming Soon\",\"Decor\",\"Interior Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:92;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:392;a:20:{s:4:\"tmpl\";i:688;s:2:\"id\";i:8981;s:5:\"title\";s:9:\"archive 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.5.jpg\";s:12:\"tmpl_created\";i:1528700484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:93;s:16:\"popularity_index\";i:333;s:11:\"trend_index\";i:195;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:393;a:20:{s:4:\"tmpl\";i:1021;s:2:\"id\";i:14737;s:5:\"title\";s:32:\"Luxury Real Estate – About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/07/About.png\";s:12:\"tmpl_created\";i:1595313527;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/luxury-real-estate-about-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:93;s:16:\"popularity_index\";i:150;s:11:\"trend_index\";i:447;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:394;a:20:{s:4:\"tmpl\";i:689;s:2:\"id\";i:8985;s:5:\"title\";s:9:\"archive 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.6.jpg\";s:12:\"tmpl_created\";i:1528700612;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:94;s:16:\"popularity_index\";i:204;s:11:\"trend_index\";i:95;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:395;a:20:{s:4:\"tmpl\";i:1020;s:2:\"id\";i:14756;s:5:\"title\";s:34:\"Luxury Real Estate – Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/07/Contact-Us.png\";s:12:\"tmpl_created\";i:1595313519;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/luxury-real-estate-contact-us-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:94;s:16:\"popularity_index\";i:610;s:11:\"trend_index\";i:569;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:396;a:20:{s:4:\"tmpl\";i:1019;s:2:\"id\";i:14716;s:5:\"title\";s:31:\"Luxury Real Estate – Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/07/Home.png\";s:12:\"tmpl_created\";i:1595313512;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/luxury-real-estate-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:95;s:16:\"popularity_index\";i:394;s:11:\"trend_index\";i:165;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:397;a:20:{s:4:\"tmpl\";i:690;s:2:\"id\";i:8989;s:5:\"title\";s:9:\"archive 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.7.jpg\";s:12:\"tmpl_created\";i:1528701063;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:96;s:16:\"popularity_index\";i:208;s:11:\"trend_index\";i:111;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:398;a:20:{s:4:\"tmpl\";i:1018;s:2:\"id\";i:14763;s:5:\"title\";s:31:\"Luxury Real Estate – News\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/07/news-Archive.png\";s:12:\"tmpl_created\";i:1595313273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/luxury-real-estate-news-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:96;s:16:\"popularity_index\";i:404;s:11:\"trend_index\";i:167;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:399;a:20:{s:4:\"tmpl\";i:1283;s:2:\"id\";i:22423;s:5:\"title\";s:39:\"Online Store – Under Construction\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Online-Store.png\";s:12:\"tmpl_created\";i:1647355154;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/online-store-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:59:\"[\"Landing Pages\",\"Online Shop\",\"Shop\",\"Under Construction\"]\";s:10:\"menu_order\";i:97;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:400;a:20:{s:4:\"tmpl\";i:691;s:2:\"id\";i:8996;s:5:\"title\";s:9:\"archive 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.8.jpg\";s:12:\"tmpl_created\";i:1528701290;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:98;s:16:\"popularity_index\";i:227;s:11:\"trend_index\";i:153;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:401;a:20:{s:4:\"tmpl\";i:1010;s:2:\"id\";i:13960;s:5:\"title\";s:32:\"Japanese restaurant – Home\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/06/Home-Page.jpg\";s:12:\"tmpl_created\";i:1592289775;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/japanese-restaurant-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:98;s:16:\"popularity_index\";i:537;s:11:\"trend_index\";i:287;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:402;a:20:{s:4:\"tmpl\";i:1284;s:2:\"id\";i:22428;s:5:\"title\";s:40:\"Travel Agency – Under Construction\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Travel-Agency-1.png\";s:12:\"tmpl_created\";i:1647355339;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/travel-agency-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Agency\",\"Landing Pages\",\"Travel\",\"Under Construction\"]\";s:10:\"menu_order\";i:99;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:403;a:20:{s:4:\"tmpl\";i:692;s:2:\"id\";i:9001;s:5:\"title\";s:9:\"archive 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.9.jpg\";s:12:\"tmpl_created\";i:1528701433;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:100;s:16:\"popularity_index\";i:265;s:11:\"trend_index\";i:208;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:404;a:20:{s:4:\"tmpl\";i:1007;s:2:\"id\";i:13993;s:5:\"title\";s:45:\"Japanese restaurant – Chef’s Menu\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/06/Chef_s-Menu-Page.jpg\";s:12:\"tmpl_created\";i:1592289691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/japanese-restaurant-chefs-menu/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:100;s:16:\"popularity_index\";i:651;s:11:\"trend_index\";i:675;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:405;a:20:{s:4:\"tmpl\";i:1006;s:2:\"id\";i:14012;s:5:\"title\";s:36:\"Japanese restaurant – Bar Menu\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/06/Bar-Menu-Page.jpg\";s:12:\"tmpl_created\";i:1592289665;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/japanese-restaurant-bar-menu/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:101;s:16:\"popularity_index\";i:735;s:11:\"trend_index\";i:829;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:406;a:20:{s:4:\"tmpl\";i:1005;s:2:\"id\";i:13917;s:5:\"title\";s:33:\"Japanese restaurant – About\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/06/About-Page.jpg\";s:12:\"tmpl_created\";i:1592289629;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/japanese-restaurant-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:102;s:16:\"popularity_index\";i:640;s:11:\"trend_index\";i:389;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:407;a:20:{s:4:\"tmpl\";i:997;s:2:\"id\";i:13528;s:5:\"title\";s:22:\"Barbershop – 404\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/05/404-Page.jpg\";s:12:\"tmpl_created\";i:1589893152;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/barbershop-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:34:\"[\"404\",\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:103;s:16:\"popularity_index\";i:768;s:11:\"trend_index\";i:681;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:408;a:20:{s:4:\"tmpl\";i:1009;s:2:\"id\";i:13937;s:5:\"title\";s:35:\"Japanese restaurant – Gallery\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/Gallery-Page.jpg\";s:12:\"tmpl_created\";i:1592289748;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/japanese-restaurant-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:103;s:16:\"popularity_index\";i:648;s:11:\"trend_index\";i:551;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:409;a:20:{s:4:\"tmpl\";i:1008;s:2:\"id\";i:14030;s:5:\"title\";s:34:\"Japanese restaurant – Events\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/06/Events-Page.jpg\";s:12:\"tmpl_created\";i:1592289713;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/japanese-restaurant-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:104;s:16:\"popularity_index\";i:723;s:11:\"trend_index\";i:711;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:410;a:20:{s:4:\"tmpl\";i:998;s:2:\"id\";i:13518;s:5:\"title\";s:26:\"Barbershop – Archive\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/05/Blog-Page.jpg\";s:12:\"tmpl_created\";i:1589893157;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/barbershop-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:105;s:16:\"popularity_index\";i:737;s:11:\"trend_index\";i:523;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:411;a:20:{s:4:\"tmpl\";i:1016;s:2:\"id\";i:13984;s:5:\"title\";s:40:\"Japanese restaurant – Reservations\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/reservations.jpg\";s:12:\"tmpl_created\";i:1592294757;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/japanese-restaurant-reservations/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:105;s:16:\"popularity_index\";i:715;s:11:\"trend_index\";i:727;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:412;a:20:{s:4:\"tmpl\";i:999;s:2:\"id\";i:13479;s:5:\"title\";s:23:\"Barbershop – Home\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/05/Home-Page.jpg\";s:12:\"tmpl_created\";i:1589893275;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/barbershop-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:106;s:16:\"popularity_index\";i:683;s:11:\"trend_index\";i:832;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:413;a:20:{s:4:\"tmpl\";i:996;s:2:\"id\";i:13604;s:5:\"title\";s:25:\"Barbershop – Footer\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/05/Footer-Small.jpg\";s:12:\"tmpl_created\";i:1589893147;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/barbershop-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:37:\"[\"Barber Shop\",\"Barbershop\",\"Footer\"]\";s:10:\"menu_order\";i:107;s:16:\"popularity_index\";i:555;s:11:\"trend_index\";i:267;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:414;a:20:{s:4:\"tmpl\";i:1000;s:2:\"id\";i:13503;s:5:\"title\";s:24:\"Barbershop – About\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/05/About-Page.jpg\";s:12:\"tmpl_created\";i:1589893289;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/barbershop-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:107;s:16:\"popularity_index\";i:744;s:11:\"trend_index\";i:739;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:415;a:20:{s:4:\"tmpl\";i:995;s:2:\"id\";i:13612;s:5:\"title\";s:25:\"Barbershop – Header\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/06/barber-shop-header.jpg\";s:12:\"tmpl_created\";i:1589893142;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/barbershop-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:37:\"[\"Barber Shop\",\"Barbershop\",\"Header\"]\";s:10:\"menu_order\";i:108;s:16:\"popularity_index\";i:343;s:11:\"trend_index\";i:137;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:416;a:20:{s:4:\"tmpl\";i:1001;s:2:\"id\";i:13548;s:5:\"title\";s:27:\"Barbershop – Services\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/05/Services-Page.jpg\";s:12:\"tmpl_created\";i:1589893298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/barbershop-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:108;s:16:\"popularity_index\";i:761;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:417;a:20:{s:4:\"tmpl\";i:1002;s:2:\"id\";i:13560;s:5:\"title\";s:26:\"Barbershop – Gallery\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/05/Gallery-Page.jpg\";s:12:\"tmpl_created\";i:1589893307;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/barbershop-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:109;s:16:\"popularity_index\";i:756;s:11:\"trend_index\";i:822;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:418;a:20:{s:4:\"tmpl\";i:1003;s:2:\"id\";i:13587;s:5:\"title\";s:26:\"Barbershop – Contact\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/05/Contact-Us-Page.jpg\";s:12:\"tmpl_created\";i:1589893315;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/barbershop-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:110;s:16:\"popularity_index\";i:753;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:419;a:20:{s:4:\"tmpl\";i:982;s:2:\"id\";i:13307;s:5:\"title\";s:26:\"Online Course – Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Home.jpg\";s:12:\"tmpl_created\";i:1587474541;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/online-course-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:111;s:16:\"popularity_index\";i:230;s:11:\"trend_index\";i:125;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:420;a:20:{s:4:\"tmpl\";i:994;s:2:\"id\";i:13621;s:5:\"title\";s:30:\"Barbershop – Single Post\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/05/Single-Page.jpg\";s:12:\"tmpl_created\";i:1589893137;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/barbershop-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:111;s:16:\"popularity_index\";i:736;s:11:\"trend_index\";i:580;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:421;a:20:{s:4:\"tmpl\";i:1131;s:2:\"id\";i:16527;s:5:\"title\";s:24:\"Beauty Salon – 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/12/404.jpg\";s:12:\"tmpl_created\";i:1608622517;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/beauty-salon-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:29:\"[\"404\",\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:112;s:16:\"popularity_index\";i:742;s:11:\"trend_index\";i:563;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:422;a:20:{s:4:\"tmpl\";i:983;s:2:\"id\";i:13328;s:5:\"title\";s:27:\"Online Course – About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/About.jpg\";s:12:\"tmpl_created\";i:1587474558;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/online-course-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:112;s:16:\"popularity_index\";i:508;s:11:\"trend_index\";i:429;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:423;a:20:{s:4:\"tmpl\";i:984;s:2:\"id\";i:13338;s:5:\"title\";s:33:\"Online Course – Course Page\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Course-Page.png\";s:12:\"tmpl_created\";i:1587474574;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/online-course-course-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:113;s:16:\"popularity_index\";i:337;s:11:\"trend_index\";i:310;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:424;a:20:{s:4:\"tmpl\";i:985;s:2:\"id\";i:13352;s:5:\"title\";s:29:\"Online Course – Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1587474591;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/online-course-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:114;s:16:\"popularity_index\";i:565;s:11:\"trend_index\";i:533;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:425;a:20:{s:4:\"tmpl\";i:1130;s:2:\"id\";i:16535;s:5:\"title\";s:27:\"Beauty Salon – Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/Footer.jpg\";s:12:\"tmpl_created\";i:1608622498;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/beauty-salon-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:32:\"[\"Beauty Salon\",\"Footer\",\"Hair\"]\";s:10:\"menu_order\";i:115;s:16:\"popularity_index\";i:524;s:11:\"trend_index\";i:126;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:426;a:20:{s:4:\"tmpl\";i:971;s:2:\"id\";i:13187;s:5:\"title\";s:33:\"Interior Design – Home Page\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Home.png\";s:12:\"tmpl_created\";i:1586148661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/interior-design-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:115;s:16:\"popularity_index\";i:331;s:11:\"trend_index\";i:264;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:427;a:20:{s:4:\"tmpl\";i:1453;s:2:\"id\";i:16346;s:5:\"title\";s:33:\"Your New Home – Real Estate\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2017/03/lp3-l.png\";s:12:\"tmpl_created\";i:1660205402;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/your-new-home-real-estate/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:31:\"[\"Landing Pages\",\"Real estate\"]\";s:10:\"menu_order\";i:116;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:428;a:20:{s:4:\"tmpl\";i:972;s:2:\"id\";i:13199;s:5:\"title\";s:29:\"Interior Design – About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/About.png\";s:12:\"tmpl_created\";i:1586148666;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/interior-design-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:116;s:16:\"popularity_index\";i:316;s:11:\"trend_index\";i:334;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:429;a:20:{s:4:\"tmpl\";i:1129;s:2:\"id\";i:16545;s:5:\"title\";s:27:\"Beauty Salon – Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/Header.jpg\";s:12:\"tmpl_created\";i:1608622495;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/beauty-salon-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:32:\"[\"Beauty Salon\",\"Hair\",\"Header\"]\";s:10:\"menu_order\";i:117;s:16:\"popularity_index\";i:356;s:11:\"trend_index\";i:49;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:430;a:20:{s:4:\"tmpl\";i:973;s:2:\"id\";i:13214;s:5:\"title\";s:32:\"Interior Design – Projects\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/portfolio_s.jpg\";s:12:\"tmpl_created\";i:1586148672;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/interior-design-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:117;s:16:\"popularity_index\";i:367;s:11:\"trend_index\";i:323;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:431;a:20:{s:4:\"tmpl\";i:641;s:2:\"id\";i:7686;s:5:\"title\";s:12:\"Blog Posts 1\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2018/03/blog_posts.png\";s:12:\"tmpl_created\";i:1521558047;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/blog-posts-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:26:\"[\"Archive\",\"Blog\",\"posts\"]\";s:10:\"menu_order\";i:118;s:16:\"popularity_index\";i:131;s:11:\"trend_index\";i:152;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:432;a:20:{s:4:\"tmpl\";i:974;s:2:\"id\";i:13229;s:5:\"title\";s:31:\"Interior Design – Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/Contact-Us.png\";s:12:\"tmpl_created\";i:1586148677;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/interior-design-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:118;s:16:\"popularity_index\";i:395;s:11:\"trend_index\";i:337;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:433;a:20:{s:4:\"tmpl\";i:959;s:2:\"id\";i:12948;s:5:\"title\";s:29:\"Photography – Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Home_s.png\";s:12:\"tmpl_created\";i:1582093442;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/photography-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:119;s:16:\"popularity_index\";i:241;s:11:\"trend_index\";i:201;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:434;a:20:{s:4:\"tmpl\";i:960;s:2:\"id\";i:12798;s:5:\"title\";s:25:\"Photography – About\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/About_s.png\";s:12:\"tmpl_created\";i:1582093446;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/photography-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:120;s:16:\"popularity_index\";i:499;s:11:\"trend_index\";i:374;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:435;a:20:{s:4:\"tmpl\";i:484;s:2:\"id\";i:5283;s:5:\"title\";s:9:\"Clients 1\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_2.png\";s:12:\"tmpl_created\";i:1520443478;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/clients-1-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:120;s:16:\"popularity_index\";i:294;s:11:\"trend_index\";i:202;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:436;a:20:{s:4:\"tmpl\";i:961;s:2:\"id\";i:12868;s:5:\"title\";s:27:\"Photography – Contact\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Contact_s.png\";s:12:\"tmpl_created\";i:1582093450;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/photography-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:121;s:16:\"popularity_index\";i:531;s:11:\"trend_index\";i:350;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:437;a:20:{s:4:\"tmpl\";i:962;s:2:\"id\";i:13056;s:5:\"title\";s:28:\"Photography – Wildlife\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/02/Wildlife_s.png\";s:12:\"tmpl_created\";i:1582093454;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/photography-wildlife/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:122;s:16:\"popularity_index\";i:579;s:11:\"trend_index\";i:656;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:438;a:20:{s:4:\"tmpl\";i:487;s:2:\"id\";i:5306;s:5:\"title\";s:10:\"Clients 10\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_3.png\";s:12:\"tmpl_created\";i:1520443484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:122;s:16:\"popularity_index\";i:657;s:11:\"trend_index\";i:581;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:439;a:20:{s:4:\"tmpl\";i:963;s:2:\"id\";i:12922;s:5:\"title\";s:37:\"Photography – Glowing Jellyfish\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/02/Jellyfish_S.png\";s:12:\"tmpl_created\";i:1582093457;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/photography-glowing-jellyfish/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:123;s:16:\"popularity_index\";i:628;s:11:\"trend_index\";i:532;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:440;a:20:{s:4:\"tmpl\";i:964;s:2:\"id\";i:12875;s:5:\"title\";s:36:\"Photography – Fluttering Birds\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/Birds_s.png\";s:12:\"tmpl_created\";i:1582093461;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/photography-fluttering-birds/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:124;s:16:\"popularity_index\";i:693;s:11:\"trend_index\";i:766;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:441;a:20:{s:4:\"tmpl\";i:965;s:2:\"id\";i:12962;s:5:\"title\";s:26:\"Photography – Nature\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Nature_s.png\";s:12:\"tmpl_created\";i:1582093465;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/photography-nature/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:125;s:16:\"popularity_index\";i:592;s:11:\"trend_index\";i:778;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:442;a:20:{s:4:\"tmpl\";i:491;s:2:\"id\";i:5341;s:5:\"title\";s:10:\"Clients 11\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_4.png\";s:12:\"tmpl_created\";i:1520443491;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:125;s:16:\"popularity_index\";i:603;s:11:\"trend_index\";i:633;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:443;a:20:{s:4:\"tmpl\";i:966;s:2:\"id\";i:12833;s:5:\"title\";s:38:\"Photography – Blossoming Flowers\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Flowers_s.png\";s:12:\"tmpl_created\";i:1582093469;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/photography-blossoming-flowers/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:126;s:16:\"popularity_index\";i:597;s:11:\"trend_index\";i:750;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:444;a:20:{s:4:\"tmpl\";i:488;s:2:\"id\";i:5315;s:5:\"title\";s:10:\"Clients 12\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_4-1.png\";s:12:\"tmpl_created\";i:1520443486;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:126;s:16:\"popularity_index\";i:485;s:11:\"trend_index\";i:263;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:445;a:20:{s:4:\"tmpl\";i:967;s:2:\"id\";i:12898;s:5:\"title\";s:36:\"Photography – Forest Mushrooms\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/02/Mushrooms_s.png\";s:12:\"tmpl_created\";i:1582093473;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/photography-forest-mushrooms/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:127;s:16:\"popularity_index\";i:667;s:11:\"trend_index\";i:649;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:446;a:20:{s:4:\"tmpl\";i:968;s:2:\"id\";i:12994;s:5:\"title\";s:24:\"Photography – Pets\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Pets_s.png\";s:12:\"tmpl_created\";i:1582093477;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/photography-pets/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:128;s:16:\"popularity_index\";i:612;s:11:\"trend_index\";i:508;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:447;a:20:{s:4:\"tmpl\";i:969;s:2:\"id\";i:12805;s:5:\"title\";s:37:\"Photography – B&W Portraits\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/Black_s.png\";s:12:\"tmpl_created\";i:1582093481;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/photography-bw-portraits/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:129;s:16:\"popularity_index\";i:695;s:11:\"trend_index\";i:735;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:448;a:20:{s:4:\"tmpl\";i:490;s:2:\"id\";i:5333;s:5:\"title\";s:10:\"Clients 13\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_6.png\";s:12:\"tmpl_created\";i:1520443489;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:129;s:16:\"popularity_index\";i:234;s:11:\"trend_index\";i:128;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:449;a:20:{s:4:\"tmpl\";i:970;s:2:\"id\";i:13031;s:5:\"title\";s:33:\"Photography – Vivid Parrots\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Parrots_s.png\";s:12:\"tmpl_created\";i:1582093484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/photography-vivid-parrots/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:130;s:16:\"popularity_index\";i:660;s:11:\"trend_index\";i:643;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:450;a:20:{s:4:\"tmpl\";i:496;s:2:\"id\";i:5389;s:5:\"title\";s:10:\"Clients 14\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_9.png\";s:12:\"tmpl_created\";i:1520443501;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:130;s:16:\"popularity_index\";i:407;s:11:\"trend_index\";i:307;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:451;a:20:{s:4:\"tmpl\";i:940;s:2:\"id\";i:12621;s:5:\"title\";s:26:\"Magazine – Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/01/Home_s.png\";s:12:\"tmpl_created\";i:1579060604;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/magazine-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:131;s:16:\"popularity_index\";i:167;s:11:\"trend_index\";i:121;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:452;a:20:{s:4:\"tmpl\";i:936;s:2:\"id\";i:12352;s:5:\"title\";s:24:\"Travel – Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/12/Home_s.png\";s:12:\"tmpl_created\";i:1575960464;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/travel-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:132;s:16:\"popularity_index\";i:291;s:11:\"trend_index\";i:194;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:453;a:20:{s:4:\"tmpl\";i:486;s:2:\"id\";i:5298;s:5:\"title\";s:10:\"Clients 15\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_3.png\";s:12:\"tmpl_created\";i:1520443482;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:132;s:16:\"popularity_index\";i:465;s:11:\"trend_index\";i:520;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:454;a:20:{s:4:\"tmpl\";i:932;s:2:\"id\";i:12400;s:5:\"title\";s:20:\"Travel – About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/12/About.png\";s:12:\"tmpl_created\";i:1575960441;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/travel-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:133;s:16:\"popularity_index\";i:444;s:11:\"trend_index\";i:445;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:455;a:20:{s:4:\"tmpl\";i:938;s:2:\"id\";i:12479;s:5:\"title\";s:20:\"Travel – Tours\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/Tours_s.png\";s:12:\"tmpl_created\";i:1575960474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/travel-tours/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:134;s:16:\"popularity_index\";i:539;s:11:\"trend_index\";i:726;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:456;a:20:{s:4:\"tmpl\";i:495;s:2:\"id\";i:5381;s:5:\"title\";s:10:\"Clients 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_9.png\";s:12:\"tmpl_created\";i:1520443499;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:134;s:16:\"popularity_index\";i:198;s:11:\"trend_index\";i:168;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:457;a:20:{s:4:\"tmpl\";i:937;s:2:\"id\";i:12466;s:5:\"title\";s:27:\"Travel – Testimonials\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/12/Testimonials.png\";s:12:\"tmpl_created\";i:1575960469;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/travel-testimonials/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:135;s:16:\"popularity_index\";i:527;s:11:\"trend_index\";i:481;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:458;a:20:{s:4:\"tmpl\";i:935;s:2:\"id\";i:12443;s:5:\"title\";s:22:\"Travel – Gallery\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/Gallery.png\";s:12:\"tmpl_created\";i:1575960459;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/travel-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:136;s:16:\"popularity_index\";i:467;s:11:\"trend_index\";i:501;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:459;a:20:{s:4:\"tmpl\";i:934;s:2:\"id\";i:12431;s:5:\"title\";s:18:\"Travel – FAQ\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/12/FAQ.png\";s:12:\"tmpl_created\";i:1575960453;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/travel-faq/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:137;s:16:\"popularity_index\";i:501;s:11:\"trend_index\";i:387;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:460;a:20:{s:4:\"tmpl\";i:493;s:2:\"id\";i:5357;s:5:\"title\";s:9:\"Clients 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_7.png\";s:12:\"tmpl_created\";i:1520443495;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/clients-2-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:137;s:16:\"popularity_index\";i:341;s:11:\"trend_index\";i:232;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:461;a:20:{s:4:\"tmpl\";i:933;s:2:\"id\";i:12421;s:5:\"title\";s:27:\"Travel – Contact Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/12/Contsct-Us.png\";s:12:\"tmpl_created\";i:1575960445;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/travel-contact-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:138;s:16:\"popularity_index\";i:571;s:11:\"trend_index\";i:536;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:462;a:20:{s:4:\"tmpl\";i:892;s:2:\"id\";i:11763;s:5:\"title\";s:27:\"Portfolio – Home Page\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Homepage_small.png\";s:12:\"tmpl_created\";i:1569428959;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/portfolio-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:139;s:16:\"popularity_index\";i:280;s:11:\"trend_index\";i:241;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:463;a:20:{s:4:\"tmpl\";i:485;s:2:\"id\";i:5290;s:5:\"title\";s:9:\"Clients 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_2.png\";s:12:\"tmpl_created\";i:1520443480;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/clients-3-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:139;s:16:\"popularity_index\";i:545;s:11:\"trend_index\";i:502;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:464;a:20:{s:4:\"tmpl\";i:891;s:2:\"id\";i:11781;s:5:\"title\";s:23:\"Portfolio – About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/09/About_small.png\";s:12:\"tmpl_created\";i:1569428955;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/portfolio-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:140;s:16:\"popularity_index\";i:349;s:11:\"trend_index\";i:290;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:465;a:20:{s:4:\"tmpl\";i:482;s:2:\"id\";i:5266;s:5:\"title\";s:9:\"Clients 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_1.png\";s:12:\"tmpl_created\";i:1520443474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:140;s:16:\"popularity_index\";i:95;s:11:\"trend_index\";i:134;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:466;a:20:{s:4:\"tmpl\";i:890;s:2:\"id\";i:11793;s:5:\"title\";s:26:\"Portfolio – Projects\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Projects_small.png\";s:12:\"tmpl_created\";i:1569428951;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/portfolio-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:141;s:16:\"popularity_index\";i:448;s:11:\"trend_index\";i:467;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:467;a:20:{s:4:\"tmpl\";i:889;s:2:\"id\";i:11800;s:5:\"title\";s:25:\"Portfolio – Contact\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/09/Contact_small.png\";s:12:\"tmpl_created\";i:1569428946;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/portfolio-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:142;s:16:\"popularity_index\";i:494;s:11:\"trend_index\";i:449;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:468;a:20:{s:4:\"tmpl\";i:866;s:2:\"id\";i:11163;s:5:\"title\";s:32:\"Digital Agency – Home Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/07/Home_small.png\";s:12:\"tmpl_created\";i:1564641877;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/digital-agency-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:143;s:16:\"popularity_index\";i:57;s:11:\"trend_index\";i:32;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:469;a:20:{s:4:\"tmpl\";i:483;s:2:\"id\";i:5275;s:5:\"title\";s:9:\"Clients 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_1.png\";s:12:\"tmpl_created\";i:1520443476;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:143;s:16:\"popularity_index\";i:334;s:11:\"trend_index\";i:321;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:470;a:20:{s:4:\"tmpl\";i:492;s:2:\"id\";i:5349;s:5:\"title\";s:9:\"Clients 7\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_7.png\";s:12:\"tmpl_created\";i:1520443493;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:144;s:16:\"popularity_index\";i:233;s:11:\"trend_index\";i:92;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:471;a:20:{s:4:\"tmpl\";i:916;s:2:\"id\";i:12143;s:5:\"title\";s:22:\"Law Firm – About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/11/about.png\";s:12:\"tmpl_created\";i:1572847069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/law-firm-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:146;s:16:\"popularity_index\";i:350;s:11:\"trend_index\";i:344;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:472;a:20:{s:4:\"tmpl\";i:489;s:2:\"id\";i:5324;s:5:\"title\";s:9:\"Clients 8\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_5-1.png\";s:12:\"tmpl_created\";i:1520443488;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:146;s:16:\"popularity_index\";i:526;s:11:\"trend_index\";i:381;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:473;a:20:{s:4:\"tmpl\";i:920;s:2:\"id\";i:12091;s:5:\"title\";s:21:\"Law Firm – Team\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2019/11/team.png\";s:12:\"tmpl_created\";i:1572847113;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/law-firm-team/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:147;s:16:\"popularity_index\";i:318;s:11:\"trend_index\";i:314;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:474;a:20:{s:4:\"tmpl\";i:869;s:2:\"id\";i:11129;s:5:\"title\";s:28:\"Digital Agency – About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/About_small.png\";s:12:\"tmpl_created\";i:1564641889;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/digital-agency-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:148;s:16:\"popularity_index\";i:182;s:11:\"trend_index\";i:166;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:475;a:20:{s:4:\"tmpl\";i:880;s:2:\"id\";i:11572;s:5:\"title\";s:19:\"Gym – Trainer\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Trainer_Small.png\";s:12:\"tmpl_created\";i:1567392934;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-trainer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:149;s:16:\"popularity_index\";i:521;s:11:\"trend_index\";i:590;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:476;a:20:{s:4:\"tmpl\";i:494;s:2:\"id\";i:5368;s:5:\"title\";s:9:\"Clients 9\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_8.png\";s:12:\"tmpl_created\";i:1520443497;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:149;s:16:\"popularity_index\";i:253;s:11:\"trend_index\";i:273;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:477;a:20:{s:4:\"tmpl\";i:917;s:2:\"id\";i:12133;s:5:\"title\";s:24:\"Law Firm – Careers\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/11/careers.png\";s:12:\"tmpl_created\";i:1572847078;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/law-firm-careers/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:151;s:16:\"popularity_index\";i:583;s:11:\"trend_index\";i:640;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:478;a:20:{s:4:\"tmpl\";i:425;s:2:\"id\";i:4436;s:5:\"title\";s:11:\"Contact 16\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_black_2.png\";s:12:\"tmpl_created\";i:1520443293;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:151;s:16:\"popularity_index\";i:161;s:11:\"trend_index\";i:68;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:479;a:20:{s:4:\"tmpl\";i:915;s:2:\"id\";i:12155;s:5:\"title\";s:26:\"Law Firm – Home Page\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2019/11/home.png\";s:12:\"tmpl_created\";i:1572847054;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/law-firm-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:152;s:16:\"popularity_index\";i:193;s:11:\"trend_index\";i:110;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:480;a:20:{s:4:\"tmpl\";i:423;s:2:\"id\";i:4420;s:5:\"title\";s:9:\"Contact 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_black_1.png\";s:12:\"tmpl_created\";i:1520443289;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/contact-1-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:152;s:16:\"popularity_index\";i:196;s:11:\"trend_index\";i:127;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:481;a:20:{s:4:\"tmpl\";i:921;s:2:\"id\";i:12080;s:5:\"title\";s:24:\"Law Firm – Partner\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/11/partner-1.png\";s:12:\"tmpl_created\";i:1572847120;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/law-firm-partner/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:153;s:16:\"popularity_index\";i:556;s:11:\"trend_index\";i:471;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:482;a:20:{s:4:\"tmpl\";i:534;s:2:\"id\";i:5836;s:5:\"title\";s:10:\"Contact 10\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_white_2.png\";s:12:\"tmpl_created\";i:1520443597;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:154;s:16:\"popularity_index\";i:114;s:11:\"trend_index\";i:76;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:483;a:20:{s:4:\"tmpl\";i:865;s:2:\"id\";i:11074;s:5:\"title\";s:31:\"Digital Agency – Services\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/07/Services_small.png\";s:12:\"tmpl_created\";i:1564641872;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/digital-agency-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:154;s:16:\"popularity_index\";i:163;s:11:\"trend_index\";i:170;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:484;a:20:{s:4:\"tmpl\";i:879;s:2:\"id\";i:11506;s:5:\"title\";s:19:\"Gym – Classes\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Classes_Small.png\";s:12:\"tmpl_created\";i:1567392930;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-classes/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:155;s:16:\"popularity_index\";i:514;s:11:\"trend_index\";i:554;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:485;a:20:{s:4:\"tmpl\";i:535;s:2:\"id\";i:5844;s:5:\"title\";s:10:\"Contact 11\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_black_2.png\";s:12:\"tmpl_created\";i:1520443599;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:156;s:16:\"popularity_index\";i:289;s:11:\"trend_index\";i:313;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:486;a:20:{s:4:\"tmpl\";i:922;s:2:\"id\";i:12044;s:5:\"title\";s:24:\"Law Firm – Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/11/contsct_us.png\";s:12:\"tmpl_created\";i:1572847130;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/law-firm-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:157;s:16:\"popularity_index\";i:437;s:11:\"trend_index\";i:304;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:487;a:20:{s:4:\"tmpl\";i:430;s:2:\"id\";i:4476;s:5:\"title\";s:10:\"Contact 15\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_4.png\";s:12:\"tmpl_created\";i:1520443303;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:157;s:16:\"popularity_index\";i:229;s:11:\"trend_index\";i:187;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:488;a:20:{s:4:\"tmpl\";i:918;s:2:\"id\";i:12124;s:5:\"title\";s:25:\"Law Firm – Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/11/services.png\";s:12:\"tmpl_created\";i:1572847096;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/law-firm-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:158;s:16:\"popularity_index\";i:433;s:11:\"trend_index\";i:296;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:489;a:20:{s:4:\"tmpl\";i:864;s:2:\"id\";i:11056;s:5:\"title\";s:35:\"Digital Agency – Social Media\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2019/07/Social-Media_small.png\";s:12:\"tmpl_created\";i:1564641867;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/digital-agency-social-media/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:159;s:16:\"popularity_index\";i:297;s:11:\"trend_index\";i:361;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:490;a:20:{s:4:\"tmpl\";i:476;s:2:\"id\";i:5214;s:5:\"title\";s:10:\"Contact 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_2.png\";s:12:\"tmpl_created\";i:1520443462;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/contact-16-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:159;s:16:\"popularity_index\";i:194;s:11:\"trend_index\";i:106;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:491;a:20:{s:4:\"tmpl\";i:878;s:2:\"id\";i:11536;s:5:\"title\";s:19:\"Gym – Fitness\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Fitness_Small.png\";s:12:\"tmpl_created\";i:1567392927;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:160;s:16:\"popularity_index\";i:621;s:11:\"trend_index\";i:674;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:492;a:20:{s:4:\"tmpl\";i:882;s:2:\"id\";i:11545;s:5:\"title\";s:21:\"Gym – Home Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/08/Home_Small.png\";s:12:\"tmpl_created\";i:1567392943;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/gym-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:161;s:16:\"popularity_index\";i:310;s:11:\"trend_index\";i:229;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:493;a:20:{s:4:\"tmpl\";i:919;s:2:\"id\";i:12116;s:5:\"title\";s:24:\"Law Firm – Service\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/11/family_law.png\";s:12:\"tmpl_created\";i:1572847105;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/law-firm-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:162;s:16:\"popularity_index\";i:489;s:11:\"trend_index\";i:339;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:494;a:20:{s:4:\"tmpl\";i:478;s:2:\"id\";i:5230;s:5:\"title\";s:10:\"Contact 17\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_3.png\";s:12:\"tmpl_created\";i:1520443466;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:162;s:16:\"popularity_index\";i:339;s:11:\"trend_index\";i:335;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:495;a:20:{s:4:\"tmpl\";i:868;s:2:\"id\";i:11094;s:5:\"title\";s:30:\"Digital Agency – Clients\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/07/Clients_small.png\";s:12:\"tmpl_created\";i:1564641885;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/digital-agency-clients/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:163;s:16:\"popularity_index\";i:424;s:11:\"trend_index\";i:424;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:496;a:20:{s:4:\"tmpl\";i:481;s:2:\"id\";i:5257;s:5:\"title\";s:10:\"Contact 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_5.png\";s:12:\"tmpl_created\";i:1520443472;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:163;s:16:\"popularity_index\";i:438;s:11:\"trend_index\";i:490;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:497;a:20:{s:4:\"tmpl\";i:881;s:2:\"id\";i:11478;s:5:\"title\";s:17:\"Gym – About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/08/About_Small.png\";s:12:\"tmpl_created\";i:1567392939;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/gym-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:164;s:16:\"popularity_index\";i:481;s:11:\"trend_index\";i:579;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:498;a:20:{s:4:\"tmpl\";i:532;s:2:\"id\";i:5820;s:5:\"title\";s:9:\"Contact 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_white_1.png\";s:12:\"tmpl_created\";i:1520443593;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:166;s:16:\"popularity_index\";i:183;s:11:\"trend_index\";i:357;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:499;a:20:{s:4:\"tmpl\";i:877;s:2:\"id\";i:11563;s:5:\"title\";s:19:\"Gym – Pricing\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Pricing_Small.png\";s:12:\"tmpl_created\";i:1567392923;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-pricing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:166;s:16:\"popularity_index\";i:577;s:11:\"trend_index\";i:736;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:500;a:20:{s:4:\"tmpl\";i:422;s:2:\"id\";i:4411;s:5:\"title\";s:9:\"Contact 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_1.png\";s:12:\"tmpl_created\";i:1520443287;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/contact-3-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:167;s:16:\"popularity_index\";i:113;s:11:\"trend_index\";i:217;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:501;a:20:{s:4:\"tmpl\";i:867;s:2:\"id\";i:11034;s:5:\"title\";s:30:\"Digital Agency – Contact\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2019/07/Contsct-Us_small.png\";s:12:\"tmpl_created\";i:1564641881;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/contact-digital-agency/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:168;s:16:\"popularity_index\";i:191;s:11:\"trend_index\";i:156;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:502;a:20:{s:4:\"tmpl\";i:533;s:2:\"id\";i:5828;s:5:\"title\";s:9:\"Contact 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_black_1.png\";s:12:\"tmpl_created\";i:1520443595;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:170;s:16:\"popularity_index\";i:312;s:11:\"trend_index\";i:495;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:503;a:20:{s:4:\"tmpl\";i:876;s:2:\"id\";i:11528;s:5:\"title\";s:19:\"Gym – Contact\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Contact_Small.png\";s:12:\"tmpl_created\";i:1567392917;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:171;s:16:\"popularity_index\";i:505;s:11:\"trend_index\";i:624;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:504;a:20:{s:4:\"tmpl\";i:424;s:2:\"id\";i:4428;s:5:\"title\";s:9:\"Contact 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_2.png\";s:12:\"tmpl_created\";i:1520443291;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:171;s:16:\"popularity_index\";i:118;s:11:\"trend_index\";i:131;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:505;a:20:{s:4:\"tmpl\";i:426;s:2:\"id\";i:4444;s:5:\"title\";s:9:\"Contact 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_1.png\";s:12:\"tmpl_created\";i:1520443295;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:174;s:16:\"popularity_index\";i:84;s:11:\"trend_index\";i:93;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:506;a:20:{s:4:\"tmpl\";i:432;s:2:\"id\";i:4492;s:5:\"title\";s:9:\"Contact 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_3.png\";s:12:\"tmpl_created\";i:1520443307;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/contact-5-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:176;s:16:\"popularity_index\";i:37;s:11:\"trend_index\";i:31;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:507;a:20:{s:4:\"tmpl\";i:427;s:2:\"id\";i:4452;s:5:\"title\";s:9:\"Contact 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_black_1.png\";s:12:\"tmpl_created\";i:1520443296;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:178;s:16:\"popularity_index\";i:139;s:11:\"trend_index\";i:150;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:508;a:20:{s:4:\"tmpl\";i:429;s:2:\"id\";i:4468;s:5:\"title\";s:9:\"Contact 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_3.png\";s:12:\"tmpl_created\";i:1520443301;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:179;s:16:\"popularity_index\";i:127;s:11:\"trend_index\";i:72;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:509;a:20:{s:4:\"tmpl\";i:431;s:2:\"id\";i:4484;s:5:\"title\";s:9:\"Contact 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_black_3.png\";s:12:\"tmpl_created\";i:1520443305;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:182;s:16:\"popularity_index\";i:328;s:11:\"trend_index\";i:260;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:510;a:20:{s:4:\"tmpl\";i:428;s:2:\"id\";i:4460;s:5:\"title\";s:9:\"Contact 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_2.png\";s:12:\"tmpl_created\";i:1520443298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:184;s:16:\"popularity_index\";i:99;s:11:\"trend_index\";i:80;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:511;a:20:{s:4:\"tmpl\";i:613;s:2:\"id\";i:5558;s:5:\"title\";s:5:\"CTA 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_2.png\";s:12:\"tmpl_created\";i:1520520684;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:185;s:16:\"popularity_index\";i:129;s:11:\"trend_index\";i:69;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:512;a:20:{s:4:\"tmpl\";i:634;s:2:\"id\";i:5939;s:5:\"title\";s:6:\"CTA 10\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_13-1.png\";s:12:\"tmpl_created\";i:1520520760;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:187;s:16:\"popularity_index\";i:190;s:11:\"trend_index\";i:118;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:513;a:20:{s:4:\"tmpl\";i:633;s:2:\"id\";i:5930;s:5:\"title\";s:6:\"CTA 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_15.png\";s:12:\"tmpl_created\";i:1520520758;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:190;s:16:\"popularity_index\";i:76;s:11:\"trend_index\";i:84;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:514;a:20:{s:4:\"tmpl\";i:632;s:2:\"id\";i:5921;s:5:\"title\";s:6:\"CTA 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_14.png\";s:12:\"tmpl_created\";i:1520520757;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:192;s:16:\"popularity_index\";i:278;s:11:\"trend_index\";i:234;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:515;a:20:{s:4:\"tmpl\";i:618;s:2:\"id\";i:5607;s:5:\"title\";s:6:\"CTA 13\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_5.png\";s:12:\"tmpl_created\";i:1520520695;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:194;s:16:\"popularity_index\";i:42;s:11:\"trend_index\";i:11;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:516;a:20:{s:4:\"tmpl\";i:574;s:2:\"id\";i:6017;s:5:\"title\";s:6:\"CTA 14\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_14.png\";s:12:\"tmpl_created\";i:1520520331;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:196;s:16:\"popularity_index\";i:152;s:11:\"trend_index\";i:122;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:517;a:20:{s:4:\"tmpl\";i:628;s:2:\"id\";i:5885;s:5:\"title\";s:6:\"CTA 15\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_11.png\";s:12:\"tmpl_created\";i:1520520751;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:197;s:16:\"popularity_index\";i:274;s:11:\"trend_index\";i:256;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:518;a:20:{s:4:\"tmpl\";i:627;s:2:\"id\";i:5877;s:5:\"title\";s:6:\"CTA 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_10.png\";s:12:\"tmpl_created\";i:1520520749;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:200;s:16:\"popularity_index\";i:564;s:11:\"trend_index\";i:677;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:519;a:20:{s:4:\"tmpl\";i:625;s:2:\"id\";i:5860;s:5:\"title\";s:6:\"CTA 17\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_9.png\";s:12:\"tmpl_created\";i:1520520746;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:201;s:16:\"popularity_index\";i:120;s:11:\"trend_index\";i:63;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:520;a:20:{s:4:\"tmpl\";i:626;s:2:\"id\";i:5869;s:5:\"title\";s:6:\"CTA 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_10.png\";s:12:\"tmpl_created\";i:1520520747;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:204;s:16:\"popularity_index\";i:345;s:11:\"trend_index\";i:486;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:521;a:20:{s:4:\"tmpl\";i:611;s:2:\"id\";i:5542;s:5:\"title\";s:6:\"CTA 19\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_1.png\";s:12:\"tmpl_created\";i:1520520681;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:205;s:16:\"popularity_index\";i:169;s:11:\"trend_index\";i:270;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:522;a:20:{s:4:\"tmpl\";i:614;s:2:\"id\";i:5567;s:5:\"title\";s:5:\"CTA 2\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_2.png\";s:12:\"tmpl_created\";i:1520520685;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:207;s:16:\"popularity_index\";i:143;s:11:\"trend_index\";i:225;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:523;a:20:{s:4:\"tmpl\";i:629;s:2:\"id\";i:5893;s:5:\"title\";s:6:\"CTA 21\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_12.png\";s:12:\"tmpl_created\";i:1520520752;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:210;s:16:\"popularity_index\";i:259;s:11:\"trend_index\";i:457;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:524;a:20:{s:4:\"tmpl\";i:619;s:2:\"id\";i:5634;s:5:\"title\";s:6:\"CTA 24\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_6.png\";s:12:\"tmpl_created\";i:1520520699;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-24/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:212;s:16:\"popularity_index\";i:188;s:11:\"trend_index\";i:255;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:525;a:20:{s:4:\"tmpl\";i:620;s:2:\"id\";i:5642;s:5:\"title\";s:6:\"CTA 25\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_6.png\";s:12:\"tmpl_created\";i:1520520701;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-25/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:214;s:16:\"popularity_index\";i:226;s:11:\"trend_index\";i:262;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:526;a:20:{s:4:\"tmpl\";i:615;s:2:\"id\";i:5583;s:5:\"title\";s:6:\"CTA 26\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_3.png\";s:12:\"tmpl_created\";i:1520520689;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-26/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:216;s:16:\"popularity_index\";i:117;s:11:\"trend_index\";i:117;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:527;a:20:{s:4:\"tmpl\";i:630;s:2:\"id\";i:5904;s:5:\"title\";s:6:\"CTA 27\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_13.png\";s:12:\"tmpl_created\";i:1520520754;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-27/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:217;s:16:\"popularity_index\";i:528;s:11:\"trend_index\";i:517;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:528;a:20:{s:4:\"tmpl\";i:631;s:2:\"id\";i:5912;s:5:\"title\";s:6:\"CTA 28\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_11.png\";s:12:\"tmpl_created\";i:1520520755;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-28/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:219;s:16:\"popularity_index\";i:665;s:11:\"trend_index\";i:702;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:529;a:20:{s:4:\"tmpl\";i:473;s:2:\"id\";i:5189;s:5:\"title\";s:6:\"CTA 29\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_1.png\";s:12:\"tmpl_created\";i:1520443456;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-29/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:221;s:16:\"popularity_index\";i:472;s:11:\"trend_index\";i:631;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:530;a:20:{s:4:\"tmpl\";i:623;s:2:\"id\";i:5667;s:5:\"title\";s:5:\"CTA 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_8.png\";s:12:\"tmpl_created\";i:1520520705;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:222;s:16:\"popularity_index\";i:171;s:11:\"trend_index\";i:250;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:531;a:20:{s:4:\"tmpl\";i:474;s:2:\"id\";i:5198;s:5:\"title\";s:6:\"CTA 30\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_1.png\";s:12:\"tmpl_created\";i:1520443458;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-30/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:225;s:16:\"popularity_index\";i:572;s:11:\"trend_index\";i:511;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:532;a:20:{s:4:\"tmpl\";i:475;s:2:\"id\";i:5206;s:5:\"title\";s:6:\"CTA 31\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_2.png\";s:12:\"tmpl_created\";i:1520443459;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-31/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:226;s:16:\"popularity_index\";i:593;s:11:\"trend_index\";i:611;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:533;a:20:{s:4:\"tmpl\";i:480;s:2:\"id\";i:5249;s:5:\"title\";s:6:\"CTA 32\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_4.png\";s:12:\"tmpl_created\";i:1520443470;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-32/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:228;s:16:\"popularity_index\";i:512;s:11:\"trend_index\";i:409;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:534;a:20:{s:4:\"tmpl\";i:612;s:2:\"id\";i:5550;s:5:\"title\";s:6:\"CTA 33\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_1.png\";s:12:\"tmpl_created\";i:1520520682;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-33/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:231;s:16:\"popularity_index\";i:260;s:11:\"trend_index\";i:562;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:535;a:20:{s:4:\"tmpl\";i:536;s:2:\"id\";i:5852;s:5:\"title\";s:6:\"CTA 34\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2018/03/form_1.png\";s:12:\"tmpl_created\";i:1520443600;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-34/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:232;s:16:\"popularity_index\";i:563;s:11:\"trend_index\";i:828;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:536;a:20:{s:4:\"tmpl\";i:624;s:2:\"id\";i:5675;s:5:\"title\";s:5:\"CTA 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_8.png\";s:12:\"tmpl_created\";i:1520520707;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:235;s:16:\"popularity_index\";i:391;s:11:\"trend_index\";i:484;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:537;a:20:{s:4:\"tmpl\";i:616;s:2:\"id\";i:5591;s:5:\"title\";s:5:\"CTA 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_4.png\";s:12:\"tmpl_created\";i:1520520691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:237;s:16:\"popularity_index\";i:133;s:11:\"trend_index\";i:130;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:538;a:20:{s:4:\"tmpl\";i:617;s:2:\"id\";i:5599;s:5:\"title\";s:5:\"CTA 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_4.png\";s:12:\"tmpl_created\";i:1520520693;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:239;s:16:\"popularity_index\";i:252;s:11:\"trend_index\";i:362;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:539;a:20:{s:4:\"tmpl\";i:514;s:2:\"id\";i:5575;s:5:\"title\";s:5:\"CTA 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_3.png\";s:12:\"tmpl_created\";i:1520443543;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:240;s:16:\"popularity_index\";i:13;s:11:\"trend_index\";i:586;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:540;a:20:{s:4:\"tmpl\";i:622;s:2:\"id\";i:5658;s:5:\"title\";s:5:\"CTA 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_7.png\";s:12:\"tmpl_created\";i:1520520704;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:243;s:16:\"popularity_index\";i:187;s:11:\"trend_index\";i:235;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:541;a:20:{s:4:\"tmpl\";i:621;s:2:\"id\";i:5650;s:5:\"title\";s:5:\"CTA 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_7.png\";s:12:\"tmpl_created\";i:1520520702;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:244;s:16:\"popularity_index\";i:94;s:11:\"trend_index\";i:148;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:542;a:20:{s:4:\"tmpl\";i:1061;s:2:\"id\";i:15407;s:5:\"title\";s:24:\"Dance Studio – 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/10/404.jpg\";s:12:\"tmpl_created\";i:1603181958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/dance-studio-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:22:\"[\"404\",\"Dance Studio\"]\";s:10:\"menu_order\";i:246;s:16:\"popularity_index\";i:783;s:11:\"trend_index\";i:710;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:543;a:20:{s:4:\"tmpl\";i:1062;s:2:\"id\";i:15400;s:5:\"title\";s:27:\"Dance Studio – Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/10/Footer.jpg\";s:12:\"tmpl_created\";i:1603181989;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/dance-studio-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:25:\"[\"Dance Studio\",\"Footer\"]\";s:10:\"menu_order\";i:247;s:16:\"popularity_index\";i:586;s:11:\"trend_index\";i:243;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:544;a:20:{s:4:\"tmpl\";i:1063;s:2:\"id\";i:15391;s:5:\"title\";s:27:\"Dance Studio – Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/10/Header.jpg\";s:12:\"tmpl_created\";i:1603182011;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/dance-studio-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:25:\"[\"Dance Studio\",\"Header\"]\";s:10:\"menu_order\";i:248;s:16:\"popularity_index\";i:352;s:11:\"trend_index\";i:67;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:545;a:20:{s:4:\"tmpl\";i:874;s:2:\"id\";i:11192;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/07/Footer_small.jpg\";s:12:\"tmpl_created\";i:1564642399;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/digital-agency-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:39:\"[\"Digital Agency\",\"Footer\",\"Marketing\"]\";s:10:\"menu_order\";i:250;s:16:\"popularity_index\";i:172;s:11:\"trend_index\";i:105;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:546;a:20:{s:4:\"tmpl\";i:873;s:2:\"id\";i:11198;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-digital-marketing-agency.png\";s:12:\"tmpl_created\";i:1564642395;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/digital-agency-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:39:\"[\"Digital Agency\",\"Header\",\"Marketing\"]\";s:10:\"menu_order\";i:251;s:16:\"popularity_index\";i:34;s:11:\"trend_index\";i:10;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:547;a:20:{s:4:\"tmpl\";i:872;s:2:\"id\";i:11204;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/07/404_small.jpg\";s:12:\"tmpl_created\";i:1564642389;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/digital-agency-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:36:\"[\"404\",\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:253;s:16:\"popularity_index\";i:301;s:11:\"trend_index\";i:239;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:548;a:20:{s:4:\"tmpl\";i:871;s:2:\"id\";i:11220;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/08/Archive_small1.png\";s:12:\"tmpl_created\";i:1564642385;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/digital-agency-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:255;s:16:\"popularity_index\";i:116;s:11:\"trend_index\";i:73;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:549;a:20:{s:4:\"tmpl\";i:870;s:2:\"id\";i:11231;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/Post_small1.png\";s:12:\"tmpl_created\";i:1564642380;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/digital-agency/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:257;s:16:\"popularity_index\";i:145;s:11:\"trend_index\";i:71;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:550;a:20:{s:4:\"tmpl\";i:520;s:2:\"id\";i:5711;s:5:\"title\";s:5:\"FAQ 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_2.png\";s:12:\"tmpl_created\";i:1520443571;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:260;s:16:\"popularity_index\";i:200;s:11:\"trend_index\";i:231;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:551;a:20:{s:4:\"tmpl\";i:523;s:2:\"id\";i:5737;s:5:\"title\";s:6:\"FAQ 10\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_4.png\";s:12:\"tmpl_created\";i:1520443576;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/faq-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:261;s:16:\"popularity_index\";i:155;s:11:\"trend_index\";i:112;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:552;a:20:{s:4:\"tmpl\";i:524;s:2:\"id\";i:5746;s:5:\"title\";s:6:\"FAQ 11\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_4.png\";s:12:\"tmpl_created\";i:1520443578;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/faq-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:264;s:16:\"popularity_index\";i:212;s:11:\"trend_index\";i:305;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:553;a:20:{s:4:\"tmpl\";i:519;s:2:\"id\";i:5703;s:5:\"title\";s:6:\"FAQ 13\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_2.png\";s:12:\"tmpl_created\";i:1520443569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/faq-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:265;s:16:\"popularity_index\";i:29;s:11:\"trend_index\";i:38;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:554;a:20:{s:4:\"tmpl\";i:521;s:2:\"id\";i:5719;s:5:\"title\";s:5:\"FAQ 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_3.png\";s:12:\"tmpl_created\";i:1520443573;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:267;s:16:\"popularity_index\";i:125;s:11:\"trend_index\";i:251;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:555;a:20:{s:4:\"tmpl\";i:522;s:2:\"id\";i:5729;s:5:\"title\";s:5:\"FAQ 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_3.png\";s:12:\"tmpl_created\";i:1520443575;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:269;s:16:\"popularity_index\";i:319;s:11:\"trend_index\";i:327;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:556;a:20:{s:4:\"tmpl\";i:525;s:2:\"id\";i:5755;s:5:\"title\";s:5:\"FAQ 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_5.png\";s:12:\"tmpl_created\";i:1520443580;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:271;s:16:\"popularity_index\";i:112;s:11:\"trend_index\";i:180;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:557;a:20:{s:4:\"tmpl\";i:526;s:2:\"id\";i:5764;s:5:\"title\";s:5:\"FAQ 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_5.png\";s:12:\"tmpl_created\";i:1520443582;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:273;s:16:\"popularity_index\";i:338;s:11:\"trend_index\";i:474;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:558;a:20:{s:4:\"tmpl\";i:517;s:2:\"id\";i:5684;s:5:\"title\";s:5:\"FAQ 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_1.png\";s:12:\"tmpl_created\";i:1520443565;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:274;s:16:\"popularity_index\";i:74;s:11:\"trend_index\";i:193;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:559;a:20:{s:4:\"tmpl\";i:518;s:2:\"id\";i:5693;s:5:\"title\";s:5:\"FAQ 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_1.png\";s:12:\"tmpl_created\";i:1520443567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:276;s:16:\"popularity_index\";i:224;s:11:\"trend_index\";i:515;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:560;a:20:{s:4:\"tmpl\";i:548;s:2:\"id\";i:6053;s:5:\"title\";s:10:\"Features 1\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_5.png\";s:12:\"tmpl_created\";i:1520443645;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:277;s:16:\"popularity_index\";i:179;s:11:\"trend_index\";i:463;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:561;a:20:{s:4:\"tmpl\";i:542;s:2:\"id\";i:5991;s:5:\"title\";s:11:\"Features 10\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_4.png\";s:12:\"tmpl_created\";i:1520443632;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/features-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:279;s:16:\"popularity_index\";i:135;s:11:\"trend_index\";i:265;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:562;a:20:{s:4:\"tmpl\";i:547;s:2:\"id\";i:6044;s:5:\"title\";s:11:\"Features 11\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_5.png\";s:12:\"tmpl_created\";i:1520443643;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/features-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:280;s:16:\"popularity_index\";i:70;s:11:\"trend_index\";i:163;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:563;a:20:{s:4:\"tmpl\";i:566;s:2:\"id\";i:6212;s:5:\"title\";s:11:\"Features 12\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_7.png\";s:12:\"tmpl_created\";i:1520443684;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/features-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:281;s:16:\"popularity_index\";i:81;s:11:\"trend_index\";i:98;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:564;a:20:{s:4:\"tmpl\";i:567;s:2:\"id\";i:6220;s:5:\"title\";s:10:\"Features 2\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_8.png\";s:12:\"tmpl_created\";i:1520443685;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:282;s:16:\"popularity_index\";i:88;s:11:\"trend_index\";i:189;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:565;a:20:{s:4:\"tmpl\";i:541;s:2:\"id\";i:5983;s:5:\"title\";s:10:\"Features 3\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_3.png\";s:12:\"tmpl_created\";i:1520443630;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:283;s:16:\"popularity_index\";i:231;s:11:\"trend_index\";i:351;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:566;a:20:{s:4:\"tmpl\";i:540;s:2:\"id\";i:5974;s:5:\"title\";s:10:\"Features 4\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_3.png\";s:12:\"tmpl_created\";i:1520443629;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:286;s:16:\"popularity_index\";i:69;s:11:\"trend_index\";i:181;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:567;a:20:{s:4:\"tmpl\";i:516;s:2:\"id\";i:5624;s:5:\"title\";s:10:\"Features 5\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_1.png\";s:12:\"tmpl_created\";i:1520443553;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:287;s:16:\"popularity_index\";i:93;s:11:\"trend_index\";i:352;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:568;a:20:{s:4:\"tmpl\";i:515;s:2:\"id\";i:5615;s:5:\"title\";s:10:\"Features 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_5.png\";s:12:\"tmpl_created\";i:1520443551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:290;s:16:\"popularity_index\";i:41;s:11:\"trend_index\";i:119;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:569;a:20:{s:4:\"tmpl\";i:539;s:2:\"id\";i:5963;s:5:\"title\";s:10:\"Features 7\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_2.png\";s:12:\"tmpl_created\";i:1520443626;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:291;s:16:\"popularity_index\";i:67;s:11:\"trend_index\";i:133;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:570;a:20:{s:4:\"tmpl\";i:565;s:2:\"id\";i:6204;s:5:\"title\";s:10:\"Features 8\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_6.png\";s:12:\"tmpl_created\";i:1520443681;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:292;s:16:\"popularity_index\";i:217;s:11:\"trend_index\";i:223;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:571;a:20:{s:4:\"tmpl\";i:564;s:2:\"id\";i:6196;s:5:\"title\";s:10:\"Features 9\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_6.png\";s:12:\"tmpl_created\";i:1520443680;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:294;s:16:\"popularity_index\";i:106;s:11:\"trend_index\";i:113;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:572;a:20:{s:4:\"tmpl\";i:1033;s:2:\"id\";i:15033;s:5:\"title\";s:28:\"Flooring Company – 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/08/404.png\";s:12:\"tmpl_created\";i:1597739459;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/flooring-company-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:45:\"[\"404\",\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:296;s:16:\"popularity_index\";i:655;s:11:\"trend_index\";i:671;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:573;a:20:{s:4:\"tmpl\";i:1032;s:2:\"id\";i:15042;s:5:\"title\";s:32:\"Flooring Company – Archive\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/08/Blog.png\";s:12:\"tmpl_created\";i:1597739084;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/blocks/flooring-company-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:297;s:16:\"popularity_index\";i:320;s:11:\"trend_index\";i:275;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:574;a:20:{s:4:\"tmpl\";i:1031;s:2:\"id\";i:15017;s:5:\"title\";s:31:\"Flooring Company – Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Footer.png\";s:12:\"tmpl_created\";i:1597738933;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/flooring-company-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:48:\"[\"Flooring company\",\"Flooring website\",\"Footer\"]\";s:10:\"menu_order\";i:299;s:16:\"popularity_index\";i:323;s:11:\"trend_index\";i:192;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:575;a:20:{s:4:\"tmpl\";i:1030;s:2:\"id\";i:15007;s:5:\"title\";s:31:\"Flooring Company – Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Header.png\";s:12:\"tmpl_created\";i:1597738896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/flooring-company-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:48:\"[\"Flooring company\",\"Flooring website\",\"Header\"]\";s:10:\"menu_order\";i:302;s:16:\"popularity_index\";i:459;s:11:\"trend_index\";i:333;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:576;a:20:{s:4:\"tmpl\";i:1029;s:2:\"id\";i:15052;s:5:\"title\";s:36:\"Flooring Company – Single post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Single.png\";s:12:\"tmpl_created\";i:1597738858;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/blocks/flooring-company-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:303;s:16:\"popularity_index\";i:392;s:11:\"trend_index\";i:226;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:577;a:20:{s:4:\"tmpl\";i:651;s:2:\"id\";i:7837;s:5:\"title\";s:9:\"footer 01\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.14.jpg\";s:12:\"tmpl_created\";i:1524582852;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-01/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:305;s:16:\"popularity_index\";i:495;s:11:\"trend_index\";i:539;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:578;a:20:{s:4:\"tmpl\";i:647;s:2:\"id\";i:7937;s:5:\"title\";s:10:\"footer 010\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.5.jpg\";s:12:\"tmpl_created\";i:1524582665;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-010/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:308;s:16:\"popularity_index\";i:185;s:11:\"trend_index\";i:115;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:579;a:20:{s:4:\"tmpl\";i:646;s:2:\"id\";i:7950;s:5:\"title\";s:10:\"footer 011\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.4.jpg\";s:12:\"tmpl_created\";i:1524582631;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-011/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:310;s:16:\"popularity_index\";i:244;s:11:\"trend_index\";i:203;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:580;a:20:{s:4:\"tmpl\";i:645;s:2:\"id\";i:7959;s:5:\"title\";s:10:\"footer 012\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.3.jpg\";s:12:\"tmpl_created\";i:1524582605;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-012/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:311;s:16:\"popularity_index\";i:177;s:11:\"trend_index\";i:140;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:581;a:20:{s:4:\"tmpl\";i:644;s:2:\"id\";i:7982;s:5:\"title\";s:10:\"footer 013\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.2.jpg\";s:12:\"tmpl_created\";i:1524582468;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-013/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:314;s:16:\"popularity_index\";i:209;s:11:\"trend_index\";i:212;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:582;a:20:{s:4:\"tmpl\";i:643;s:2:\"id\";i:7997;s:5:\"title\";s:10:\"footer 014\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.1.jpg\";s:12:\"tmpl_created\";i:1524582343;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-014/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:316;s:16:\"popularity_index\";i:64;s:11:\"trend_index\";i:41;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:583;a:20:{s:4:\"tmpl\";i:693;s:2:\"id\";i:9119;s:5:\"title\";s:10:\"footer 015\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/Footer_GetStarted_350.png\";s:12:\"tmpl_created\";i:1532428138;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/demo/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:317;s:16:\"popularity_index\";i:240;s:11:\"trend_index\";i:154;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:584;a:20:{s:4:\"tmpl\";i:652;s:2:\"id\";i:7852;s:5:\"title\";s:9:\"footer 02\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.13.jpg\";s:12:\"tmpl_created\";i:1524582875;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-02/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:320;s:16:\"popularity_index\";i:199;s:11:\"trend_index\";i:96;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:585;a:20:{s:4:\"tmpl\";i:653;s:2:\"id\";i:7862;s:5:\"title\";s:9:\"footer 03\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.12.jpg\";s:12:\"tmpl_created\";i:1524582903;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-03/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:321;s:16:\"popularity_index\";i:137;s:11:\"trend_index\";i:91;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:586;a:20:{s:4:\"tmpl\";i:654;s:2:\"id\";i:7871;s:5:\"title\";s:9:\"footer 04\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.11.jpg\";s:12:\"tmpl_created\";i:1524582927;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-04/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:323;s:16:\"popularity_index\";i:97;s:11:\"trend_index\";i:55;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:587;a:20:{s:4:\"tmpl\";i:655;s:2:\"id\";i:7884;s:5:\"title\";s:9:\"footer 05\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.10.jpg\";s:12:\"tmpl_created\";i:1524582944;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-05/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:325;s:16:\"popularity_index\";i:92;s:11:\"trend_index\";i:109;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:588;a:20:{s:4:\"tmpl\";i:656;s:2:\"id\";i:7892;s:5:\"title\";s:9:\"footer 06\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.9.jpg\";s:12:\"tmpl_created\";i:1524583015;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-06/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:326;s:16:\"popularity_index\";i:132;s:11:\"trend_index\";i:146;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:589;a:20:{s:4:\"tmpl\";i:650;s:2:\"id\";i:7904;s:5:\"title\";s:9:\"footer 07\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.8.jpg\";s:12:\"tmpl_created\";i:1524582814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-07/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:328;s:16:\"popularity_index\";i:203;s:11:\"trend_index\";i:186;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:590;a:20:{s:4:\"tmpl\";i:649;s:2:\"id\";i:7917;s:5:\"title\";s:9:\"footer 08\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.7.jpg\";s:12:\"tmpl_created\";i:1524582788;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-08/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:329;s:16:\"popularity_index\";i:89;s:11:\"trend_index\";i:144;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:591;a:20:{s:4:\"tmpl\";i:648;s:2:\"id\";i:7927;s:5:\"title\";s:9:\"footer 09\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.6.jpg\";s:12:\"tmpl_created\";i:1524582691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-09/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:331;s:16:\"popularity_index\";i:178;s:11:\"trend_index\";i:100;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:592;a:20:{s:4:\"tmpl\";i:642;s:2:\"id\";i:4676;s:5:\"title\";s:8:\"Footer 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_7.png\";s:12:\"tmpl_created\";i:1522014215;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/footer_7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"Footer\"]\";s:10:\"menu_order\";i:338;s:16:\"popularity_index\";i:237;s:11:\"trend_index\";i:346;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:593;a:20:{s:4:\"tmpl\";i:637;s:2:\"id\";i:7627;s:5:\"title\";s:8:\"Footer 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_hero_1.png\";s:12:\"tmpl_created\";i:1521547332;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/footer-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"Footer\"]\";s:10:\"menu_order\";i:340;s:16:\"popularity_index\";i:100;s:11:\"trend_index\";i:83;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:594;a:20:{s:4:\"tmpl\";i:638;s:2:\"id\";i:7638;s:5:\"title\";s:8:\"Footer 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_hero_2.png\";s:12:\"tmpl_created\";i:1521547502;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/footer-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"Footer\"]\";s:10:\"menu_order\";i:342;s:16:\"popularity_index\";i:124;s:11:\"trend_index\";i:147;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:595;a:20:{s:4:\"tmpl\";i:888;s:2:\"id\";i:11424;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/08/404_Small.png\";s:12:\"tmpl_created\";i:1567393309;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/gym-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:13:\"[\"404\",\"Gym\"]\";s:10:\"menu_order\";i:344;s:16:\"popularity_index\";i:679;s:11:\"trend_index\";i:769;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:596;a:20:{s:4:\"tmpl\";i:887;s:2:\"id\";i:11435;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/08/Archiv_Small.png\";s:12:\"tmpl_created\";i:1567393296;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/gym-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:346;s:16:\"popularity_index\";i:441;s:11:\"trend_index\";i:507;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:597;a:20:{s:4:\"tmpl\";i:886;s:2:\"id\";i:11445;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/08/Post_Small.png\";s:12:\"tmpl_created\";i:1567393229;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/gym-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:349;s:16:\"popularity_index\";i:452;s:11:\"trend_index\";i:479;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:598;a:20:{s:4:\"tmpl\";i:885;s:2:\"id\";i:11453;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/08/Footer_Small.png\";s:12:\"tmpl_created\";i:1567393224;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/gym-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:16:\"[\"Footer\",\"Gym\"]\";s:10:\"menu_order\";i:351;s:16:\"popularity_index\";i:270;s:11:\"trend_index\";i:331;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:599;a:20:{s:4:\"tmpl\";i:884;s:2:\"id\";i:11461;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-gym-and-fitness.png\";s:12:\"tmpl_created\";i:1567393219;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/gym/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:16:\"[\"Gym\",\"Header\"]\";s:10:\"menu_order\";i:352;s:16:\"popularity_index\";i:201;s:11:\"trend_index\";i:135;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:600;a:20:{s:4:\"tmpl\";i:635;s:2:\"id\";i:7596;s:5:\"title\";s:8:\"Header 1\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.12.jpg\";s:12:\"tmpl_created\";i:1521546999;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:10:\"[\"Header\"]\";s:10:\"menu_order\";i:354;s:16:\"popularity_index\";i:33;s:11:\"trend_index\";i:17;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:601;a:20:{s:4:\"tmpl\";i:663;s:2:\"id\";i:7801;s:5:\"title\";s:9:\"header 10\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.9.jpg\";s:12:\"tmpl_created\";i:1524583659;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/header-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:356;s:16:\"popularity_index\";i:51;s:11:\"trend_index\";i:14;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:602;a:20:{s:4:\"tmpl\";i:658;s:2:\"id\";i:7812;s:5:\"title\";s:9:\"header 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.10.jpg\";s:12:\"tmpl_created\";i:1524583298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/header-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:358;s:16:\"popularity_index\";i:96;s:11:\"trend_index\";i:103;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:603;a:20:{s:4:\"tmpl\";i:657;s:2:\"id\";i:7825;s:5:\"title\";s:9:\"header 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.11.jpg\";s:12:\"tmpl_created\";i:1524583273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/header-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:360;s:16:\"popularity_index\";i:63;s:11:\"trend_index\";i:75;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:604;a:20:{s:4:\"tmpl\";i:694;s:2:\"id\";i:9127;s:5:\"title\";s:9:\"header 13\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2018/07/Header_get_started_1200V3.png\";s:12:\"tmpl_created\";i:1532428699;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/header-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:362;s:16:\"popularity_index\";i:61;s:11:\"trend_index\";i:58;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:605;a:20:{s:4:\"tmpl\";i:636;s:2:\"id\";i:7615;s:5:\"title\";s:8:\"Header 2\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.1.jpg\";s:12:\"tmpl_created\";i:1521547237;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:10:\"[\"Header\"]\";s:10:\"menu_order\";i:365;s:16:\"popularity_index\";i:30;s:11:\"trend_index\";i:33;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:606;a:20:{s:4:\"tmpl\";i:665;s:2:\"id\";i:7713;s:5:\"title\";s:8:\"header 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.2.jpg\";s:12:\"tmpl_created\";i:1524584780;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:367;s:16:\"popularity_index\";i:43;s:11:\"trend_index\";i:28;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:607;a:20:{s:4:\"tmpl\";i:659;s:2:\"id\";i:7724;s:5:\"title\";s:8:\"header 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.3.jpg\";s:12:\"tmpl_created\";i:1524583367;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:369;s:16:\"popularity_index\";i:24;s:11:\"trend_index\";i:13;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:608;a:20:{s:4:\"tmpl\";i:660;s:2:\"id\";i:7734;s:5:\"title\";s:8:\"header 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.4.jpg\";s:12:\"tmpl_created\";i:1524583436;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:371;s:16:\"popularity_index\";i:36;s:11:\"trend_index\";i:18;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:609;a:20:{s:4:\"tmpl\";i:666;s:2:\"id\";i:7744;s:5:\"title\";s:8:\"Header 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.5.jpg\";s:12:\"tmpl_created\";i:1524584784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:372;s:16:\"popularity_index\";i:65;s:11:\"trend_index\";i:94;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:610;a:20:{s:4:\"tmpl\";i:664;s:2:\"id\";i:7754;s:5:\"title\";s:8:\"header 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.6.jpg\";s:12:\"tmpl_created\";i:1524583712;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:375;s:16:\"popularity_index\";i:111;s:11:\"trend_index\";i:143;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:611;a:20:{s:4:\"tmpl\";i:661;s:2:\"id\";i:7771;s:5:\"title\";s:8:\"header 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.7.jpg\";s:12:\"tmpl_created\";i:1524583540;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:376;s:16:\"popularity_index\";i:91;s:11:\"trend_index\";i:60;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:612;a:20:{s:4:\"tmpl\";i:662;s:2:\"id\";i:7787;s:5:\"title\";s:8:\"header 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.8.jpg\";s:12:\"tmpl_created\";i:1524583598;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:379;s:16:\"popularity_index\";i:102;s:11:\"trend_index\";i:78;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:613;a:20:{s:4:\"tmpl\";i:572;s:2:\"id\";i:6266;s:5:\"title\";s:6:\"Hero 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_4.png\";s:12:\"tmpl_created\";i:1520443695;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:380;s:16:\"popularity_index\";i:52;s:11:\"trend_index\";i:35;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:614;a:20:{s:4:\"tmpl\";i:528;s:2:\"id\";i:5783;s:5:\"title\";s:7:\"Hero 10\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_2.png\";s:12:\"tmpl_created\";i:1520443586;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/hero-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:383;s:16:\"popularity_index\";i:365;s:11:\"trend_index\";i:567;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:615;a:20:{s:4:\"tmpl\";i:527;s:2:\"id\";i:5773;s:5:\"title\";s:7:\"Hero 11\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_1.png\";s:12:\"tmpl_created\";i:1520443584;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/hero-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:384;s:16:\"popularity_index\";i:39;s:11:\"trend_index\";i:179;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:616;a:20:{s:4:\"tmpl\";i:479;s:2:\"id\";i:5238;s:5:\"title\";s:7:\"Hero 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_4.png\";s:12:\"tmpl_created\";i:1520443468;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/hero-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:386;s:16:\"popularity_index\";i:611;s:11:\"trend_index\";i:555;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:617;a:20:{s:4:\"tmpl\";i:573;s:2:\"id\";i:6274;s:5:\"title\";s:6:\"Hero 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_5.png\";s:12:\"tmpl_created\";i:1520443698;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:389;s:16:\"popularity_index\";i:87;s:11:\"trend_index\";i:88;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:618;a:20:{s:4:\"tmpl\";i:569;s:2:\"id\";i:6239;s:5:\"title\";s:6:\"Hero 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_1.png\";s:12:\"tmpl_created\";i:1520443689;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:391;s:16:\"popularity_index\";i:23;s:11:\"trend_index\";i:34;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:619;a:20:{s:4:\"tmpl\";i:571;s:2:\"id\";i:6258;s:5:\"title\";s:6:\"Hero 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_3.png\";s:12:\"tmpl_created\";i:1520443693;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:393;s:16:\"popularity_index\";i:479;s:11:\"trend_index\";i:470;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:620;a:20:{s:4:\"tmpl\";i:570;s:2:\"id\";i:6249;s:5:\"title\";s:6:\"Hero 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_2.png\";s:12:\"tmpl_created\";i:1520443691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:395;s:16:\"popularity_index\";i:56;s:11:\"trend_index\";i:85;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:621;a:20:{s:4:\"tmpl\";i:568;s:2:\"id\";i:6230;s:5:\"title\";s:6:\"Hero 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_white_1.png\";s:12:\"tmpl_created\";i:1520443687;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:396;s:16:\"popularity_index\";i:406;s:11:\"trend_index\";i:542;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:622;a:20:{s:4:\"tmpl\";i:530;s:2:\"id\";i:5801;s:5:\"title\";s:6:\"Hero 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_4.png\";s:12:\"tmpl_created\";i:1520443589;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:398;s:16:\"popularity_index\";i:15;s:11:\"trend_index\";i:37;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:623;a:20:{s:4:\"tmpl\";i:531;s:2:\"id\";i:5811;s:5:\"title\";s:6:\"Hero 8\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_5.png\";s:12:\"tmpl_created\";i:1520443591;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:400;s:16:\"popularity_index\";i:105;s:11:\"trend_index\";i:86;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:624;a:20:{s:4:\"tmpl\";i:529;s:2:\"id\";i:5792;s:5:\"title\";s:6:\"Hero 9\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_3.png\";s:12:\"tmpl_created\";i:1520443588;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:403;s:16:\"popularity_index\";i:225;s:11:\"trend_index\";i:244;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:625;a:20:{s:4:\"tmpl\";i:978;s:2:\"id\";i:13251;s:5:\"title\";s:27:\"Interior Design – 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/04/404.png\";s:12:\"tmpl_created\";i:1586148737;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/interior-design-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:405;s:16:\"popularity_index\";i:730;s:11:\"trend_index\";i:795;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:626;a:20:{s:4:\"tmpl\";i:979;s:2:\"id\";i:13244;s:5:\"title\";s:30:\"Interior Design – Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/04/Footer.png\";s:12:\"tmpl_created\";i:1586148742;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/interior-design-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:39:\"[\"Business\",\"Footer\",\"Interior Design\"]\";s:10:\"menu_order\";i:406;s:16:\"popularity_index\";i:322;s:11:\"trend_index\";i:178;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:627;a:20:{s:4:\"tmpl\";i:980;s:2:\"id\";i:13236;s:5:\"title\";s:30:\"Interior Design – Header\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-interior-design.png\";s:12:\"tmpl_created\";i:1586148746;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/interior-design-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:39:\"[\"Business\",\"Header\",\"Interior Design\"]\";s:10:\"menu_order\";i:408;s:16:\"popularity_index\";i:146;s:11:\"trend_index\";i:64;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:628;a:20:{s:4:\"tmpl\";i:977;s:2:\"id\";i:13259;s:5:\"title\";s:36:\"Interior Design – News Archive\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Archiv-Blog.png\";s:12:\"tmpl_created\";i:1586148733;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/blocks/interior-design-news-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:410;s:16:\"popularity_index\";i:436;s:11:\"trend_index\";i:132;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:629;a:20:{s:4:\"tmpl\";i:976;s:2:\"id\";i:13267;s:5:\"title\";s:35:\"Interior Design – Single News\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Post.png\";s:12:\"tmpl_created\";i:1586148728;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/blocks/interior-design-single-news/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:413;s:16:\"popularity_index\";i:402;s:11:\"trend_index\";i:108;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:630;a:20:{s:4:\"tmpl\";i:975;s:2:\"id\";i:13274;s:5:\"title\";s:38:\"Interior Design – Single Project\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/04/Single-Project-.png\";s:12:\"tmpl_created\";i:1586148723;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/blocks/interior-design-single-project/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:414;s:16:\"popularity_index\";i:601;s:11:\"trend_index\";i:324;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:631;a:20:{s:4:\"tmpl\";i:1011;s:2:\"id\";i:14058;s:5:\"title\";s:36:\"Japanese restaurant – 404 page\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/06/404-Page.jpg\";s:12:\"tmpl_created\";i:1592290211;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/blocks/japanese-restaurant-404-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:38:\"[\"404\",\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:416;s:16:\"popularity_index\";i:724;s:11:\"trend_index\";i:647;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:632;a:20:{s:4:\"tmpl\";i:1012;s:2:\"id\";i:14050;s:5:\"title\";s:34:\"Japanese restaurant – Footer\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/Footer-Small.jpg\";s:12:\"tmpl_created\";i:1592290247;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/japanese-restaurant-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:41:\"[\"Food\",\"Footer\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:419;s:16:\"popularity_index\";i:317;s:11:\"trend_index\";i:238;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:633;a:20:{s:4:\"tmpl\";i:1013;s:2:\"id\";i:14042;s:5:\"title\";s:34:\"Japanese Restaurant – Header\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2020/06/japanese-restaurant-header.jpg\";s:12:\"tmpl_created\";i:1592290277;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/japanese-restaurant-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:41:\"[\"Food\",\"Header\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:421;s:16:\"popularity_index\";i:411;s:11:\"trend_index\";i:274;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:634;a:20:{s:4:\"tmpl\";i:914;s:2:\"id\";i:12164;s:5:\"title\";s:20:\"Law Firm – 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/11/404.png\";s:12:\"tmpl_created\";i:1572846979;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/law-firm-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:24:\"[\"404\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:422;s:16:\"popularity_index\";i:704;s:11:\"trend_index\";i:716;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:635;a:20:{s:4:\"tmpl\";i:913;s:2:\"id\";i:12170;s:5:\"title\";s:23:\"Law Firm – Archiv\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/archiv.png\";s:12:\"tmpl_created\";i:1572846967;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/law-firm-archiv/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:424;s:16:\"popularity_index\";i:431;s:11:\"trend_index\";i:294;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:636;a:20:{s:4:\"tmpl\";i:912;s:2:\"id\";i:12179;s:5:\"title\";s:23:\"Law Firm – Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/footer.png\";s:12:\"tmpl_created\";i:1572846958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/law-firm-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:27:\"[\"Footer\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:425;s:16:\"popularity_index\";i:388;s:11:\"trend_index\";i:240;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:637;a:20:{s:4:\"tmpl\";i:911;s:2:\"id\";i:12194;s:5:\"title\";s:23:\"Law Firm – Header\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-law-firm.png\";s:12:\"tmpl_created\";i:1572846935;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/law-firm-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:27:\"[\"Header\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:427;s:16:\"popularity_index\";i:80;s:11:\"trend_index\";i:39;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:638;a:20:{s:4:\"tmpl\";i:910;s:2:\"id\";i:12203;s:5:\"title\";s:30:\"Law Firm – Search Archiv\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/11/search_result.png\";s:12:\"tmpl_created\";i:1572846925;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/law-firm-search-archiv/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:430;s:16:\"popularity_index\";i:493;s:11:\"trend_index\";i:433;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:639;a:20:{s:4:\"tmpl\";i:909;s:2:\"id\";i:12212;s:5:\"title\";s:28:\"Law Firm – Single Post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/single.png\";s:12:\"tmpl_created\";i:1572846914;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/law-firm-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:432;s:16:\"popularity_index\";i:326;s:11:\"trend_index\";i:214;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:640;a:20:{s:4:\"tmpl\";i:1022;s:2:\"id\";i:14772;s:5:\"title\";s:35:\"Luxury Real Estate – 404 page\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/07/404.png\";s:12:\"tmpl_created\";i:1595315728;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/blocks/luxury-real-estate-404-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:34:\"[\"404\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:433;s:16:\"popularity_index\";i:759;s:11:\"trend_index\";i:720;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:641;a:20:{s:4:\"tmpl\";i:1023;s:2:\"id\";i:14779;s:5:\"title\";s:33:\"Luxury Real Estate – Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/07/Footer.png\";s:12:\"tmpl_created\";i:1595315743;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/luxury-real-estate-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:37:\"[\"Footer\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:434;s:16:\"popularity_index\";i:536;s:11:\"trend_index\";i:505;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:642;a:20:{s:4:\"tmpl\";i:1024;s:2:\"id\";i:14790;s:5:\"title\";s:33:\"Luxury Real Estate – Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/07/Header.png\";s:12:\"tmpl_created\";i:1595315760;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/luxury-real-estate-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:37:\"[\"Header\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:436;s:16:\"popularity_index\";i:101;s:11:\"trend_index\";i:157;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:643;a:20:{s:4:\"tmpl\";i:1026;s:2:\"id\";i:14809;s:5:\"title\";s:45:\"Luxury Real Estate – Properties Archive\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/07/Properties.png\";s:12:\"tmpl_created\";i:1595315826;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/blocks/luxury-real-estate-properties-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:438;s:16:\"popularity_index\";i:414;s:11:\"trend_index\";i:420;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:644;a:20:{s:4:\"tmpl\";i:1027;s:2:\"id\";i:14816;s:5:\"title\";s:47:\"Luxury Real Estate – Property single post\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/07/Single-Property-.png\";s:12:\"tmpl_created\";i:1595315847;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/blocks/luxury-real-estate-property-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:441;s:16:\"popularity_index\";i:541;s:11:\"trend_index\";i:665;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:645;a:20:{s:4:\"tmpl\";i:1025;s:2:\"id\";i:14799;s:5:\"title\";s:38:\"Luxury Real Estate – single post\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/07/Post.png\";s:12:\"tmpl_created\";i:1595315792;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/blocks/luxury-real-estate-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:442;s:16:\"popularity_index\";i:369;s:11:\"trend_index\";i:441;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:646;a:20:{s:4:\"tmpl\";i:950;s:2:\"id\";i:12635;s:5:\"title\";s:20:\"Magazine – 404\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/01/404_s.png\";s:12:\"tmpl_created\";i:1579060746;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/magazine-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:25:\"[\"404\",\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:445;s:16:\"popularity_index\";i:645;s:11:\"trend_index\";i:734;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:647;a:20:{s:4:\"tmpl\";i:949;s:2:\"id\";i:12643;s:5:\"title\";s:24:\"Magazine – Archiv1\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/01/Archiv1_s.png\";s:12:\"tmpl_created\";i:1579060737;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/magazine-archiv1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:447;s:16:\"popularity_index\";i:346;s:11:\"trend_index\";i:272;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:648;a:20:{s:4:\"tmpl\";i:946;s:2:\"id\";i:12669;s:5:\"title\";s:23:\"Magazine – Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/01/Footer_s.png\";s:12:\"tmpl_created\";i:1579060715;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/magazine-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:28:\"[\"Blog\",\"Footer\",\"Magazine\"]\";s:10:\"menu_order\";i:448;s:16:\"popularity_index\";i:442;s:11:\"trend_index\";i:349;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:649;a:20:{s:4:\"tmpl\";i:945;s:2:\"id\";i:12678;s:5:\"title\";s:23:\"Magazine – Header\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-magazine.png\";s:12:\"tmpl_created\";i:1579060701;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/magazine-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:28:\"[\"Blog\",\"Header\",\"Magazine\"]\";s:10:\"menu_order\";i:450;s:16:\"popularity_index\";i:295;s:11:\"trend_index\";i:197;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:650;a:20:{s:4:\"tmpl\";i:947;s:2:\"id\";i:12661;s:5:\"title\";s:23:\"Magazine – Search\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/01/Search_s.png\";s:12:\"tmpl_created\";i:1579060722;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/magazine-search/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:452;s:16:\"popularity_index\";i:396;s:11:\"trend_index\";i:509;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:651;a:20:{s:4:\"tmpl\";i:944;s:2:\"id\";i:12688;s:5:\"title\";s:30:\"Magazine – Single Post 1\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post2_s.png\";s:12:\"tmpl_created\";i:1579060692;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/magazine-single-post-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:453;s:16:\"popularity_index\";i:342;s:11:\"trend_index\";i:175;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:652;a:20:{s:4:\"tmpl\";i:943;s:2:\"id\";i:12699;s:5:\"title\";s:30:\"Magazine – Single Post 2\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post3_s.png\";s:12:\"tmpl_created\";i:1579060680;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/magazine-single-post-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:454;s:16:\"popularity_index\";i:348;s:11:\"trend_index\";i:129;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:653;a:20:{s:4:\"tmpl\";i:942;s:2:\"id\";i:12707;s:5:\"title\";s:30:\"Magazine – Single Post 3\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post1_s.png\";s:12:\"tmpl_created\";i:1579060669;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/magazine-single-post-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:457;s:16:\"popularity_index\";i:476;s:11:\"trend_index\";i:246;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:654;a:20:{s:4:\"tmpl\";i:941;s:2:\"id\";i:12716;s:5:\"title\";s:30:\"Magazine – Single Post 3\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post4_s.png\";s:12:\"tmpl_created\";i:1579060659;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/blocks/magazine-single-post-3-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:459;s:16:\"popularity_index\";i:513;s:11:\"trend_index\";i:489;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:655;a:20:{s:4:\"tmpl\";i:948;s:2:\"id\";i:12652;s:5:\"title\";s:17:\"Magazine- Archiv2\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/01/Archiv2_s.png\";s:12:\"tmpl_created\";i:1579060730;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/magazine-archiv2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:461;s:16:\"popularity_index\";i:525;s:11:\"trend_index\";i:585;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:656;a:20:{s:4:\"tmpl\";i:990;s:2:\"id\";i:13361;s:5:\"title\";s:25:\"Online Course – 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/04/404.jpg\";s:12:\"tmpl_created\";i:1587474710;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/online-course-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:35:\"[\"404\",\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:462;s:16:\"popularity_index\";i:682;s:11:\"trend_index\";i:498;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:657;a:20:{s:4:\"tmpl\";i:987;s:2:\"id\";i:13387;s:5:\"title\";s:32:\"Online Course – End Lesson\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Lesson-End-.jpg\";s:12:\"tmpl_created\";i:1587474682;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/blocks/online-course-end-lesson/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:464;s:16:\"popularity_index\";i:653;s:11:\"trend_index\";i:408;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:658;a:20:{s:4:\"tmpl\";i:989;s:2:\"id\";i:13369;s:5:\"title\";s:28:\"Online Course – Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/04/Footer.jpg\";s:12:\"tmpl_created\";i:1587474701;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/online-course-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:38:\"[\"Course Online\",\"Education\",\"Footer\"]\";s:10:\"menu_order\";i:466;s:16:\"popularity_index\";i:389;s:11:\"trend_index\";i:308;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:659;a:20:{s:4:\"tmpl\";i:988;s:2:\"id\";i:13378;s:5:\"title\";s:28:\"Online Course – Header\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-education-online-courses.jpg\";s:12:\"tmpl_created\";i:1587474693;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/online-course-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:38:\"[\"Course Online\",\"Education\",\"Header\"]\";s:10:\"menu_order\";i:469;s:16:\"popularity_index\";i:492;s:11:\"trend_index\";i:519;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:660;a:20:{s:4:\"tmpl\";i:986;s:2:\"id\";i:13395;s:5:\"title\";s:34:\"Online Course – Start Lesson\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/04/Lesson-Start.jpg\";s:12:\"tmpl_created\";i:1587474673;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/online-course-start-lesson/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:471;s:16:\"popularity_index\";i:672;s:11:\"trend_index\";i:578;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:661;a:20:{s:4:\"tmpl\";i:953;s:2:\"id\";i:13089;s:5:\"title\";s:23:\"Photography – 404\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/02/404_s.png\";s:12:\"tmpl_created\";i:1582091623;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/photography-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:33:\"[\"404\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:473;s:16:\"popularity_index\";i:702;s:11:\"trend_index\";i:706;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:662;a:20:{s:4:\"tmpl\";i:954;s:2:\"id\";i:13096;s:5:\"title\";s:32:\"Photography – Archiv Media\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Archiv_s.png\";s:12:\"tmpl_created\";i:1582091742;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/blocks/photography-archiv-media/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:475;s:16:\"popularity_index\";i:631;s:11:\"trend_index\";i:405;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:663;a:20:{s:4:\"tmpl\";i:955;s:2:\"id\";i:13103;s:5:\"title\";s:26:\"Photography – Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Footer_s.png\";s:12:\"tmpl_created\";i:1582091903;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/photography-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:36:\"[\"Footer\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:477;s:16:\"popularity_index\";i:422;s:11:\"trend_index\";i:230;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:664;a:20:{s:4:\"tmpl\";i:957;s:2:\"id\";i:13112;s:5:\"title\";s:26:\"Photography – Header\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-photography-portfolio.png\";s:12:\"tmpl_created\";i:1582092483;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/photography-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:36:\"[\"Header\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:478;s:16:\"popularity_index\";i:325;s:11:\"trend_index\";i:205;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:665;a:20:{s:4:\"tmpl\";i:956;s:2:\"id\";i:13120;s:5:\"title\";s:31:\"Photography – Single Post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Post_s.png\";s:12:\"tmpl_created\";i:1582092351;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/photography-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:480;s:16:\"popularity_index\";i:671;s:11:\"trend_index\";i:645;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:666;a:20:{s:4:\"tmpl\";i:901;s:2:\"id\";i:11807;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/09/404_small.png\";s:12:\"tmpl_created\";i:1569430070;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:40:\"[\"404\",\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:483;s:16:\"popularity_index\";i:480;s:11:\"trend_index\";i:497;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:667;a:20:{s:4:\"tmpl\";i:900;s:2:\"id\";i:11832;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Footer_small.png\";s:12:\"tmpl_created\";i:1569430019;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:43:\"[\"Creative Portfolio\",\"Footer\",\"Portfolio\"]\";s:10:\"menu_order\";i:484;s:16:\"popularity_index\";i:246;s:11:\"trend_index\";i:102;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:668;a:20:{s:4:\"tmpl\";i:898;s:2:\"id\";i:11847;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Archiv_small.png\";s:12:\"tmpl_created\";i:1569430010;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:487;s:16:\"popularity_index\";i:336;s:11:\"trend_index\";i:455;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:669;a:20:{s:4:\"tmpl\";i:897;s:2:\"id\";i:11854;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/09/Post_small.png\";s:12:\"tmpl_created\";i:1569429983;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:489;s:16:\"popularity_index\";i:482;s:11:\"trend_index\";i:609;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:670;a:20:{s:4:\"tmpl\";i:904;s:2:\"id\";i:11890;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-design-portfolio.png\";s:12:\"tmpl_created\";i:1571907344;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"Creative Portfolio\",\"Header\",\"Portfolio\"]\";s:10:\"menu_order\";i:491;s:16:\"popularity_index\";i:306;s:11:\"trend_index\";i:364;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:671;a:20:{s:4:\"tmpl\";i:896;s:2:\"id\";i:11861;s:5:\"title\";s:27:\"Portfolio – Project 1\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project1_small.png\";s:12:\"tmpl_created\";i:1569429975;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/portfolio-project-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:493;s:16:\"popularity_index\";i:643;s:11:\"trend_index\";i:764;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:672;a:20:{s:4:\"tmpl\";i:895;s:2:\"id\";i:11870;s:5:\"title\";s:27:\"Portfolio – Project 2\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project2_small.png\";s:12:\"tmpl_created\";i:1569429964;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/portfolio-project-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:495;s:16:\"popularity_index\";i:662;s:11:\"trend_index\";i:816;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:673;a:20:{s:4:\"tmpl\";i:903;s:2:\"id\";i:11897;s:5:\"title\";s:27:\"Portfolio – Project 2\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project2_small.png\";s:12:\"tmpl_created\";i:1569494236;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/portfolio-project-2-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:496;s:16:\"popularity_index\";i:733;s:11:\"trend_index\";i:744;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:674;a:20:{s:4:\"tmpl\";i:894;s:2:\"id\";i:11877;s:5:\"title\";s:27:\"Portfolio – Project 3\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project3_small.png\";s:12:\"tmpl_created\";i:1569429954;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/portfolio-project-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:498;s:16:\"popularity_index\";i:692;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:675;a:20:{s:4:\"tmpl\";i:597;s:2:\"id\";i:5019;s:5:\"title\";s:11:\"Portfolio 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_1.png\";s:12:\"tmpl_created\";i:1520520580;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:500;s:16:\"popularity_index\";i:170;s:11:\"trend_index\";i:236;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:676;a:20:{s:4:\"tmpl\";i:609;s:2:\"id\";i:5141;s:5:\"title\";s:12:\"Portfolio 10\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_10.png\";s:12:\"tmpl_created\";i:1520520601;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:503;s:16:\"popularity_index\";i:416;s:11:\"trend_index\";i:478;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:677;a:20:{s:4:\"tmpl\";i:598;s:2:\"id\";i:5027;s:5:\"title\";s:12:\"Portfolio 11\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_2.png\";s:12:\"tmpl_created\";i:1520520581;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:504;s:16:\"popularity_index\";i:304;s:11:\"trend_index\";i:421;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:678;a:20:{s:4:\"tmpl\";i:599;s:2:\"id\";i:5037;s:5:\"title\";s:12:\"Portfolio 12\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_3.png\";s:12:\"tmpl_created\";i:1520520583;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:507;s:16:\"popularity_index\";i:279;s:11:\"trend_index\";i:399;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:679;a:20:{s:4:\"tmpl\";i:600;s:2:\"id\";i:5057;s:5:\"title\";s:12:\"Portfolio 13\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_4.png\";s:12:\"tmpl_created\";i:1520520586;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:509;s:16:\"popularity_index\";i:239;s:11:\"trend_index\";i:288;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:680;a:20:{s:4:\"tmpl\";i:601;s:2:\"id\";i:5071;s:5:\"title\";s:12:\"Portfolio 14\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_5.png\";s:12:\"tmpl_created\";i:1520520588;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:511;s:16:\"popularity_index\";i:276;s:11:\"trend_index\";i:329;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:681;a:20:{s:4:\"tmpl\";i:603;s:2:\"id\";i:5090;s:5:\"title\";s:12:\"Portfolio 15\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_6.png\";s:12:\"tmpl_created\";i:1520520591;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:513;s:16:\"popularity_index\";i:186;s:11:\"trend_index\";i:283;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:682;a:20:{s:4:\"tmpl\";i:604;s:2:\"id\";i:5098;s:5:\"title\";s:12:\"Portfolio 16\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_7.png\";s:12:\"tmpl_created\";i:1520520593;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:515;s:16:\"popularity_index\";i:156;s:11:\"trend_index\";i:211;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:683;a:20:{s:4:\"tmpl\";i:606;s:2:\"id\";i:5115;s:5:\"title\";s:12:\"Portfolio 17\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_8.png\";s:12:\"tmpl_created\";i:1520520596;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:517;s:16:\"popularity_index\";i:19;s:11:\"trend_index\";i:22;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:684;a:20:{s:4:\"tmpl\";i:608;s:2:\"id\";i:5133;s:5:\"title\";s:12:\"Portfolio 18\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_9.png\";s:12:\"tmpl_created\";i:1520520599;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:519;s:16:\"popularity_index\";i:180;s:11:\"trend_index\";i:280;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:685;a:20:{s:4:\"tmpl\";i:610;s:2:\"id\";i:5149;s:5:\"title\";s:11:\"Portfolio 2\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_10.png\";s:12:\"tmpl_created\";i:1520520602;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:521;s:16:\"popularity_index\";i:413;s:11:\"trend_index\";i:635;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:686;a:20:{s:4:\"tmpl\";i:468;s:2:\"id\";i:5045;s:5:\"title\";s:11:\"Portfolio 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_2.png\";s:12:\"tmpl_created\";i:1520443423;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:523;s:16:\"popularity_index\";i:636;s:11:\"trend_index\";i:608;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:687;a:20:{s:4:\"tmpl\";i:602;s:2:\"id\";i:5082;s:5:\"title\";s:11:\"Portfolio 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_4.png\";s:12:\"tmpl_created\";i:1520520589;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:524;s:16:\"popularity_index\";i:558;s:11:\"trend_index\";i:654;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:688;a:20:{s:4:\"tmpl\";i:605;s:2:\"id\";i:5107;s:5:\"title\";s:11:\"Portfolio 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_7.png\";s:12:\"tmpl_created\";i:1520520594;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:527;s:16:\"popularity_index\";i:380;s:11:\"trend_index\";i:347;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:689;a:20:{s:4:\"tmpl\";i:607;s:2:\"id\";i:5125;s:5:\"title\";s:11:\"Portfolio 6\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_8.png\";s:12:\"tmpl_created\";i:1520520597;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:529;s:16:\"popularity_index\";i:236;s:11:\"trend_index\";i:386;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:690;a:20:{s:4:\"tmpl\";i:596;s:2:\"id\";i:5007;s:5:\"title\";s:11:\"Portfolio 7\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_1.png\";s:12:\"tmpl_created\";i:1520520578;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:530;s:16:\"popularity_index\";i:44;s:11:\"trend_index\";i:183;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:691;a:20:{s:4:\"tmpl\";i:434;s:2:\"id\";i:4509;s:5:\"title\";s:9:\"Pricing 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_1.png\";s:12:\"tmpl_created\";i:1520443310;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:532;s:16:\"popularity_index\";i:703;s:11:\"trend_index\";i:641;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:692;a:20:{s:4:\"tmpl\";i:439;s:2:\"id\";i:4553;s:5:\"title\";s:10:\"Pricing 10\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_4.png\";s:12:\"tmpl_created\";i:1520443319;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:534;s:16:\"popularity_index\";i:511;s:11:\"trend_index\";i:506;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:693;a:20:{s:4:\"tmpl\";i:441;s:2:\"id\";i:4572;s:5:\"title\";s:10:\"Pricing 11\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_5.png\";s:12:\"tmpl_created\";i:1520443324;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:537;s:16:\"popularity_index\";i:308;s:11:\"trend_index\";i:248;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:694;a:20:{s:4:\"tmpl\";i:442;s:2:\"id\";i:4580;s:5:\"title\";s:10:\"Pricing 12\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_6.png\";s:12:\"tmpl_created\";i:1520443326;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:539;s:16:\"popularity_index\";i:576;s:11:\"trend_index\";i:526;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:695;a:20:{s:4:\"tmpl\";i:444;s:2:\"id\";i:4597;s:5:\"title\";s:10:\"Pricing 13\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_7.png\";s:12:\"tmpl_created\";i:1520443330;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:540;s:16:\"popularity_index\";i:613;s:11:\"trend_index\";i:450;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:696;a:20:{s:4:\"tmpl\";i:446;s:2:\"id\";i:4613;s:5:\"title\";s:10:\"Pricing 14\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_8.png\";s:12:\"tmpl_created\";i:1520443334;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:543;s:16:\"popularity_index\";i:581;s:11:\"trend_index\";i:568;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:697;a:20:{s:4:\"tmpl\";i:436;s:2:\"id\";i:4529;s:5:\"title\";s:9:\"Pricing 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_2.png\";s:12:\"tmpl_created\";i:1520443314;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:545;s:16:\"popularity_index\";i:609;s:11:\"trend_index\";i:613;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:698;a:20:{s:4:\"tmpl\";i:438;s:2:\"id\";i:4545;s:5:\"title\";s:9:\"Pricing 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_3.png\";s:12:\"tmpl_created\";i:1520443317;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:547;s:16:\"popularity_index\";i:707;s:11:\"trend_index\";i:825;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:699;a:20:{s:4:\"tmpl\";i:440;s:2:\"id\";i:4562;s:5:\"title\";s:9:\"Pricing 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_4.png\";s:12:\"tmpl_created\";i:1520443322;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:549;s:16:\"popularity_index\";i:697;s:11:\"trend_index\";i:821;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:700;a:20:{s:4:\"tmpl\";i:443;s:2:\"id\";i:4589;s:5:\"title\";s:9:\"Pricing 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_6.png\";s:12:\"tmpl_created\";i:1520443327;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:551;s:16:\"popularity_index\";i:716;s:11:\"trend_index\";i:639;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:701;a:20:{s:4:\"tmpl\";i:445;s:2:\"id\";i:4605;s:5:\"title\";s:9:\"Pricing 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_7.png\";s:12:\"tmpl_created\";i:1520443332;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:553;s:16:\"popularity_index\";i:738;s:11:\"trend_index\";i:773;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:702;a:20:{s:4:\"tmpl\";i:433;s:2:\"id\";i:4500;s:5:\"title\";s:9:\"Pricing 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_1.png\";s:12:\"tmpl_created\";i:1520443308;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:554;s:16:\"popularity_index\";i:500;s:11:\"trend_index\";i:451;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:703;a:20:{s:4:\"tmpl\";i:435;s:2:\"id\";i:4521;s:5:\"title\";s:9:\"Pricing 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_2.png\";s:12:\"tmpl_created\";i:1520443312;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:557;s:16:\"popularity_index\";i:311;s:11:\"trend_index\";i:372;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:704;a:20:{s:4:\"tmpl\";i:437;s:2:\"id\";i:4537;s:5:\"title\";s:9:\"Pricing 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_3.png\";s:12:\"tmpl_created\";i:1520443315;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:559;s:16:\"popularity_index\";i:589;s:11:\"trend_index\";i:841;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:705;a:20:{s:4:\"tmpl\";i:1046;s:2:\"id\";i:15204;s:5:\"title\";s:24:\"Psychologist – 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/09/404.jpg\";s:12:\"tmpl_created\";i:1600161419;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/psychologist-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:40:\"[\"404\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:564;s:16:\"popularity_index\";i:574;s:11:\"trend_index\";i:493;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:706;a:20:{s:4:\"tmpl\";i:1047;s:2:\"id\";i:15212;s:5:\"title\";s:28:\"Psychologist – Archive\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/09/Blog.jpg\";s:12:\"tmpl_created\";i:1600162340;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/psychologist-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:565;s:16:\"popularity_index\";i:379;s:11:\"trend_index\";i:358;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:707;a:20:{s:4:\"tmpl\";i:1048;s:2:\"id\";i:15219;s:5:\"title\";s:27:\"Psychologist – Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/09/Footer.jpg\";s:12:\"tmpl_created\";i:1600163069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/psychologist-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:43:\"[\"Footer\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:566;s:16:\"popularity_index\";i:599;s:11:\"trend_index\";i:500;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:708;a:20:{s:4:\"tmpl\";i:701;s:2:\"id\";i:9239;s:5:\"title\";s:17:\"product archive 1\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-1.png\";s:12:\"tmpl_created\";i:1532953482;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/product-archive-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:566;s:16:\"popularity_index\";i:60;s:11:\"trend_index\";i:25;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:709;a:20:{s:4:\"tmpl\";i:1049;s:2:\"id\";i:15230;s:5:\"title\";s:27:\"Psychologist – Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/09/Header.png\";s:12:\"tmpl_created\";i:1600163444;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/psychologist-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"Header\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:567;s:16:\"popularity_index\";i:429;s:11:\"trend_index\";i:423;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:710;a:20:{s:4:\"tmpl\";i:702;s:2:\"id\";i:9247;s:5:\"title\";s:17:\"product archive 2\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-2.png\";s:12:\"tmpl_created\";i:1532953793;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/product-archive-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:567;s:16:\"popularity_index\";i:71;s:11:\"trend_index\";i:30;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:711;a:20:{s:4:\"tmpl\";i:1050;s:2:\"id\";i:15240;s:5:\"title\";s:34:\"Psychologist – single post 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/09/Single-Post.png\";s:12:\"tmpl_created\";i:1600164087;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/psychologist-single-post-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:568;s:16:\"popularity_index\";i:562;s:11:\"trend_index\";i:570;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:712;a:20:{s:4:\"tmpl\";i:703;s:2:\"id\";i:9254;s:5:\"title\";s:17:\"product archive 3\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-3.png\";s:12:\"tmpl_created\";i:1532954032;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/product-archive-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:568;s:16:\"popularity_index\";i:73;s:11:\"trend_index\";i:44;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:713;a:20:{s:4:\"tmpl\";i:1051;s:2:\"id\";i:15251;s:5:\"title\";s:34:\"Psychologist – single post 2\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2020/09/Single-Service-Page.png\";s:12:\"tmpl_created\";i:1600165179;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/psychologist-single-post-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:569;s:16:\"popularity_index\";i:507;s:11:\"trend_index\";i:368;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:714;a:20:{s:4:\"tmpl\";i:412;s:2:\"id\";i:4313;s:5:\"title\";s:11:\"Services 13\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_8.png\";s:12:\"tmpl_created\";i:1520443268;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:570;s:16:\"popularity_index\";i:115;s:11:\"trend_index\";i:53;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:715;a:20:{s:4:\"tmpl\";i:413;s:2:\"id\";i:4324;s:5:\"title\";s:11:\"Services 14\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_9.png\";s:12:\"tmpl_created\";i:1520443270;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:571;s:16:\"popularity_index\";i:277;s:11:\"trend_index\";i:138;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:716;a:20:{s:4:\"tmpl\";i:418;s:2:\"id\";i:4368;s:5:\"title\";s:11:\"Services 16\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_13.png\";s:12:\"tmpl_created\";i:1520443279;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:572;s:16:\"popularity_index\";i:62;s:11:\"trend_index\";i:59;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:717;a:20:{s:4:\"tmpl\";i:420;s:2:\"id\";i:4391;s:5:\"title\";s:11:\"Services 17\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_14.png\";s:12:\"tmpl_created\";i:1520443283;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:573;s:16:\"popularity_index\";i:153;s:11:\"trend_index\";i:120;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:718;a:20:{s:4:\"tmpl\";i:403;s:2:\"id\";i:4235;s:5:\"title\";s:11:\"Services 18\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_2.png\";s:12:\"tmpl_created\";i:1520443251;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:574;s:16:\"popularity_index\";i:273;s:11:\"trend_index\";i:172;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:719;a:20:{s:4:\"tmpl\";i:417;s:2:\"id\";i:4357;s:5:\"title\";s:11:\"Services 20\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_12.png\";s:12:\"tmpl_created\";i:1520443277;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:575;s:16:\"popularity_index\";i:45;s:11:\"trend_index\";i:45;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:720;a:20:{s:4:\"tmpl\";i:415;s:2:\"id\";i:4341;s:5:\"title\";s:11:\"Services 21\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_11.png\";s:12:\"tmpl_created\";i:1520443274;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:576;s:16:\"popularity_index\";i:142;s:11:\"trend_index\";i:114;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:721;a:20:{s:4:\"tmpl\";i:414;s:2:\"id\";i:4332;s:5:\"title\";s:11:\"Services 22\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_10.png\";s:12:\"tmpl_created\";i:1520443272;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-22/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:577;s:16:\"popularity_index\";i:138;s:11:\"trend_index\";i:149;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:722;a:20:{s:4:\"tmpl\";i:401;s:2:\"id\";i:4212;s:5:\"title\";s:11:\"Services 23\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_1.png\";s:12:\"tmpl_created\";i:1520443248;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-23/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:578;s:16:\"popularity_index\";i:136;s:11:\"trend_index\";i:302;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:723;a:20:{s:4:\"tmpl\";i:408;s:2:\"id\";i:4276;s:5:\"title\";s:11:\"Services 24\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_4.png\";s:12:\"tmpl_created\";i:1520443261;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-24/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:579;s:16:\"popularity_index\";i:353;s:11:\"trend_index\";i:514;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:724;a:20:{s:4:\"tmpl\";i:406;s:2:\"id\";i:4260;s:5:\"title\";s:11:\"Services 25\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_3.png\";s:12:\"tmpl_created\";i:1520443257;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-25/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:580;s:16:\"popularity_index\";i:184;s:11:\"trend_index\";i:209;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:725;a:20:{s:4:\"tmpl\";i:404;s:2:\"id\";i:4244;s:5:\"title\";s:11:\"Services 26\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_2.png\";s:12:\"tmpl_created\";i:1520443253;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-26/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:581;s:16:\"popularity_index\";i:544;s:11:\"trend_index\";i:596;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:726;a:20:{s:4:\"tmpl\";i:421;s:2:\"id\";i:4400;s:5:\"title\";s:11:\"Services 27\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_13.png\";s:12:\"tmpl_created\";i:1520443285;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-27/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:582;s:16:\"popularity_index\";i:286;s:11:\"trend_index\";i:438;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:727;a:20:{s:4:\"tmpl\";i:419;s:2:\"id\";i:4376;s:5:\"title\";s:11:\"Services 28\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_12.png\";s:12:\"tmpl_created\";i:1520443281;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-28/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:583;s:16:\"popularity_index\";i:151;s:11:\"trend_index\";i:249;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:728;a:20:{s:4:\"tmpl\";i:416;s:2:\"id\";i:4349;s:5:\"title\";s:11:\"Services 29\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_11.png\";s:12:\"tmpl_created\";i:1520443275;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-29/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:584;s:16:\"popularity_index\";i:330;s:11:\"trend_index\";i:483;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:729;a:20:{s:4:\"tmpl\";i:402;s:2:\"id\";i:4227;s:5:\"title\";s:11:\"Services 30\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_1.png\";s:12:\"tmpl_created\";i:1520443250;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-30/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:585;s:16:\"popularity_index\";i:351;s:11:\"trend_index\";i:553;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:730;a:20:{s:4:\"tmpl\";i:560;s:2:\"id\";i:6162;s:5:\"title\";s:11:\"Services 31\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_1.png\";s:12:\"tmpl_created\";i:1520443668;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-31/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:586;s:16:\"popularity_index\";i:372;s:11:\"trend_index\";i:550;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:731;a:20:{s:4:\"tmpl\";i:411;s:2:\"id\";i:4302;s:5:\"title\";s:10:\"Services 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_7.png\";s:12:\"tmpl_created\";i:1520443266;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:587;s:16:\"popularity_index\";i:58;s:11:\"trend_index\";i:97;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:732;a:20:{s:4:\"tmpl\";i:410;s:2:\"id\";i:4293;s:5:\"title\";s:10:\"Services 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_6.png\";s:12:\"tmpl_created\";i:1520443265;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:588;s:16:\"popularity_index\";i:288;s:11:\"trend_index\";i:269;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:733;a:20:{s:4:\"tmpl\";i:409;s:2:\"id\";i:4284;s:5:\"title\";s:10:\"Services 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_5.png\";s:12:\"tmpl_created\";i:1520443263;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:589;s:16:\"popularity_index\";i:27;s:11:\"trend_index\";i:21;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:734;a:20:{s:4:\"tmpl\";i:407;s:2:\"id\";i:4268;s:5:\"title\";s:10:\"Services 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_4.png\";s:12:\"tmpl_created\";i:1520443259;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:590;s:16:\"popularity_index\";i:173;s:11:\"trend_index\";i:213;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:735;a:20:{s:4:\"tmpl\";i:405;s:2:\"id\";i:4252;s:5:\"title\";s:10:\"Services 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_3.png\";s:12:\"tmpl_created\";i:1520443255;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:591;s:16:\"popularity_index\";i:46;s:11:\"trend_index\";i:99;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:736;a:20:{s:4:\"tmpl\";i:677;s:2:\"id\";i:8676;s:5:\"title\";s:13:\"single page 1\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.6.jpg\";s:12:\"tmpl_created\";i:1527682423;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:592;s:16:\"popularity_index\";i:285;s:11:\"trend_index\";i:145;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:737;a:20:{s:4:\"tmpl\";i:678;s:2:\"id\";i:8678;s:5:\"title\";s:13:\"single page 2\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.2.jpg\";s:12:\"tmpl_created\";i:1527682780;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:593;s:16:\"popularity_index\";i:140;s:11:\"trend_index\";i:82;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:738;a:20:{s:4:\"tmpl\";i:679;s:2:\"id\";i:8679;s:5:\"title\";s:13:\"single page 3\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.3.jpg\";s:12:\"tmpl_created\";i:1527682847;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:594;s:16:\"popularity_index\";i:122;s:11:\"trend_index\";i:23;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:739;a:20:{s:4:\"tmpl\";i:680;s:2:\"id\";i:8680;s:5:\"title\";s:13:\"single page 4\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.1.jpg\";s:12:\"tmpl_created\";i:1527682896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:595;s:16:\"popularity_index\";i:373;s:11:\"trend_index\";i:190;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:740;a:20:{s:4:\"tmpl\";i:681;s:2:\"id\";i:8681;s:5:\"title\";s:13:\"single page 5\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.5.jpg\";s:12:\"tmpl_created\";i:1527682969;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:596;s:16:\"popularity_index\";i:287;s:11:\"trend_index\";i:218;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:741;a:20:{s:4:\"tmpl\";i:682;s:2:\"id\";i:8682;s:5:\"title\";s:13:\"single page 6\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.4.jpg\";s:12:\"tmpl_created\";i:1527683026;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:597;s:16:\"popularity_index\";i:412;s:11:\"trend_index\";i:227;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:742;a:20:{s:4:\"tmpl\";i:683;s:2:\"id\";i:8703;s:5:\"title\";s:13:\"single page 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.7.jpg\";s:12:\"tmpl_created\";i:1527683072;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:598;s:16:\"popularity_index\";i:401;s:11:\"trend_index\";i:316;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:743;a:20:{s:4:\"tmpl\";i:640;s:2:\"id\";i:7650;s:5:\"title\";s:13:\"Single Post 1\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/single_post_1_v2.jpg\";s:12:\"tmpl_created\";i:1521557736;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:24:\"[\"Blog\",\"Post\",\"Single\"]\";s:10:\"menu_order\";i:599;s:16:\"popularity_index\";i:119;s:11:\"trend_index\";i:266;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:744;a:20:{s:4:\"tmpl\";i:639;s:2:\"id\";i:7663;s:5:\"title\";s:13:\"Single Post 2\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/single_post_2_v2.jpg\";s:12:\"tmpl_created\";i:1521547761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:24:\"[\"Blog\",\"Post\",\"Single\"]\";s:10:\"menu_order\";i:600;s:16:\"popularity_index\";i:50;s:11:\"trend_index\";i:139;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:745;a:20:{s:4:\"tmpl\";i:705;s:2:\"id\";i:9296;s:5:\"title\";s:13:\"Single Post 3\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3002.jpg\";s:12:\"tmpl_created\";i:1537440673;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:601;s:16:\"popularity_index\";i:213;s:11:\"trend_index\";i:204;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:746;a:20:{s:4:\"tmpl\";i:704;s:2:\"id\";i:9301;s:5:\"title\";s:13:\"Single Post 4\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3003.jpg\";s:12:\"tmpl_created\";i:1537440661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:602;s:16:\"popularity_index\";i:248;s:11:\"trend_index\";i:336;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:747;a:20:{s:4:\"tmpl\";i:706;s:2:\"id\";i:9313;s:5:\"title\";s:13:\"Single Post 5\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3001.jpg\";s:12:\"tmpl_created\";i:1537440798;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:603;s:16:\"popularity_index\";i:197;s:11:\"trend_index\";i:177;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:748;a:20:{s:4:\"tmpl\";i:707;s:2:\"id\";i:9343;s:5:\"title\";s:13:\"Single Post 6\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3004.jpg\";s:12:\"tmpl_created\";i:1537443531;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:604;s:16:\"popularity_index\";i:228;s:11:\"trend_index\";i:279;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:749;a:20:{s:4:\"tmpl\";i:708;s:2:\"id\";i:9349;s:5:\"title\";s:13:\"Single Post 7\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3005.jpg\";s:12:\"tmpl_created\";i:1537443903;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:605;s:16:\"popularity_index\";i:158;s:11:\"trend_index\";i:253;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:750;a:20:{s:4:\"tmpl\";i:555;s:2:\"id\";i:6114;s:5:\"title\";s:7:\"Stats 1\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_6.png\";s:12:\"tmpl_created\";i:1520443659;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:610;s:16:\"popularity_index\";i:434;s:11:\"trend_index\";i:692;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:751;a:20:{s:4:\"tmpl\";i:562;s:2:\"id\";i:6178;s:5:\"title\";s:8:\"Stats 10\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_2.png\";s:12:\"tmpl_created\";i:1520443676;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/stats-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:611;s:16:\"popularity_index\";i:435;s:11:\"trend_index\";i:755;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:752;a:20:{s:4:\"tmpl\";i:561;s:2:\"id\";i:6170;s:5:\"title\";s:8:\"Stats 11\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_2.png\";s:12:\"tmpl_created\";i:1520443670;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/stats-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:612;s:16:\"popularity_index\";i:366;s:11:\"trend_index\";i:552;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:753;a:20:{s:4:\"tmpl\";i:697;s:2:\"id\";i:9174;s:5:\"title\";s:17:\"single product 01\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product01_350.png\";s:12:\"tmpl_created\";i:1532950125;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/single-product-01/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:612;s:16:\"popularity_index\";i:31;s:11:\"trend_index\";i:6;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:754;a:20:{s:4:\"tmpl\";i:563;s:2:\"id\";i:6186;s:5:\"title\";s:8:\"Stats 12\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_3.png\";s:12:\"tmpl_created\";i:1520443678;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/stats-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:613;s:16:\"popularity_index\";i:569;s:11:\"trend_index\";i:811;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:755;a:20:{s:4:\"tmpl\";i:698;s:2:\"id\";i:9178;s:5:\"title\";s:17:\"single product 02\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product02_350new.png\";s:12:\"tmpl_created\";i:1532951997;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/single-product-02/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:613;s:16:\"popularity_index\";i:66;s:11:\"trend_index\";i:42;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:756;a:20:{s:4:\"tmpl\";i:550;s:2:\"id\";i:6071;s:5:\"title\";s:8:\"Stats 13\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_3.png\";s:12:\"tmpl_created\";i:1520443649;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/stats-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:614;s:16:\"popularity_index\";i:168;s:11:\"trend_index\";i:328;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:757;a:20:{s:4:\"tmpl\";i:699;s:2:\"id\";i:9180;s:5:\"title\";s:17:\"single product 03\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product03_350.png\";s:12:\"tmpl_created\";i:1532952302;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/single-product-03/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:614;s:16:\"popularity_index\";i:108;s:11:\"trend_index\";i:66;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:758;a:20:{s:4:\"tmpl\";i:554;s:2:\"id\";i:6106;s:5:\"title\";s:7:\"Stats 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_6.png\";s:12:\"tmpl_created\";i:1520443657;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:615;s:16:\"popularity_index\";i:361;s:11:\"trend_index\";i:784;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:759;a:20:{s:4:\"tmpl\";i:700;s:2:\"id\";i:9182;s:5:\"title\";s:17:\"single product 04\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product040_350.png\";s:12:\"tmpl_created\";i:1532952606;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/single-product-04/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:615;s:16:\"popularity_index\";i:123;s:11:\"trend_index\";i:81;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:760;a:20:{s:4:\"tmpl\";i:551;s:2:\"id\";i:6079;s:5:\"title\";s:7:\"Stats 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_4.png\";s:12:\"tmpl_created\";i:1520443651;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:616;s:16:\"popularity_index\";i:284;s:11:\"trend_index\";i:385;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:761;a:20:{s:4:\"tmpl\";i:552;s:2:\"id\";i:6089;s:5:\"title\";s:7:\"Stats 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_5.png\";s:12:\"tmpl_created\";i:1520443653;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:617;s:16:\"popularity_index\";i:205;s:11:\"trend_index\";i:452;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:762;a:20:{s:4:\"tmpl\";i:549;s:2:\"id\";i:6063;s:5:\"title\";s:7:\"Stats 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_2.png\";s:12:\"tmpl_created\";i:1520443647;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:618;s:16:\"popularity_index\";i:181;s:11:\"trend_index\";i:419;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:763;a:20:{s:4:\"tmpl\";i:553;s:2:\"id\";i:6097;s:5:\"title\";s:7:\"Stats 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_2.png\";s:12:\"tmpl_created\";i:1520443655;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:619;s:16:\"popularity_index\";i:264;s:11:\"trend_index\";i:492;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:764;a:20:{s:4:\"tmpl\";i:538;s:2:\"id\";i:5956;s:5:\"title\";s:7:\"Stats 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_1.png\";s:12:\"tmpl_created\";i:1520443623;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:620;s:16:\"popularity_index\";i:532;s:11:\"trend_index\";i:541;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:765;a:20:{s:4:\"tmpl\";i:537;s:2:\"id\";i:5947;s:5:\"title\";s:7:\"Stats 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_1.png\";s:12:\"tmpl_created\";i:1520443621;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:621;s:16:\"popularity_index\";i:368;s:11:\"trend_index\";i:531;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:766;a:20:{s:4:\"tmpl\";i:559;s:2:\"id\";i:6152;s:5:\"title\";s:7:\"Stats 9\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_1.png\";s:12:\"tmpl_created\";i:1520443666;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:622;s:16:\"popularity_index\";i:272;s:11:\"trend_index\";i:557;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:767;a:20:{s:4:\"tmpl\";i:469;s:2:\"id\";i:5157;s:5:\"title\";s:11:\"Subscribe 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_white_1.png\";s:12:\"tmpl_created\";i:1520443448;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/subscribe-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:623;s:16:\"popularity_index\";i:340;s:11:\"trend_index\";i:293;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:768;a:20:{s:4:\"tmpl\";i:472;s:2:\"id\";i:5181;s:5:\"title\";s:11:\"Subscribe 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_2.png\";s:12:\"tmpl_created\";i:1520443454;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/subscribe-2-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:624;s:16:\"popularity_index\";i:451;s:11:\"trend_index\";i:340;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:769;a:20:{s:4:\"tmpl\";i:470;s:2:\"id\";i:5165;s:5:\"title\";s:11:\"Subscribe 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_1.png\";s:12:\"tmpl_created\";i:1520443450;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/subscribe-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:625;s:16:\"popularity_index\";i:520;s:11:\"trend_index\";i:620;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:770;a:20:{s:4:\"tmpl\";i:477;s:2:\"id\";i:5222;s:5:\"title\";s:11:\"Subscribe 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_3.png\";s:12:\"tmpl_created\";i:1520443464;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/subscribe-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:626;s:16:\"popularity_index\";i:397;s:11:\"trend_index\";i:427;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:771;a:20:{s:4:\"tmpl\";i:471;s:2:\"id\";i:5173;s:5:\"title\";s:11:\"Subscribe 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_white_2.png\";s:12:\"tmpl_created\";i:1520443452;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/subscribe-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:627;s:16:\"popularity_index\";i:261;s:11:\"trend_index\";i:237;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:772;a:20:{s:4:\"tmpl\";i:465;s:2:\"id\";i:4801;s:5:\"title\";s:7:\"Team 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_8.png\";s:12:\"tmpl_created\";i:1520443369;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:628;s:16:\"popularity_index\";i:332;s:11:\"trend_index\";i:188;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:773;a:20:{s:4:\"tmpl\";i:462;s:2:\"id\";i:4770;s:5:\"title\";s:7:\"Team 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_6.png\";s:12:\"tmpl_created\";i:1520443364;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/team-12-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:629;s:16:\"popularity_index\";i:432;s:11:\"trend_index\";i:488;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:774;a:20:{s:4:\"tmpl\";i:458;s:2:\"id\";i:4727;s:5:\"title\";s:7:\"Team 13\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_2.png\";s:12:\"tmpl_created\";i:1520443356;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:630;s:16:\"popularity_index\";i:375;s:11:\"trend_index\";i:345;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:775;a:20:{s:4:\"tmpl\";i:543;s:2:\"id\";i:5999;s:5:\"title\";s:7:\"Team 14\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_10.png\";s:12:\"tmpl_created\";i:1520443634;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:631;s:16:\"popularity_index\";i:110;s:11:\"trend_index\";i:318;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:776;a:20:{s:4:\"tmpl\";i:455;s:2:\"id\";i:4698;s:5:\"title\";s:7:\"Team 15\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_1.png\";s:12:\"tmpl_created\";i:1520443350;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:632;s:16:\"popularity_index\";i:449;s:11:\"trend_index\";i:410;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:777;a:20:{s:4:\"tmpl\";i:463;s:2:\"id\";i:4781;s:5:\"title\";s:7:\"Team 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_7.png\";s:12:\"tmpl_created\";i:1520443365;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:633;s:16:\"popularity_index\";i:267;s:11:\"trend_index\";i:330;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:778;a:20:{s:4:\"tmpl\";i:558;s:2:\"id\";i:6144;s:5:\"title\";s:7:\"Team 17\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_11.png\";s:12:\"tmpl_created\";i:1520443664;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:634;s:16:\"popularity_index\";i:166;s:11:\"trend_index\";i:365;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:779;a:20:{s:4:\"tmpl\";i:464;s:2:\"id\";i:4793;s:5:\"title\";s:7:\"Team 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_8.png\";s:12:\"tmpl_created\";i:1520443367;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:635;s:16:\"popularity_index\";i:207;s:11:\"trend_index\";i:173;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:780;a:20:{s:4:\"tmpl\";i:466;s:2:\"id\";i:4809;s:5:\"title\";s:7:\"Team 19\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_9.png\";s:12:\"tmpl_created\";i:1520443371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:636;s:16:\"popularity_index\";i:300;s:11:\"trend_index\";i:465;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:781;a:20:{s:4:\"tmpl\";i:459;s:2:\"id\";i:4736;s:5:\"title\";s:7:\"Team 20\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_4.png\";s:12:\"tmpl_created\";i:1520443358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:637;s:16:\"popularity_index\";i:144;s:11:\"trend_index\";i:159;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:782;a:20:{s:4:\"tmpl\";i:467;s:2:\"id\";i:4818;s:5:\"title\";s:7:\"Team 21\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_9.png\";s:12:\"tmpl_created\";i:1520443373;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:638;s:16:\"popularity_index\";i:515;s:11:\"trend_index\";i:606;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:783;a:20:{s:4:\"tmpl\";i:461;s:2:\"id\";i:4759;s:5:\"title\";s:7:\"Team 22\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_5.png\";s:12:\"tmpl_created\";i:1520443362;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-22/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:639;s:16:\"popularity_index\";i:299;s:11:\"trend_index\";i:376;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:784;a:20:{s:4:\"tmpl\";i:460;s:2:\"id\";i:4746;s:5:\"title\";s:7:\"Team 23\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_4.png\";s:12:\"tmpl_created\";i:1520443360;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-23/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:640;s:16:\"popularity_index\";i:282;s:11:\"trend_index\";i:378;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:785;a:20:{s:4:\"tmpl\";i:457;s:2:\"id\";i:4718;s:5:\"title\";s:6:\"Team 4\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_3.png\";s:12:\"tmpl_created\";i:1520443354;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/team-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:641;s:16:\"popularity_index\";i:192;s:11:\"trend_index\";i:359;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:786;a:20:{s:4:\"tmpl\";i:456;s:2:\"id\";i:4706;s:5:\"title\";s:6:\"Team 5\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_2.png\";s:12:\"tmpl_created\";i:1520443352;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/team-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:642;s:16:\"popularity_index\";i:149;s:11:\"trend_index\";i:299;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:787;a:20:{s:4:\"tmpl\";i:544;s:2:\"id\";i:6008;s:5:\"title\";s:6:\"Team 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_10.png\";s:12:\"tmpl_created\";i:1520443636;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/team-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:643;s:16:\"popularity_index\";i:75;s:11:\"trend_index\";i:277;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:788;a:20:{s:4:\"tmpl\";i:454;s:2:\"id\";i:4690;s:5:\"title\";s:6:\"Team 7\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_1.png\";s:12:\"tmpl_created\";i:1520443348;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/team-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:644;s:16:\"popularity_index\";i:243;s:11:\"trend_index\";i:402;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:789;a:20:{s:4:\"tmpl\";i:586;s:2:\"id\";i:4921;s:5:\"title\";s:14:\"Testimonial 10\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_5.png\";s:12:\"tmpl_created\";i:1520520562;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:645;s:16:\"popularity_index\";i:219;s:11:\"trend_index\";i:198;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:790;a:20:{s:4:\"tmpl\";i:582;s:2:\"id\";i:4889;s:5:\"title\";s:14:\"Testimonial 11\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/customers-2.jpg\";s:12:\"tmpl_created\";i:1520520556;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:646;s:16:\"popularity_index\";i:557;s:11:\"trend_index\";i:522;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:791;a:20:{s:4:\"tmpl\";i:580;s:2:\"id\";i:4871;s:5:\"title\";s:14:\"Testimonial 12\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_3.png\";s:12:\"tmpl_created\";i:1520520552;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:647;s:16:\"popularity_index\";i:262;s:11:\"trend_index\";i:391;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:792;a:20:{s:4:\"tmpl\";i:578;s:2:\"id\";i:4854;s:5:\"title\";s:14:\"Testimonial 13\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_2.png\";s:12:\"tmpl_created\";i:1520520549;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:648;s:16:\"popularity_index\";i:637;s:11:\"trend_index\";i:741;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:793;a:20:{s:4:\"tmpl\";i:595;s:2:\"id\";i:4995;s:5:\"title\";s:14:\"Testimonial 14\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_12.png\";s:12:\"tmpl_created\";i:1520520577;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:649;s:16:\"popularity_index\";i:400;s:11:\"trend_index\";i:411;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:794;a:20:{s:4:\"tmpl\";i:593;s:2:\"id\";i:4979;s:5:\"title\";s:14:\"Testimonial 15\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_10.png\";s:12:\"tmpl_created\";i:1520520573;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:650;s:16:\"popularity_index\";i:568;s:11:\"trend_index\";i:544;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:795;a:20:{s:4:\"tmpl\";i:576;s:2:\"id\";i:4835;s:5:\"title\";s:14:\"Testimonial 16\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_1.png\";s:12:\"tmpl_created\";i:1520520546;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:651;s:16:\"popularity_index\";i:399;s:11:\"trend_index\";i:401;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:796;a:20:{s:4:\"tmpl\";i:594;s:2:\"id\";i:4987;s:5:\"title\";s:14:\"Testimonial 17\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_12-1.png\";s:12:\"tmpl_created\";i:1520520575;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:652;s:16:\"popularity_index\";i:159;s:11:\"trend_index\";i:199;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:797;a:20:{s:4:\"tmpl\";i:577;s:2:\"id\";i:4843;s:5:\"title\";s:14:\"Testimonial 18\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_2.png\";s:12:\"tmpl_created\";i:1520520548;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:653;s:16:\"popularity_index\";i:457;s:11:\"trend_index\";i:780;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:798;a:20:{s:4:\"tmpl\";i:579;s:2:\"id\";i:4863;s:5:\"title\";s:14:\"Testimonial 19\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_3.png\";s:12:\"tmpl_created\";i:1520520551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:654;s:16:\"popularity_index\";i:245;s:11:\"trend_index\";i:599;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:799;a:20:{s:4:\"tmpl\";i:581;s:2:\"id\";i:4880;s:5:\"title\";s:14:\"Testimonial 20\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/customers-1.jpg\";s:12:\"tmpl_created\";i:1520520554;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:655;s:16:\"popularity_index\";i:446;s:11:\"trend_index\";i:653;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:800;a:20:{s:4:\"tmpl\";i:583;s:2:\"id\";i:4897;s:5:\"title\";s:14:\"Testimonial 21\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_5.png\";s:12:\"tmpl_created\";i:1520520557;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:656;s:16:\"popularity_index\";i:78;s:11:\"trend_index\";i:289;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:801;a:20:{s:4:\"tmpl\";i:584;s:2:\"id\";i:4905;s:5:\"title\";s:14:\"Testimonial 22\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_6.png\";s:12:\"tmpl_created\";i:1520520559;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-22/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:657;s:16:\"popularity_index\";i:121;s:11:\"trend_index\";i:221;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:802;a:20:{s:4:\"tmpl\";i:585;s:2:\"id\";i:4913;s:5:\"title\";s:14:\"Testimonial 23\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_7.png\";s:12:\"tmpl_created\";i:1520520561;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-23/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:658;s:16:\"popularity_index\";i:247;s:11:\"trend_index\";i:566;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:803;a:20:{s:4:\"tmpl\";i:575;s:2:\"id\";i:4826;s:5:\"title\";s:14:\"Testimonial 24\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_1.png\";s:12:\"tmpl_created\";i:1520520544;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/testimonial-24-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:659;s:16:\"popularity_index\";i:256;s:11:\"trend_index\";i:395;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:804;a:20:{s:4:\"tmpl\";i:587;s:2:\"id\";i:4929;s:5:\"title\";s:14:\"Testimonial 24\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_8.png\";s:12:\"tmpl_created\";i:1520520564;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-24/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:660;s:16:\"popularity_index\";i:49;s:11:\"trend_index\";i:206;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:805;a:20:{s:4:\"tmpl\";i:591;s:2:\"id\";i:4963;s:5:\"title\";s:14:\"Testimonial 25\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_10.png\";s:12:\"tmpl_created\";i:1520520570;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/testimonial-25-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:661;s:16:\"popularity_index\";i:417;s:11:\"trend_index\";i:546;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:806;a:20:{s:4:\"tmpl\";i:592;s:2:\"id\";i:4971;s:5:\"title\";s:14:\"Testimonial 26\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_11.png\";s:12:\"tmpl_created\";i:1520520572;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-26/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:662;s:16:\"popularity_index\";i:649;s:11:\"trend_index\";i:718;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:807;a:20:{s:4:\"tmpl\";i:589;s:2:\"id\";i:4947;s:5:\"title\";s:14:\"Testimonial 27\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_9.png\";s:12:\"tmpl_created\";i:1520520567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-27/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:663;s:16:\"popularity_index\";i:221;s:11:\"trend_index\";i:496;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:808;a:20:{s:4:\"tmpl\";i:590;s:2:\"id\";i:4955;s:5:\"title\";s:14:\"Testimonial 29\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_9.png\";s:12:\"tmpl_created\";i:1520520569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-29/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:664;s:16:\"popularity_index\";i:378;s:11:\"trend_index\";i:695;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:809;a:20:{s:4:\"tmpl\";i:588;s:2:\"id\";i:4939;s:5:\"title\";s:13:\"Testimonial 9\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_8.png\";s:12:\"tmpl_created\";i:1520520565;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/testimonial-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:665;s:16:\"popularity_index\";i:103;s:11:\"trend_index\";i:341;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:810;a:20:{s:4:\"tmpl\";i:928;s:2:\"id\";i:12509;s:5:\"title\";s:18:\"Travel – 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/12/404.png\";s:12:\"tmpl_created\";i:1575960378;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/travel-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:24:\"[\"404\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:666;s:16:\"popularity_index\";i:747;s:11:\"trend_index\";i:712;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:811;a:20:{s:4:\"tmpl\";i:929;s:2:\"id\";i:12516;s:5:\"title\";s:27:\"Travel – Archive Blog\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/12/Archiv_s.png\";s:12:\"tmpl_created\";i:1575960387;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/travel-archive-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:667;s:16:\"popularity_index\";i:496;s:11:\"trend_index\";i:487;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:812;a:20:{s:4:\"tmpl\";i:927;s:2:\"id\";i:12500;s:5:\"title\";s:21:\"Travel – Header\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-travel-and-tours.png\";s:12:\"tmpl_created\";i:1575960371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/travel-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:27:\"[\"Header\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:668;s:16:\"popularity_index\";i:443;s:11:\"trend_index\";i:434;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:813;a:20:{s:4:\"tmpl\";i:930;s:2:\"id\";i:12524;s:5:\"title\";s:26:\"Travel – Single Post\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/12/Single_Post_s.png\";s:12:\"tmpl_created\";i:1575960397;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/travel-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:669;s:16:\"popularity_index\";i:591;s:11:\"trend_index\";i:663;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:814;a:20:{s:4:\"tmpl\";i:931;s:2:\"id\";i:12531;s:5:\"title\";s:31:\"Travel – Single Post Tour\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/12/Single_Tour_s.png\";s:12:\"tmpl_created\";i:1575960404;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/travel-single-post-tour/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:670;s:16:\"popularity_index\";i:630;s:11:\"trend_index\";i:548;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:815;a:20:{s:4:\"tmpl\";i:926;s:2:\"id\";i:12492;s:5:\"title\";s:14:\"Travel -Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/12/Footer_s.png\";s:12:\"tmpl_created\";i:1575960358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/travel-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:27:\"[\"Footer\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:671;s:16:\"popularity_index\";i:453;s:11:\"trend_index\";i:322;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:816;a:20:{s:4:\"tmpl\";i:1068;s:2:\"id\";i:15498;s:5:\"title\";s:23:\"Travel Blog – 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/11/404.jpg\";s:12:\"tmpl_created\";i:1606215636;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/travel-blog-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:23:\"[\"404\",\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:672;s:16:\"popularity_index\";i:749;s:11:\"trend_index\";i:759;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:817;a:20:{s:4:\"tmpl\";i:1069;s:2:\"id\";i:15508;s:5:\"title\";s:29:\"Travel Blog – Archive 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/11/Archive-1-350.jpg\";s:12:\"tmpl_created\";i:1606215649;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/travel-blog-archive-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:673;s:16:\"popularity_index\";i:659;s:11:\"trend_index\";i:468;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:818;a:20:{s:4:\"tmpl\";i:1070;s:2:\"id\";i:15518;s:5:\"title\";s:29:\"Travel Blog – Archive 2\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/11/Archive-2-350-Copy.jpg\";s:12:\"tmpl_created\";i:1606215663;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/travel-blog-archive-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:674;s:16:\"popularity_index\";i:688;s:11:\"trend_index\";i:431;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:819;a:20:{s:4:\"tmpl\";i:1071;s:2:\"id\";i:15528;s:5:\"title\";s:26:\"Travel Blog – Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/11/Footer.jpg\";s:12:\"tmpl_created\";i:1606215673;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/travel-blog-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:26:\"[\"Blog\",\"Footer\",\"Travel\"]\";s:10:\"menu_order\";i:675;s:16:\"popularity_index\";i:656;s:11:\"trend_index\";i:377;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:820;a:20:{s:4:\"tmpl\";i:1067;s:2:\"id\";i:15536;s:5:\"title\";s:26:\"Travel Blog – Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/11/Header.jpg\";s:12:\"tmpl_created\";i:1606215625;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/travel-blog-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:26:\"[\"Blog\",\"Header\",\"Travel\"]\";s:10:\"menu_order\";i:676;s:16:\"popularity_index\";i:584;s:11:\"trend_index\";i:228;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:821;a:20:{s:4:\"tmpl\";i:1072;s:2:\"id\";i:15545;s:5:\"title\";s:33:\"Travel Blog – Single Post 1\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/11/Single-1-350.jpg\";s:12:\"tmpl_created\";i:1606215684;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/travel-blog-single-post-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:677;s:16:\"popularity_index\";i:669;s:11:\"trend_index\";i:482;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:822;a:20:{s:4:\"tmpl\";i:1066;s:2:\"id\";i:15556;s:5:\"title\";s:33:\"Travel Blog – Single Post 2\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/11/Single-2-350.jpg\";s:12:\"tmpl_created\";i:1606215613;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/travel-blog-single-post-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:678;s:16:\"popularity_index\";i:652;s:11:\"trend_index\";i:454;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}}}','off'),(184,'elementor_remote_info_feed_data','a:3:{i:0;a:5:{s:5:\"title\";s:57:\"Introducing Cloud Templates: your personal design library\";s:7:\"excerpt\";s:153:\"Transform your workflow with Elementor\'s new Cloud Templates – create, save, and access your templates across all your websites with just a few clicks.\";s:7:\"created\";i:1749048239;s:5:\"badge\";s:3:\"NEW\";s:3:\"url\";s:127:\"https://elementor.com/blog/introducing-cloud-templates/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:1;a:5:{s:5:\"title\";s:74:\"Introducing Editor V4 Alpha: The Future of Website Building with Elementor\";s:7:\"excerpt\";s:242:\"Editor V4 Alpha introduces a CSS-first framework with reusable Classes and States, improved performance, a unified styling system, and fully responsive style controls—all designed to make your website building more efficient and consistent.\";s:7:\"created\";i:1748357309;s:5:\"badge\";s:4:\" NEW\";s:3:\"url\";s:119:\"https://elementor.com/blog/editor-v4-1st-alpha/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:2;a:5:{s:5:\"title\";s:101:\"Introducing Elementor 3.27: Flexible Grids, Better Security, Enhanced Accessibility & More Creativity\";s:7:\"excerpt\";s:409:\"Elementor 3.27 is packed with features designed to give you more control, boost your site’s performance, enhance accessibility, and take your creativity to new heights. This version is all about solving real challenges—whether it’s designing intricate Grid layouts, embedding modern video formats, or adding effortless animations, Elementor 3.27 makes your workflow smoother and your websites smarter.\r\n\";s:7:\"created\";i:1738142681;s:5:\"badge\";s:3:\"NEW\";s:3:\"url\";s:155:\"https://elementor.com/blog/elementor-327-grid-layouts-local-google-fonts-ai-motion/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}}','off'),(191,'elementor_pro_license_key','activated','auto'),(192,'_elementor_pro_license_v2_data','a:2:{s:7:\"timeout\";i:1750225188;s:5:\"value\";s:71:\"{\"success\":true,\"license\":\"valid\",\"expires\":\"01.01.2030\",\"features\":[]}\";}','auto'),(193,'_transient_elementor_pro_license_data','a:2:{s:7:\"license\";s:5:\"valid\";s:7:\"expires\";s:12:\"Jun 17, 2027\";}','on'),(194,'_transient_timeout_elementor_pro_license_data','36001040400','on'),(195,'elementor_pro_version','3.10.1','auto'),(196,'widget_elementor-library','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),(197,'_elementor_pro_installed_time','1721759658','auto'),(198,'elementor_submissions_db_version','5','auto'),(199,'_elementor_pro_api_requests_lock','a:1:{s:11:\"get_version\";i:1750181792;}','auto'),(203,'envato_elements_version','2.0.13','auto'),(204,'envato_elements_install_time','1721759689','auto'),(206,'elementor_disable_color_schemes','yes','auto'),(207,'elementor_disable_typography_schemes','yes','auto'),(208,'elementor_fonts_manager_font_types','a:0:{}','auto'),(209,'elementor_fonts_manager_fonts','a:0:{}','auto'),(210,'skb_cife_general','','auto'),(211,'skb_cife_manage_icon','','auto'),(212,'skb_cife_update_info','','auto'),(215,'elementor_custom_icon_sets_config','a:0:{}','auto'),(216,'_elementor_notifications_data','a:2:{s:7:\"timeout\";i:1721938447;s:5:\"value\";s:10121:\"[{\"id\":\"search-widget-3.23\",\"title\":\"Increases site exploration with AJAX loading & live results\",\"description\":\"Enabling faster, more accurate content discovery and helping visitors find what they\'re looking for.\",\"topic\":\"New in Elementor Pro 3.23\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/search-widget-3.23.png\",\"chipPlan\":\"Pro\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3-23-features\\/\",\"readMoreText\":\"Learn More\",\"conditions\":[[{\"type\":\"plugin\",\"plugin\":\"elementor-pro\\/elementor-pro.php\"}]]},{\"id\":\"search-widget-3.23\",\"title\":\"Increases site exploration with AJAX loading & live results\",\"description\":\"Enabling faster, more accurate content discovery and helping visitors find what they\'re looking for.\",\"topic\":\"New in Elementor Pro 3.23\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/search-widget-3.23.png\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3-23-features\\/\",\"readMoreText\":\"Learn More\",\"cta\":\"Upgrade\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-search-widget\\/\"},{\"id\":\"floating-buttons-3.23\",\"title\":\"Get more leads with Floating Buttons\",\"description\":\"Empowering you to increase conversion by seamlessly integrating a direct link to a chat or different platforms in the form of a floating button.\",\"topic\":\"New in Elementor 3.23\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/floating-buttons-3.23.png\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3-23-features-blog\\/\",\"readMoreText\":\"Learn More\"},{\"id\":\"link-in-bio-3.23\",\"title\":\"New Link in Bio Widgets for any Purpose\",\"description\":\"Create a polished and professional page with just a few clicks and effectively showcase all your important links. Choose from 7 unique widgets and over 60 templates!\",\"topic\":\"New in Elementor 3.23\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/link-in-bio-3.23.png\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-link-in-bio-3-23-blog\\/\",\"readMoreText\":\"Learn More\"},{\"id\":\"nested-elements-3.23\",\"title\":\"Work faster on Nested Elements\",\"description\":\"Customize Nested Elements faster with version 3.23. Now every change to a Nested Element will only affect the relevant element and not require reloading the entire widget, improving Editor interaction time by 60%-98%.\",\"topic\":\"New in Elementor 3.23\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/nested-elements-3.23.png\",\"chipTags\":[\"Performance\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3-23-features-blog\\/\",\"readMoreText\":\"Learn More\"},{\"id\":\"element-caching-3.22\",\"title\":\"Accelerate Loading Times with Element Caching\",\"description\":\"Ensure a smooth and engaging experience for visitors by activating Element Caching.\",\"topic\":\"Elementor 3.22\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/performance-caching.png\",\"chipTags\":[\"Performance\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-element-caching-blog\\/\",\"readMoreText\":\"Learn More\",\"conditions\":[[{\"type\":\"plugin\",\"plugin\":\"elementor-pro\\/elementor-pro.php\"}]]},{\"id\":\"element-caching-3.22\",\"title\":\"Accelerate Loading Times with Element Caching\",\"description\":\"Ensure a smooth and engaging experience for visitors by activating Element Caching.\",\"topic\":\"Elementor 3.22\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/performance-caching.png\",\"chipTags\":[\"Performance\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-element-caching-blog\\/\",\"readMoreText\":\"Learn More\"},{\"id\":\"off-canvas-3.22\",\"title\":\"Build Interactive Layouts with the New Off-Canvas Widget\",\"description\":\"Tigger containers from a connected link to allow them to slide into view anywhere on the page.\",\"topic\":\"Elementor Pro 3.22\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/off-canvas.png\",\"chipPlan\":\"Pro\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-off-canvas-blog\\/\",\"readMoreText\":\"Learn More\",\"conditions\":[[{\"type\":\"plugin\",\"plugin\":\"elementor-pro\\/elementor-pro.php\"}]]},{\"id\":\"off-canvas-3.22\",\"title\":\"Build Interactive Layouts with the New Off-Canvas Widget\",\"description\":\"Tigger containers from a connected link to allow them to slide into view anywhere on the page.\",\"topic\":\"Elementor Pro 3.22\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/off-canvas.png\",\"chipPlan\":\"Pro\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-off-canvas-blog\\/\",\"readMoreText\":\"Learn More\",\"cta\":\"Upgrade\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-off-canvas\\/\\/\"},{\"id\":\"ai-personal-assistant-styling\",\"title\":\"AI Copilot Now Inherits Global Styling\",\"description\":\"Copilot now uses your site\'s style for fonts & colors when generating a container layout for even faster web creation backed by the power of AI. Enjoy a seamless design experience.\",\"topic\":\"Elementor AI\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/copilot-ai.png\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/go.elementor.com\\/ai-notification-personal-assistant-global-styling-blog\\/\",\"readMoreText\":\"Learn More\",\"conditions\":[[{\"type\":\"introduction_meta\",\"meta\":\"ai_get_started\"}]],\"cta\":\"Start Free Trial\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/ai-notification-personal-assistant-global-styling\\/\"},{\"id\":\"ai-personal-assistant-styling\",\"title\":\"AI Copilot Now Inherits Global Styling\",\"description\":\"Copilot now uses your site\'s style for fonts & colors when generating a container layout for even faster web creation backed by the power of AI. Enjoy a seamless design experience.\",\"topic\":\"Elementor AI\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/copilot-ai.png\",\"chipTags\":[\"New Feature\"],\"cta\":\"Start Free Trial\",\"link\":\"https:\\/\\/go.elementor.com\\/ai-notification-personal-assistant-global-styling-blog\\/\",\"readMoreText\":\"Learn More\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/ai-notification-personal-assistant-global-styling\\/\"},{\"id\":\"5-star-rating-prompt\",\"title\":\"Love the New Features? Let Us Know with 5 Stars!\",\"description\":\"Help spread the word by telling the world what you love about Elementor.\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/5-star-rating-prompt.png\",\"cta\":\"Leave a Review\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/wp-dash-notification-five-stars\\/\"},{\"id\":\"ai-personal-assistant-3.21\",\"title\":\"Meet Your Personal AI Assistant\",\"description\":\"Copilot suggests container layouts, blending your personal style with industry best practices.\",\"topic\":\"Elementor AI\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/ai-personal-assistant-3.21.png\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/go.elementor.com\\/ai-notification-personal-assistant-blog\\/\",\"readMoreText\":\"Learn More\",\"conditions\":[[{\"type\":\"introduction_meta\",\"meta\":\"ai_get_started\"}]],\"cta\":\"Start Free Trial\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/ai-notification-personal-assistant\\/\"},{\"id\":\"ai-personal-assistant-3.21\",\"title\":\"Meet Your Personal AI Assistant\",\"description\":\"Copilot suggests container layouts, blending your personal style with industry best practices.\",\"topic\":\"Elementor AI\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/ai-personal-assistant-3.21.png\",\"chipTags\":[\"New Feature\"],\"cta\":\"Start Free Trial\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/ai-notification-web-based-container\\/\"},{\"id\":\"image-optimizer-3.19\",\"title\":\"Effortlessly optimize images for a stunning, high-speed website with the Image Optimizer plugin.\",\"description\":\"Image Optimizer perfectly balances between image quality and performance to boost your website. Resize, compress, and convert images to WebP, for faster loading times and and better user experience.\",\"topic\":\"Image Optimizer Plugin by Elementor\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/image-optimizer-3.19.png\",\"chipTags\":[\"New plugin\"],\"cta\":\"Get the Image Optimizer\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/io-notification-wp-dash-learn-more\\/\",\"conditions\":[[{\"type\":\"plugin\",\"operator\":\"!=\",\"plugin\":\"image-optimization\\/image-optimization.php\"}]]},{\"id\":\"display-conditions-dynamic-content-3.20\",\"title\":\"Display Conditions for Dynamic Content\",\"description\":\"Transform your single post and page templates into dynamic designs that fit their content by setting display conditions based on Dynamic Tags, including native WordPress Custom Fields.\",\"topic\":\"Version Pro 3.20\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/dynamic-content-pro-3.20.png\",\"chipPlan\":\"Pro\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-display-conditions-blog\\/\",\"readMoreText\":\"Learn More\",\"conditions\":[[{\"type\":\"plugin\",\"plugin\":\"elementor-pro\\/elementor-pro.php\"}]]},{\"id\":\"display-conditions-dynamic-content-3.20\",\"title\":\"Display Content on Your Terms: Decide When, Where, and by Who the Content is Viewed\",\"description\":\"Tailor the content on your page to visitors based on various rules to create a powerful experience.\",\"topic\":\"Version Pro 3.20\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/display-conditions-3.20.png\",\"chipPlan\":\"Pro\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-display-conditions-blog\\/\",\"readMoreText\":\"Learn More\",\"cta\":\"Upgrade\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-dispaly-conditions\\/\"},{\"id\":\"elementor-add-ons\",\"title\":\"Exciting Add-Ons & Plugins to Enhance Elementor Websites\",\"description\":\"Uncover a treasure trove of tools from Elementor and others, put together to boost your website\'s capabilities and enhance its overall appeal.\",\"topic\":\"Elementor Add-Ons\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/elementor-add-ons.png\",\"cta\":\"Check it out\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/wp-dash-notification-addons\\/\"}]\";}','off'),(219,'elementor_log','a:3:{s:32:\"aff770fe403d47651bc3bdb35a6ff2dc\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0file\";s:113:\"/home/admin/victor-quintero.designsfunnelserver.com/wp-content/plugins/elementor/includes/base/controls-stack.php\";s:7:\"\0*\0line\";i:1487;s:7:\"\0*\0date\";s:19:\"2024-07-23 18:36:16\";s:7:\"\0*\0type\";s:7:\"warning\";s:10:\"\0*\0message\";s:60:\"Undefined array key "body_background_image_tablet"\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:1:{i:0;a:3:{s:8:\"function\";s:8:\"shutdown\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-07-23 18:36:16\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:7:\"warning\";s:7:\"message\";s:50:\"Undefined array key \"body_background_image_tablet\"\";s:4:\"file\";s:113:\"/home/admin/victor-quintero.designsfunnelserver.com/wp-content/plugins/elementor/includes/base/controls-stack.php\";s:4:\"line\";i:1487;s:5:\"trace\";b:1;}}s:32:\"780d24dc506bdce3ada8389b622f6a11\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:9:\"\0*\0column\";s:7:\"1265357\";s:7:\"\0*\0file\";s:111:\"https://victor-quintero.designsfunnelserver.com/wp-content/plugins/elementor/assets/js/editor.min.js?ver=3.23.2\";s:7:\"\0*\0line\";s:1:\"3\";s:7:\"\0*\0date\";s:19:\"2024-07-23 19:47:58\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:74:\"Cannot read properties of null (reading 'getBoundingClientRect')\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-07-23 19:47:58\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1721764078\";s:7:\"message\";s:64:\"Cannot read properties of null (reading \'getBoundingClientRect\')\";s:3:\"url\";s:111:\"https://victor-quintero.designsfunnelserver.com/wp-content/plugins/elementor/assets/js/editor.min.js?ver=3.23.2\";s:4:\"line\";s:1:\"3\";s:6:\"column\";s:7:\"1265357\";}}s:32:\"58fb37337126433428b9342b4ff6938d\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:9:\"\0*\0column\";s:5:\"28760\";s:7:\"\0*\0file\";s:157:\"https://victor-quintero.designsfunnelserver.com/wp-admin/load-scripts.php?c=0&loadchunk_0=jquery-core,jquery-migrate,utils,moxiejs,plupload&ver=6.6.1\";s:7:\"\0*\0line\";s:1:\"2\";s:7:\"\0*\0date\";s:19:\"2024-07-24 16:35:30\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:63:\"Cannot read properties of undefined (reading 'value')\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:10;s:14:\"\0*\0times_dates\";a:10:{i:0;s:19:\"2024-07-24 16:35:30\";i:1;s:19:\"2024-07-24 16:35:48\";i:2;s:19:\"2024-07-24 16:37:44\";i:3;s:19:\"2024-07-24 16:38:04\";i:4;s:19:\"2024-07-24 16:38:27\";i:5;s:19:\"2024-07-24 16:38:28\";i:6;s:19:\"2024-07-24 16:38:39\";i:7;s:19:\"2024-07-24 16:38:46\";i:8;s:19:\"2024-07-24 16:38:55\";i:9;s:19:\"2024-07-24 16:39:14\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1721838930\";s:7:\"message\";s:53:\"Cannot read properties of undefined (reading \'value\')\";s:3:\"url\";s:157:\"https://victor-quintero.designsfunnelserver.com/wp-admin/load-scripts.php?c=0&loadchunk_0=jquery-core,jquery-migrate,utils,moxiejs,plupload&ver=6.6.1\";s:4:\"line\";s:1:\"2\";s:6:\"column\";s:5:\"28760\";}}}','off'),(222,'elementor_pro_theme_builder_conditions','a:1:{s:6:\"header\";a:1:{i:18;a:1:{i:0;s:15:\"include/general\";}}}','auto'),(223,'elementor_unfiltered_files_upload','1','auto'),(228,'elementskit-lite__banner_last_check','1721839474','auto'),(229,'elementskit-lite__banner_data','O:8:\"stdClass\":10:{s:8:\"10011319\";O:8:\"stdClass\":7:{s:2:\"id\";i:10011319;s:5:\"title\";s:34:\"Wpmet Birthday Sale 2024 Dashboard\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:9:\"dashboard\";s:5:\"start\";i:1720396800;s:3:\"end\";i:1722124800;s:4:\"data\";O:8:\"stdClass\":9:{s:4:\"type\";s:6:\"notice\";s:11:\"button_link\";s:22:\"https://wpmet.com/bd24\";s:11:\"button_text\";s:24:\"Claim Your Discount Now!\";s:11:\"notice_body\";s:559:\"

Birthday sales from Wpmet

\r\n

Save up to $180 on Premium WordPress Plugins!

\r\n

Get 30% discounts on each of our PRO plugins — ElementsKit, Gutenkit, ShopEngine, MetForm, EmailKit, WP Social, WP Ultimate Review — or get them all in super-saver bundles to save 80% instantly!

\";s:12:\"notice_image\";s:66:\"https://api.wpmet.com/auth/wp-content/uploads/2023/07/notice-1.png\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";s:10:\"unique_key\";s:0:\"\";}}s:8:\"10011318\";O:8:\"stdClass\":7:{s:2:\"id\";i:10011318;s:5:\"title\";s:33:\"Wpmet Birthday Sale 2024 Own Page\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:11:\"plugin_page\";s:5:\"start\";i:1720396800;s:3:\"end\";i:1722124800;s:4:\"data\";O:8:\"stdClass\":9:{s:4:\"type\";s:6:\"notice\";s:11:\"button_link\";s:22:\"https://wpmet.com/bd24\";s:11:\"button_text\";s:24:\"Claim Your Discount Now!\";s:11:\"notice_body\";s:559:\"

Birthday sales from Wpmet

\r\n

Save up to $180 on Premium WordPress Plugins!

\r\n

Get 30% discounts on each of our PRO plugins — ElementsKit, Gutenkit, ShopEngine, MetForm, EmailKit, WP Social, WP Ultimate Review — or get them all in super-saver bundles to save 80% instantly!

\";s:12:\"notice_image\";s:66:\"https://api.wpmet.com/auth/wp-content/uploads/2023/07/notice-1.png\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";s:10:\"unique_key\";s:0:\"\";}}s:8:\"10011283\";O:8:\"stdClass\":7:{s:2:\"id\";i:10011283;s:5:\"title\";s:59:\"GutenKit Early Bird Campaign Wpmet and GetGenie (Dashboard)\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:9:\"dashboard\";s:5:\"start\";i:1716940800;s:3:\"end\";i:1719532800;s:4:\"data\";O:8:\"stdClass\":9:{s:4:\"type\";s:6:\"notice\";s:11:\"button_link\";s:31:\" https://wpmet.com/gutenltd-not\";s:11:\"button_text\";s:24:\"Claim Your Discount Now!\";s:11:\"notice_body\";s:492:\"

GUtenKit pro early bird sale

\r\n

Save up to $310 on Latest WordPress Plugin!

\r\n

To be an early adopter of this page builder blocks plugin, we’re offering you up to 65% discount on GutenKit Lifetime Deals!

\";s:12:\"notice_image\";s:64:\"https://api.wpmet.com/auth/wp-content/uploads/2024/05/notice.png\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";s:10:\"unique_key\";s:0:\"\";}}s:8:\"10011281\";O:8:\"stdClass\":7:{s:2:\"id\";i:10011281;s:5:\"title\";s:59:\"GutenKit Early Bird Campaign Wpmet and GetGenie (Own Pages)\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:11:\"plugin_page\";s:5:\"start\";i:1716940800;s:3:\"end\";i:1719532800;s:4:\"data\";O:8:\"stdClass\":9:{s:4:\"type\";s:6:\"notice\";s:11:\"button_link\";s:31:\" https://wpmet.com/gutenltd-not\";s:11:\"button_text\";s:24:\"Claim Your Discount Now!\";s:11:\"notice_body\";s:492:\"

GUtenKit pro early bird sale

\r\n

Save up to $310 on Latest WordPress Plugin!

\r\n

To be an early adopter of this page builder blocks plugin, we’re offering you up to 65% discount on GutenKit Lifetime Deals!

\";s:12:\"notice_image\";s:64:\"https://api.wpmet.com/auth/wp-content/uploads/2024/05/notice.png\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";s:10:\"unique_key\";s:0:\"\";}}s:8:\"10011221\";O:8:\"stdClass\":7:{s:2:\"id\";i:10011221;s:5:\"title\";s:33:\"Wpmet Ramadan Sale 2024 Own Pages\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:11:\"plugin_page\";s:5:\"start\";i:1710115200;s:3:\"end\";i:1711929600;s:4:\"data\";O:8:\"stdClass\":9:{s:4:\"type\";s:6:\"notice\";s:11:\"button_link\";s:34:\"https://wpmet.com/ramadan24-notice\";s:11:\"button_text\";s:24:\"Claim Your Discount Now!\";s:11:\"notice_body\";s:538:\"

Ramadan sales from Wpmet

\r\n

Save up to $180 on Premium WordPress Plugins!

\r\n

Get 30% discounts on each of our PRO plugins — ElementsKit, ShopEngine, MetForm, WP Social, WP Ultimate Review — or get them all in super-saver bundles to save 80% instantly!

\";s:12:\"notice_image\";s:66:\"https://api.wpmet.com/auth/wp-content/uploads/2023/07/notice-1.png\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";s:10:\"unique_key\";s:0:\"\";}}s:8:\"10011220\";O:8:\"stdClass\":7:{s:2:\"id\";i:10011220;s:5:\"title\";s:33:\"Wpmet Ramadan Sale 2024 Dashboard\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:9:\"dashboard\";s:5:\"start\";i:1710028800;s:3:\"end\";i:1711929600;s:4:\"data\";O:8:\"stdClass\":9:{s:4:\"type\";s:6:\"notice\";s:11:\"button_link\";s:34:\"https://wpmet.com/ramadan24-notice\";s:11:\"button_text\";s:24:\"Claim Your Discount Now!\";s:11:\"notice_body\";s:538:\"

Ramadan sales from Wpmet

\r\n

Save up to $180 on Premium WordPress Plugins!

\r\n

Get 30% discounts on each of our PRO plugins — ElementsKit, ShopEngine, MetForm, WP Social, WP Ultimate Review — or get them all in super-saver bundles to save 80% instantly!

\";s:12:\"notice_image\";s:66:\"https://api.wpmet.com/auth/wp-content/uploads/2023/07/notice-1.png\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";s:10:\"unique_key\";s:0:\"\";}}s:8:\"10011059\";O:8:\"stdClass\":7:{s:2:\"id\";i:10011059;s:5:\"title\";s:34:\"Wpmet Holiday Notice Ownpages 2023\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:11:\"plugin_page\";s:5:\"start\";i:1702512000;s:3:\"end\";i:1704412800;s:4:\"data\";O:8:\"stdClass\":9:{s:4:\"type\";s:6:\"notice\";s:11:\"button_link\";s:30:\"https://wpmet.com/hol23-notice\";s:11:\"button_text\";s:24:\"Claim Your Discount Now!\";s:11:\"notice_body\";s:538:\"

holiday sales from Wpmet

\r\n

Save up to $180 on Premium WordPress Plugins!

\r\n

Get 30% discounts on each of our PRO plugins — ElementsKit, ShopEngine, MetForm, WP Social, WP Ultimate Review — or get them all in super-saver bundles to save 80% instantly!

\";s:12:\"notice_image\";s:66:\"https://api.wpmet.com/auth/wp-content/uploads/2023/07/notice-1.png\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";s:10:\"unique_key\";s:0:\"\";}}s:8:\"10011058\";O:8:\"stdClass\":7:{s:2:\"id\";i:10011058;s:5:\"title\";s:35:\"Wpmet Holiday Notice Dashboard 2023\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:9:\"dashboard\";s:5:\"start\";i:1702512000;s:3:\"end\";i:1704412800;s:4:\"data\";O:8:\"stdClass\":9:{s:4:\"type\";s:6:\"notice\";s:11:\"button_link\";s:30:\"https://wpmet.com/hol23-notice\";s:11:\"button_text\";s:24:\"Claim Your Discount Now!\";s:11:\"notice_body\";s:538:\"

holiday sales from Wpmet

\r\n

Save up to $180 on Premium WordPress Plugins!

\r\n

Get 30% discounts on each of our PRO plugins — ElementsKit, ShopEngine, MetForm, WP Social, WP Ultimate Review — or get them all in super-saver bundles to save 80% instantly!

\";s:12:\"notice_image\";s:66:\"https://api.wpmet.com/auth/wp-content/uploads/2023/07/notice-1.png\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";s:10:\"unique_key\";s:0:\"\";}}s:8:\"10011039\";O:8:\"stdClass\":7:{s:2:\"id\";i:10011039;s:5:\"title\";s:32:\"Wpmet BFCM Notice Dashboard 2023\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:9:\"dashboard\";s:5:\"start\";i:1700611200;s:3:\"end\";i:1701907200;s:4:\"data\";O:8:\"stdClass\":9:{s:4:\"type\";s:6:\"notice\";s:11:\"button_link\";s:36:\"https://wpmet.com/notice/blackfriday\";s:11:\"button_text\";s:24:\"Claim Your Discount Now!\";s:11:\"notice_body\";s:543:\"

Black friday sales from Wpmet

\r\n

Save up to $240 on Premium WordPress Plugins!

\r\n

Get 40% discounts on each of our PRO plugins — ElementsKit, ShopEngine, MetForm, WP Social, WP Ultimate Review — or get them all in super-saver bundles to save 80% instantly!

\";s:12:\"notice_image\";s:73:\"https://api.wpmet.com/auth/wp-content/uploads/2022/12/40-OFF-getgenie.png\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";s:10:\"unique_key\";s:0:\"\";}}s:8:\"10011038\";O:8:\"stdClass\":7:{s:2:\"id\";i:10011038;s:5:\"title\";s:31:\"Wpmet BFCM Notice Own Page 2023\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:11:\"plugin_page\";s:5:\"start\";i:1700611200;s:3:\"end\";i:1701907200;s:4:\"data\";O:8:\"stdClass\":9:{s:4:\"type\";s:6:\"notice\";s:11:\"button_link\";s:36:\"https://wpmet.com/notice/blackfriday\";s:11:\"button_text\";s:24:\"Claim Your Discount Now!\";s:11:\"notice_body\";s:543:\"

Black friday sales from Wpmet

\r\n

Save up to $240 on Premium WordPress Plugins!

\r\n

Get 40% discounts on each of our PRO plugins — ElementsKit, ShopEngine, MetForm, WP Social, WP Ultimate Review — or get them all in super-saver bundles to save 80% instantly!

\";s:12:\"notice_image\";s:73:\"https://api.wpmet.com/auth/wp-content/uploads/2022/12/40-OFF-getgenie.png\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";s:10:\"unique_key\";s:0:\"\";}}}','auto'),(230,'elementskit-lite_install_date','2024-07-23 07:06:58','auto'),(241,'metform__banner_last_check','1750181780','auto'),(242,'metform__banner_data','O:8:\"stdClass\":10:{s:8:\"10018221\";O:8:\"stdClass\":7:{s:2:\"id\";i:10018221;s:5:\"title\";s:43:\"WordPress Birthday Flash Sale 2025 Own Page\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:11:\"plugin_page\";s:5:\"start\";i:1748304000;s:3:\"end\";i:1748649600;s:4:\"data\";O:8:\"stdClass\":9:{s:4:\"type\";s:6:\"notice\";s:11:\"button_link\";s:32:\"www.wpmet.com/banner//wpbirthday\";s:11:\"button_text\";s:29:\"Claim Your Birthday Discount!\";s:11:\"notice_body\";s:590:\"

WordPress Birthday Deals from Wpmet

\r\n

Save up to $2,986 on Premium WordPress Bundle Plugin!

\r\n

Get up to 30% discounts on each of our PRO Single plugins — ElementsKit, GutenKit, ShopEngine, MetForm, EmailKit, WP Social, WP Ultimate Review — or get them all in super-saver bundles to save 80% instantly!

\";s:12:\"notice_image\";s:60:\"https://api.wpmet.com/auth/wp-content/uploads/2024/11/80.png\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";s:10:\"unique_key\";s:0:\"\";}}s:8:\"10018220\";O:8:\"stdClass\":7:{s:2:\"id\";i:10018220;s:5:\"title\";s:44:\"WordPress Birthday Flash Sale 2025 Dashboard\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:9:\"dashboard\";s:5:\"start\";i:1748304000;s:3:\"end\";i:1748649600;s:4:\"data\";O:8:\"stdClass\":9:{s:4:\"type\";s:6:\"notice\";s:11:\"button_link\";s:32:\"www.wpmet.com/banner//wpbirthday\";s:11:\"button_text\";s:29:\"Claim Your Birthday Discount!\";s:11:\"notice_body\";s:590:\"

WordPress Birthday Deals from Wpmet

\r\n

Save up to $2,986 on Premium WordPress Bundle Plugin!

\r\n

Get up to 30% discounts on each of our PRO Single plugins — ElementsKit, GutenKit, ShopEngine, MetForm, EmailKit, WP Social, WP Ultimate Review — or get them all in super-saver bundles to save 80% instantly!

\";s:12:\"notice_image\";s:60:\"https://api.wpmet.com/auth/wp-content/uploads/2024/11/80.png\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";s:10:\"unique_key\";s:0:\"\";}}s:8:\"10017503\";O:8:\"stdClass\":7:{s:2:\"id\";i:10017503;s:5:\"title\";s:33:\"Wpmet Summer Notice ownpages 2025\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:11:\"plugin_page\";s:5:\"start\";i:1746662400;s:3:\"end\";i:1748131200;s:4:\"data\";O:8:\"stdClass\":9:{s:4:\"type\";s:6:\"notice\";s:11:\"button_link\";s:32:\"www.wpmet.com/banner/summer-sale\";s:11:\"button_text\";s:24:\"Claim Your Discount Now!\";s:11:\"notice_body\";s:582:\"

pre Summer sales from Wpmet

\r\n

Save up to $2,986 on Premium WordPress Bundle Plugin!

\r\n

Get up to 30% discounts on each of our PRO Single plugins — ElementsKit, GutenKit, ShopEngine, MetForm, EmailKit, WP Social, WP Ultimate Review — or get them all in super-saver bundles to save 80% instantly!

\";s:12:\"notice_image\";s:60:\"https://api.wpmet.com/auth/wp-content/uploads/2024/11/80.png\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";s:10:\"unique_key\";s:0:\"\";}}s:8:\"10017501\";O:8:\"stdClass\":7:{s:2:\"id\";i:10017501;s:5:\"title\";s:34:\"Wpmet Summer Notice Dashboard 2025\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:9:\"dashboard\";s:5:\"start\";i:1746662400;s:3:\"end\";i:1748131200;s:4:\"data\";O:8:\"stdClass\":9:{s:4:\"type\";s:6:\"notice\";s:11:\"button_link\";s:32:\"www.wpmet.com/banner/summer-sale\";s:11:\"button_text\";s:24:\"Claim Your Discount Now!\";s:11:\"notice_body\";s:582:\"

pre Summer sales from Wpmet

\r\n

Save up to $2,986 on Premium WordPress Bundle Plugin!

\r\n

Get up to 30% discounts on each of our PRO Single plugins — ElementsKit, GutenKit, ShopEngine, MetForm, EmailKit, WP Social, WP Ultimate Review — or get them all in super-saver bundles to save 80% instantly!

\";s:12:\"notice_image\";s:60:\"https://api.wpmet.com/auth/wp-content/uploads/2024/11/80.png\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";s:10:\"unique_key\";s:0:\"\";}}s:8:\"10013005\";O:8:\"stdClass\":7:{s:2:\"id\";i:10013005;s:5:\"title\";s:35:\"Wpmet Holiday Notice Dashboard 2024\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:9:\"dashboard\";s:5:\"start\";i:1734825600;s:3:\"end\";i:1737244800;s:4:\"data\";O:8:\"stdClass\":9:{s:4:\"type\";s:6:\"notice\";s:11:\"button_link\";s:22:\"www.wpmet.com/noticeNY\";s:11:\"button_text\";s:24:\"Claim Your Discount Now!\";s:11:\"notice_body\";s:579:\"

holiday sales from Wpmet

\r\n

Save up to $2,986 on Premium WordPress Bundle Plugin!

\r\n

Get up to 30% discounts on each of our PRO Single plugins — ElementsKit, GutenKit, ShopEngine, MetForm, EmailKit, WP Social, WP Ultimate Review — or get them all in super-saver bundles to save 80% instantly!

\";s:12:\"notice_image\";s:60:\"https://api.wpmet.com/auth/wp-content/uploads/2024/11/80.png\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";s:10:\"unique_key\";s:0:\"\";}}s:8:\"10013004\";O:8:\"stdClass\":7:{s:2:\"id\";i:10013004;s:5:\"title\";s:34:\"Wpmet Holiday Notice Ownpages 2024\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:11:\"plugin_page\";s:5:\"start\";i:1734825600;s:3:\"end\";i:1737244800;s:4:\"data\";O:8:\"stdClass\":9:{s:4:\"type\";s:6:\"notice\";s:11:\"button_link\";s:22:\"www.wpmet.com/noticeNY\";s:11:\"button_text\";s:24:\"Claim Your Discount Now!\";s:11:\"notice_body\";s:579:\"

holiday sales from Wpmet

\r\n

Save up to $2,986 on Premium WordPress Bundle Plugin!

\r\n

Get up to 30% discounts on each of our PRO Single plugins — ElementsKit, GutenKit, ShopEngine, MetForm, EmailKit, WP Social, WP Ultimate Review — or get them all in super-saver bundles to save 80% instantly!

\";s:12:\"notice_image\";s:60:\"https://api.wpmet.com/auth/wp-content/uploads/2024/11/80.png\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";s:10:\"unique_key\";s:0:\"\";}}s:8:\"10012223\";O:8:\"stdClass\":7:{s:2:\"id\";i:10012223;s:5:\"title\";s:30:\"Wpmet BFCM Notice OwnPage 2024\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:11:\"plugin_page\";s:5:\"start\";i:1732060800;s:3:\"end\";i:1734480000;s:4:\"data\";O:8:\"stdClass\":9:{s:4:\"type\";s:6:\"notice\";s:11:\"button_link\";s:17:\"wpmet.com/bfcmN24\";s:11:\"button_text\";s:24:\"Claim Your Discount Now!\";s:11:\"notice_body\";s:563:\"

Black friday sales from Wpmet

\r\n

Save up to $2,986 on Premium Bundle LifeTime!

\r\n

Get 40% discounts on each of our PRO plugins — ElementsKit, GutenKit, ShopEngine, MetForm, EmailKit, WP Social, WP Ultimate Review — or get them all in super-saver bundles to save 80% instantly!

\";s:12:\"notice_image\";s:60:\"https://api.wpmet.com/auth/wp-content/uploads/2024/11/80.png\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";s:10:\"unique_key\";s:0:\"\";}}s:8:\"10012221\";O:8:\"stdClass\":7:{s:2:\"id\";i:10012221;s:5:\"title\";s:32:\"Wpmet BFCM Notice Dashboard 2024\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:9:\"dashboard\";s:5:\"start\";i:1732060800;s:3:\"end\";i:1734480000;s:4:\"data\";O:8:\"stdClass\":9:{s:4:\"type\";s:6:\"notice\";s:11:\"button_link\";s:17:\"wpmet.com/bfcmN24\";s:11:\"button_text\";s:24:\"Claim Your Discount Now!\";s:11:\"notice_body\";s:563:\"

Black friday sales from Wpmet

\r\n

Save up to $2,986 on Premium Bundle LifeTime!

\r\n

Get 40% discounts on each of our PRO plugins — ElementsKit, GutenKit, ShopEngine, MetForm, EmailKit, WP Social, WP Ultimate Review — or get them all in super-saver bundles to save 80% instantly!

\";s:12:\"notice_image\";s:60:\"https://api.wpmet.com/auth/wp-content/uploads/2024/11/80.png\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";s:10:\"unique_key\";s:0:\"\";}}s:8:\"10011354\";O:8:\"stdClass\":7:{s:2:\"id\";i:10011354;s:5:\"title\";s:34:\"Wpmet Halloween Sale 2024 Own Page\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:11:\"plugin_page\";s:5:\"start\";i:1729382400;s:3:\"end\";i:1731196800;s:4:\"data\";O:8:\"stdClass\":9:{s:4:\"type\";s:6:\"notice\";s:11:\"button_link\";s:34:\" https://wpmet.com/halloweensale24\";s:11:\"button_text\";s:24:\"Claim Your Discount Now!\";s:11:\"notice_body\";s:569:\"

HAlloween sales from Wpmet

\r\n

Save up to $180 on Premium WordPress Plugins!

\r\n

Get 30% discounts on each of our PRO plugins — ElementsKit, Gutenkit, ShopEngine, MetForm, EmailKit, WP Social, WP Ultimate Review — or get them all in super-saver lifetime bundles to save 80% instantly!

\";s:12:\"notice_image\";s:66:\"https://api.wpmet.com/auth/wp-content/uploads/2023/07/notice-1.png\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";s:10:\"unique_key\";s:0:\"\";}}s:8:\"10011353\";O:8:\"stdClass\":7:{s:2:\"id\";i:10011353;s:5:\"title\";s:35:\"Wpmet Halloween Sale 2024 Dashboard\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:9:\"dashboard\";s:5:\"start\";i:1729382400;s:3:\"end\";i:1731196800;s:4:\"data\";O:8:\"stdClass\":9:{s:4:\"type\";s:6:\"notice\";s:11:\"button_link\";s:34:\" https://wpmet.com/halloweensale24\";s:11:\"button_text\";s:24:\"Claim Your Discount Now!\";s:11:\"notice_body\";s:569:\"

Halloween sales from Wpmet

\r\n

Save up to $180 on Premium WordPress Plugins!

\r\n

Get 30% discounts on each of our PRO plugins — ElementsKit, Gutenkit, ShopEngine, MetForm, EmailKit, WP Social, WP Ultimate Review — or get them all in super-saver lifetime bundles to save 80% instantly!

\";s:12:\"notice_image\";s:66:\"https://api.wpmet.com/auth/wp-content/uploads/2023/07/notice-1.png\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";s:10:\"unique_key\";s:0:\"\";}}}','auto'),(245,'metform_install_date','2024-07-23 07:29:38','auto'),(248,'hfe_plugin_is_activated','yes','auto'),(249,'_hfe_db_version','1.6.37','auto'),(250,'bsf_analytics_installed_time','1721763050','off'),(255,'metform__stories_last_check','1750181779','auto'),(256,'metform__stories_data','O:8:\"stdClass\":10:{s:8:\"10018273\";O:8:\"stdClass\":9:{s:2:\"id\";i:10018273;s:5:\"title\";s:24:\"WordPress Birthday Deals\";s:11:\"description\";s:0:\"\";s:7:\"plugins\";a:7:{i:0;s:16:\"elementskit-lite\";i:1;s:8:\"emailkit\";i:2;s:21:\"gutenkit-blocks-addon\";i:3;s:7:\"metform\";i:4;s:10:\"shopengine\";i:5;s:9:\"wp-social\";i:6;s:18:\"wp-ultimate-review\";}s:4:\"type\";s:6:\"banner\";s:8:\"priority\";s:4:\"high\";s:5:\"start\";i:1748304000;s:3:\"end\";i:1748649600;s:4:\"data\";O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"banner\";s:10:\"story_link\";s:21:\"www.wpmet.com/wpbdays\";s:11:\"story_image\";s:63:\"https://api.wpmet.com/auth/wp-content/uploads/2025/05/story.gif\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";}}s:8:\"10017504\";O:8:\"stdClass\":9:{s:2:\"id\";i:10017504;s:5:\"title\";s:25:\"GetGenie Summer Sale 2025\";s:11:\"description\";s:0:\"\";s:7:\"plugins\";a:2:{i:0;s:8:\"getgenie\";i:1;s:12:\"getgenie-pro\";}s:4:\"type\";s:6:\"banner\";s:8:\"priority\";s:4:\"high\";s:5:\"start\";i:1746662400;s:3:\"end\";i:1748131200;s:4:\"data\";O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"banner\";s:10:\"story_link\";s:23:\"www.getgenie.ai/summer \";s:11:\"story_image\";s:72:\"https://api.wpmet.com/auth/wp-content/uploads/2025/05/inplugin_story.gif\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";}}s:8:\"10017499\";O:8:\"stdClass\":9:{s:2:\"id\";i:10017499;s:5:\"title\";s:22:\"Wpmet Summer Sale 2025\";s:11:\"description\";s:0:\"\";s:7:\"plugins\";a:7:{i:0;s:16:\"elementskit-lite\";i:1;s:8:\"emailkit\";i:2;s:21:\"gutenkit-blocks-addon\";i:3;s:7:\"metform\";i:4;s:10:\"shopengine\";i:5;s:9:\"wp-social\";i:6;s:18:\"wp-ultimate-review\";}s:4:\"type\";s:6:\"banner\";s:8:\"priority\";s:4:\"high\";s:5:\"start\";i:1746662400;s:3:\"end\";i:1748131200;s:4:\"data\";O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"banner\";s:10:\"story_link\";s:31:\"www.wpmet.com/story/summer-sale\";s:11:\"story_image\";s:74:\"https://api.wpmet.com/auth/wp-content/uploads/2025/05/inplugin_story-1.gif\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";}}s:8:\"10015497\";O:8:\"stdClass\":9:{s:2:\"id\";i:10015497;s:5:\"title\";s:26:\"GetGenie Ramadan Sale 2025\";s:11:\"description\";s:0:\"\";s:7:\"plugins\";a:2:{i:0;s:8:\"getgenie\";i:1;s:12:\"getgenie-pro\";}s:4:\"type\";s:6:\"banner\";s:8:\"priority\";s:4:\"high\";s:5:\"start\";i:1741219200;s:3:\"end\";i:1742688000;s:4:\"data\";O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"banner\";s:10:\"story_link\";s:32:\"https://getgenie.ai/SRamadan25/ \";s:11:\"story_image\";s:74:\"https://api.wpmet.com/auth/wp-content/uploads/2024/03/getgenie_story-1.gif\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";}}s:8:\"10015490\";O:8:\"stdClass\":9:{s:2:\"id\";i:10015490;s:5:\"title\";s:23:\"Wpmet Ramadan Sale 2025\";s:11:\"description\";s:0:\"\";s:7:\"plugins\";a:7:{i:0;s:16:\"elementskit-lite\";i:1;s:8:\"emailkit\";i:2;s:21:\"gutenkit-blocks-addon\";i:3;s:7:\"metform\";i:4;s:10:\"shopengine\";i:5;s:9:\"wp-social\";i:6;s:18:\"wp-ultimate-review\";}s:4:\"type\";s:6:\"banner\";s:8:\"priority\";s:4:\"high\";s:5:\"start\";i:1741219200;s:3:\"end\";i:1742688000;s:4:\"data\";O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"banner\";s:10:\"story_link\";s:30:\"https://wpmet.com/SRamadan25/ \";s:11:\"story_image\";s:71:\"https://api.wpmet.com/auth/wp-content/uploads/2024/03/wpmet_story-2.gif\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";}}s:8:\"10014894\";O:8:\"stdClass\":9:{s:2:\"id\";i:10014894;s:5:\"title\";s:21:\"Genie Flash Sale 2025\";s:11:\"description\";s:0:\"\";s:7:\"plugins\";a:2:{i:0;s:8:\"getgenie\";i:1;s:12:\"getgenie-pro\";}s:4:\"type\";s:6:\"banner\";s:8:\"priority\";s:4:\"high\";s:5:\"start\";i:1739232000;s:3:\"end\";i:1740268800;s:4:\"data\";O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"banner\";s:10:\"story_link\";s:24:\"www.getgenie.ai/Sflash25\";s:11:\"story_image\";s:68:\"https://api.wpmet.com/auth/wp-content/uploads/2025/02/getgenie-1.gif\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";}}s:8:\"10014892\";O:8:\"stdClass\":9:{s:2:\"id\";i:10014892;s:5:\"title\";s:21:\"Wpmet Flash Sale 2025\";s:11:\"description\";s:0:\"\";s:7:\"plugins\";a:7:{i:0;s:16:\"elementskit-lite\";i:1;s:8:\"emailkit\";i:2;s:21:\"gutenkit-blocks-addon\";i:3;s:7:\"metform\";i:4;s:10:\"shopengine\";i:5;s:9:\"wp-social\";i:6;s:18:\"wp-ultimate-review\";}s:4:\"type\";s:6:\"banner\";s:8:\"priority\";s:4:\"high\";s:5:\"start\";i:1739232000;s:3:\"end\";i:1740268800;s:4:\"data\";O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"banner\";s:10:\"story_link\";s:22:\"www.wpmet.com/Sflash25\";s:11:\"story_image\";s:65:\"https://api.wpmet.com/auth/wp-content/uploads/2025/02/wpmet-1.gif\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";}}s:8:\"10013002\";O:8:\"stdClass\":9:{s:2:\"id\";i:10013002;s:5:\"title\";s:18:\"Genie Holiday 2024\";s:11:\"description\";s:0:\"\";s:7:\"plugins\";a:2:{i:0;s:8:\"getgenie\";i:1;s:12:\"getgenie-pro\";}s:4:\"type\";s:6:\"banner\";s:8:\"priority\";s:4:\"high\";s:5:\"start\";i:1734825600;s:3:\"end\";i:1737244800;s:4:\"data\";O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"banner\";s:10:\"story_link\";s:23:\"www.getgenie.ai/NYstory\";s:11:\"story_image\";s:67:\"https://api.wpmet.com/auth/wp-content/uploads/2024/12/genie-gif.gif\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";}}s:8:\"10013000\";O:8:\"stdClass\":9:{s:2:\"id\";i:10013000;s:5:\"title\";s:23:\"Wpmet Holiday Sale 2024\";s:11:\"description\";s:0:\"\";s:7:\"plugins\";a:7:{i:0;s:16:\"elementskit-lite\";i:1;s:8:\"emailkit\";i:2;s:21:\"gutenkit-blocks-addon\";i:3;s:7:\"metform\";i:4;s:10:\"shopengine\";i:5;s:9:\"wp-social\";i:6;s:18:\"wp-ultimate-review\";}s:4:\"type\";s:6:\"banner\";s:8:\"priority\";s:4:\"high\";s:5:\"start\";i:1734825600;s:3:\"end\";i:1737244800;s:4:\"data\";O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"banner\";s:10:\"story_link\";s:25:\"https://wpmet.com/NYstory\";s:11:\"story_image\";s:63:\"https://api.wpmet.com/auth/wp-content/uploads/2024/12/story.gif\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";}}s:8:\"10012291\";O:8:\"stdClass\":9:{s:2:\"id\";i:10012291;s:5:\"title\";s:18:\"GetGenie BFCM 2024\";s:11:\"description\";s:0:\"\";s:7:\"plugins\";a:1:{i:0;s:8:\"getgenie\";}s:4:\"type\";s:6:\"banner\";s:8:\"priority\";s:4:\"high\";s:5:\"start\";i:1732492800;s:3:\"end\";i:1733616000;s:4:\"data\";O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"banner\";s:10:\"story_link\";s:19:\"getgenie.ai/bfcmS24\";s:11:\"story_image\";s:74:\"https://api.wpmet.com/auth/wp-content/uploads/2022/11/InPlugin-Story-9.gif\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";}}}','auto'),(262,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}','off'),(312,'_elementor_global_css','a:7:{s:4:\"time\";i:1721822666;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:5:\"empty\";i:0;b:0;s:3:\"css\";s:0:\"\";}','auto'),(313,'_elementor_assets_data','a:1:{s:3:\"css\";a:1:{s:7:\"widgets\";a:28:{s:5:\"image\";a:2:{s:7:\"content\";s:269:\"\";s:7:\"version\";s:6:\"3.23.2\";}s:8:\"icon-box\";a:2:{s:7:\"content\";s:142:\"\";s:7:\"version\";s:6:\"3.23.2\";}s:6:\"button\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.23.2\";}s:13:\"jkit_nav_menu\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.23.2\";}s:12:\"social-icons\";a:2:{s:7:\"content\";s:5051:\"\";s:7:\"version\";s:6:\"3.23.2\";}s:12:\"jkit_heading\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.23.2\";}s:11:\"text-editor\";a:2:{s:7:\"content\";s:719:\"\";s:7:\"version\";s:6:\"3.23.2\";}s:17:\"jkit_video_button\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.23.2\";}s:7:\"heading\";a:2:{s:7:\"content\";s:673:\"\";s:7:\"version\";s:6:\"3.23.2\";}s:9:\"icon-list\";a:2:{s:7:\"content\";s:143:\"\";s:7:\"version\";s:6:\"3.23.2\";}s:13:\"jkit_fun_fact\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.23.2\";}s:6:\"spacer\";a:2:{s:7:\"content\";s:1379:\"\";s:7:\"version\";s:6:\"3.23.2\";}s:13:\"jkit_icon_box\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.23.2\";}s:11:\"jkit_button\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.23.2\";}s:7:\"metform\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.23.2\";}s:9:\"jkit_team\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.23.2\";}s:17:\"jkit_testimonials\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.23.2\";}s:15:\"jkit_post_block\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.23.2\";}s:14:\"jkit_mailchimp\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.23.2\";}s:7:\"divider\";a:2:{s:7:\"content\";s:4311:\"\";s:7:\"version\";s:6:\"3.23.2\";}s:7:\"mf-text\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.23.2\";}s:8:\"mf-email\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.23.2\";}s:12:\"mf-telephone\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.23.2\";}s:7:\"mf-date\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.23.2\";}s:9:\"mf-select\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.23.2\";}s:11:\"mf-textarea\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.23.2\";}s:9:\"mf-button\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.23.2\";}s:23:\"premium-carousel-widget\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.23.2\";}}}}','auto'),(331,'wp_calendar_block_has_published_posts','1','auto'),(372,'jeg-dynamic-css','','auto'),(385,'elementor_library_category_children','a:0:{}','auto'),(395,'eael_setup_wizard','init','auto'),(396,'eael_save_settings','a:61:{s:9:\"post-grid\";i:1;s:13:\"post-timeline\";i:1;s:10:\"fancy-text\";i:1;s:12:\"creative-btn\";i:1;s:10:\"count-down\";i:1;s:12:\"team-members\";i:1;s:12:\"testimonials\";i:1;s:8:\"info-box\";i:1;s:8:\"flip-box\";i:1;s:14:\"call-to-action\";i:1;s:11:\"dual-header\";i:1;s:11:\"price-table\";i:1;s:12:\"twitter-feed\";i:1;s:13:\"facebook-feed\";i:1;s:19:\"advanced-data-table\";i:1;s:10:\"data-table\";i:1;s:14:\"filter-gallery\";i:1;s:15:\"image-accordion\";i:1;s:14:\"content-ticker\";i:1;s:7:\"tooltip\";i:1;s:13:\"adv-accordion\";i:1;s:8:\"adv-tabs\";i:1;s:12:\"progress-bar\";i:1;s:12:\"feature-list\";i:1;s:12:\"product-grid\";i:1;s:16:\"woo-product-list\";i:1;s:14:\"contact-form-7\";i:1;s:7:\"weforms\";i:1;s:10:\"ninja-form\";i:1;s:9:\"formstack\";i:1;s:12:\"gravity-form\";i:1;s:12:\"caldera-form\";i:1;s:7:\"wpforms\";i:1;s:10:\"fluentform\";i:1;s:8:\"typeform\";i:1;s:24:\"betterdocs-category-grid\";i:1;s:23:\"betterdocs-category-box\";i:1;s:22:\"betterdocs-search-form\";i:1;s:12:\"sticky-video\";i:1;s:14:\"event-calendar\";i:1;s:10:\"embedpress\";i:1;s:12:\"woo-checkout\";i:1;s:8:\"woo-cart\";i:1;s:14:\"login-register\";i:1;s:11:\"career-page\";i:1;s:19:\"woo-product-compare\";i:1;s:20:\"woo-product-carousel\";i:1;s:11:\"simple-menu\";i:1;s:19:\"woo-product-gallery\";i:1;s:18:\"interactive-circle\";i:1;s:14:\"better-payment\";i:1;s:11:\"nft-gallery\";i:1;s:16:\"business-reviews\";i:1;s:8:\"svg-draw\";i:1;s:9:\"promotion\";i:1;s:9:\"custom-js\";i:1;s:16:\"reading-progress\";i:1;s:16:\"table-of-content\";i:1;s:15:\"post-duplicator\";i:1;s:13:\"scroll-to-top\";i:1;s:12:\"wrapper-link\";i:1;}','auto'),(398,'essential-addons-for-elementor_notices','a:3:{s:19:\"black_friday_notice\";a:4:{s:5:\"start\";i:1721839484;s:10:\"recurrence\";b:0;s:7:\"refresh\";s:6:\"5.9.27\";s:6:\"expire\";i:1701561599;}s:7:\"version\";s:5:\"1.1.0\";s:6:\"review\";a:3:{s:5:\"start\";i:1722444285;s:10:\"recurrence\";i:30;s:7:\"refresh\";s:6:\"5.9.27\";}}','off'),(399,'eael_version','5.9.27','auto'),(406,'eael_editor_updated_at','1721839810','auto'),(407,'eael_global_settings','a:1:{s:22:\"eael_ext_scroll_to_top\";a:0:{}}','auto'),(412,'temp_count','a:10:{s:9:\"Service 5\";s:9:\"Service 5\";s:9:\"Service 4\";s:9:\"Service 4\";s:9:\"Service 3\";s:9:\"Service 3\";s:9:\"Service 2\";s:9:\"Service 2\";s:9:\"service 1\";s:9:\"service 1\";s:19:\"MetForm Appointment\";s:19:\"MetForm Appointment\";s:4:\"Home\";s:4:\"Home\";s:6:\"Footer\";s:6:\"Footer\";s:6:\"Header\";s:6:\"Header\";s:70:\"Kit Styles: Greenco – Landscaping & Gardening Elementor Template Kit\";s:70:\"Kit Styles: Greenco – Landscaping & Gardening Elementor Template Kit\";}','auto'),(413,'pa_edit_time','1721935702','auto'),(425,'pa_elements_3572e9aa2','a:1:{i:0;s:23:\"premium-carousel-widget\";}','off'),(426,'pa_edit_3572e9aa2','1721935702','off'),(434,'_transient_health-check-site-status-result','{\"good\":18,\"recommended\":4,\"critical\":1}','on'),(447,'bsf_analytics_optin','no','off'),(448,'woo_cats','1','auto'),(566,'auto_core_update_notified','a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:23:\"designsfunnel@gmail.com\";s:7:\"version\";s:5:\"6.7.1\";s:9:\"timestamp\";i:1732282464;}','off'),(772,'category_children','a:0:{}','auto'),(2266,'db_upgraded','','on'),(2280,'_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'),(3495,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1750181808;s:7:\"checked\";a:4:{s:15:\"hello-elementor\";s:5:\"3.1.0\";s:29:\"prestige-luxury-cleanings-llc\";s:3:\"1.0\";s:16:\"twentytwentyfive\";s:3:\"1.0\";s:16:\"twentytwentyfour\";s:3:\"1.2\";}s:8:\"response\";a:3:{s:15:\"hello-elementor\";a:6:{s:5:\"theme\";s:15:\"hello-elementor\";s:11:\"new_version\";s:5:\"3.4.4\";s:3:\"url\";s:45:\"https://wordpress.org/themes/hello-elementor/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/theme/hello-elementor.3.4.4.zip\";s:8:\"requires\";s:3:\"6.0\";s:12:\"requires_php\";s:3:\"7.4\";}s:16:\"twentytwentyfive\";a:6:{s:5:\"theme\";s:16:\"twentytwentyfive\";s:11:\"new_version\";s:3:\"1.2\";s:3:\"url\";s:46:\"https://wordpress.org/themes/twentytwentyfive/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/theme/twentytwentyfive.1.2.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:9:\"no_update\";a:0:{}s:12:\"translations\";a:0:{}}','off'),(3584,'can_compress_scripts','0','auto'),(4866,'_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.8.1.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.8.1.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-6.8.1-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-6.8.1-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.8.1\";s:7:\"version\";s:5:\"6.8.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:1750181779;s:15:\"version_checked\";s:5:\"6.8.1\";s:12:\"translations\";a:0:{}}','off'),(5500,'_site_transient_timeout_php_check_38979a08dcd71638878b7b4419751271','1750311194','off'),(5501,'_site_transient_php_check_38979a08dcd71638878b7b4419751271','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'),(5551,'_site_transient_timeout_wp_theme_files_patterns-aefbd697b8f390e2bba8376e7c3f8534','1750183577','off'),(5552,'_site_transient_wp_theme_files_patterns-aefbd697b8f390e2bba8376e7c3f8534','a:2:{s:7:\"version\";b:0;s:8:\"patterns\";a:0:{}}','off'),(5554,'_site_transient_timeout_wp_theme_files_patterns-1a17041860a96ebeb4662141e27d398c','1750183578','off'),(5555,'_site_transient_wp_theme_files_patterns-1a17041860a96ebeb4662141e27d398c','a:2:{s:7:\"version\";s:3:\"1.0\";s:8:\"patterns\";a:0:{}}','off'),(5556,'_site_transient_timeout_wp_theme_files_patterns-16b0b41cffb256892d97c6ca5c85f4f7','1750183578','off'),(5557,'_site_transient_wp_theme_files_patterns-16b0b41cffb256892d97c6ca5c85f4f7','a:2:{s:7:\"version\";s:5:\"3.1.0\";s:8:\"patterns\";a:0:{}}','off'),(5558,'_site_transient_timeout_theme_roots','1750183578','off'),(5559,'_site_transient_theme_roots','a:4:{s:15:\"hello-elementor\";s:7:\"/themes\";s:29:\"prestige-luxury-cleanings-llc\";s:7:\"/themes\";s:16:\"twentytwentyfive\";s:7:\"/themes\";s:16:\"twentytwentyfour\";s:7:\"/themes\";}','off'),(5560,'_site_transient_timeout_browser_0fe6feb54289f4c67027ec06cc2131f8','1750786579','off'),(5561,'_site_transient_browser_0fe6feb54289f4c67027ec06cc2131f8','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:9:\"137.0.0.0\";s:8:\"platform\";s:7:\"Windows\";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'),(5562,'_transient_timeout_elementor_remote_info_api_data_3.23.2','1750224980','off'),(5563,'_transient_elementor_remote_info_api_data_3.23.2','a:4:{s:9:\"timestamp\";s:10:\"1750181017\";s:14:\"upgrade_notice\";a:3:{s:7:\"version\";s:5:\"2.0.0\";s:7:\"message\";s:0:\"\";s:11:\"update_link\";s:0:\"\";}s:11:\"pro_widgets\";a:82:{i:0;a:4:{s:4:\"name\";s:6:\"search\";s:5:\"title\";s:6:\"Search\";s:4:\"icon\";s:17:\"eicon-site-search\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:1;a:4:{s:4:\"name\";s:5:\"posts\";s:5:\"title\";s:5:\"Posts\";s:4:\"icon\";s:15:\"eicon-post-list\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:2;a:4:{s:4:\"name\";s:9:\"portfolio\";s:5:\"title\";s:9:\"Portfolio\";s:4:\"icon\";s:18:\"eicon-gallery-grid\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:3;a:4:{s:4:\"name\";s:17:\"link-in-bio-var-2\";s:5:\"title\";s:7:\"Classic\";s:4:\"icon\";s:19:\"eicon-site-identity\";s:10:\"categories\";s:15:\"[\"link-in-bio\"]\";}i:4;a:4:{s:4:\"name\";s:9:\"mega-menu\";s:5:\"title\";s:4:\"Menu\";s:4:\"icon\";s:15:\"eicon-mega-menu\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:5;a:4:{s:4:\"name\";s:17:\"link-in-bio-var-3\";s:5:\"title\";s:8:\"Showcase\";s:4:\"icon\";s:19:\"eicon-site-identity\";s:10:\"categories\";s:15:\"[\"link-in-bio\"]\";}i:6;a:4:{s:4:\"name\";s:4:\"form\";s:5:\"title\";s:4:\"Form\";s:4:\"icon\";s:21:\"eicon-form-horizontal\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:7;a:4:{s:4:\"name\";s:17:\"link-in-bio-var-4\";s:5:\"title\";s:5:\"Links\";s:4:\"icon\";s:19:\"eicon-site-identity\";s:10:\"categories\";s:15:\"[\"link-in-bio\"]\";}i:8;a:4:{s:4:\"name\";s:9:\"loop-grid\";s:5:\"title\";s:9:\"Loop Grid\";s:4:\"icon\";s:18:\"eicon-loop-builder\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:9;a:4:{s:4:\"name\";s:17:\"link-in-bio-var-5\";s:5:\"title\";s:8:\"Services\";s:4:\"icon\";s:19:\"eicon-site-identity\";s:10:\"categories\";s:15:\"[\"link-in-bio\"]\";}i:10;a:4:{s:4:\"name\";s:13:\"loop-carousel\";s:5:\"title\";s:13:\"Loop Carousel\";s:4:\"icon\";s:19:\"eicon-carousel-loop\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:11;a:4:{s:4:\"name\";s:17:\"link-in-bio-var-6\";s:5:\"title\";s:9:\"Portfolio\";s:4:\"icon\";s:19:\"eicon-site-identity\";s:10:\"categories\";s:15:\"[\"link-in-bio\"]\";}i:12;a:4:{s:4:\"name\";s:7:\"gallery\";s:5:\"title\";s:7:\"Gallery\";s:4:\"icon\";s:23:\"eicon-gallery-justified\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:13;a:4:{s:4:\"name\";s:17:\"link-in-bio-var-7\";s:5:\"title\";s:13:\"Business Card\";s:4:\"icon\";s:19:\"eicon-site-identity\";s:10:\"categories\";s:15:\"[\"link-in-bio\"]\";}i:14;a:4:{s:4:\"name\";s:17:\"animated-headline\";s:5:\"title\";s:17:\"Animated Headline\";s:4:\"icon\";s:23:\"eicon-animated-headline\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:15;a:4:{s:4:\"name\";s:10:\"price-list\";s:5:\"title\";s:10:\"Price List\";s:4:\"icon\";s:16:\"eicon-price-list\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:16;a:4:{s:4:\"name\";s:11:\"price-table\";s:5:\"title\";s:11:\"Price Table\";s:4:\"icon\";s:17:\"eicon-price-table\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:17;a:4:{s:4:\"name\";s:8:\"flip-box\";s:5:\"title\";s:8:\"Flip Box\";s:4:\"icon\";s:14:\"eicon-flip-box\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:18;a:4:{s:4:\"name\";s:14:\"call-to-action\";s:5:\"title\";s:14:\"Call to Action\";s:4:\"icon\";s:20:\"eicon-image-rollover\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:19;a:4:{s:4:\"name\";s:14:\"media-carousel\";s:5:\"title\";s:14:\"Media Carousel\";s:4:\"icon\";s:20:\"eicon-media-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:20;a:4:{s:4:\"name\";s:15:\"nested-carousel\";s:5:\"title\";s:8:\"Carousel\";s:4:\"icon\";s:21:\"eicon-nested-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:21;a:4:{s:4:\"name\";s:10:\"off-canvas\";s:5:\"title\";s:10:\"Off-Canvas\";s:4:\"icon\";s:16:\"eicon-off-canvas\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:22;a:4:{s:4:\"name\";s:9:\"countdown\";s:5:\"title\";s:9:\"Countdown\";s:4:\"icon\";s:15:\"eicon-countdown\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:23;a:4:{s:4:\"name\";s:13:\"share-buttons\";s:5:\"title\";s:13:\"Share Buttons\";s:4:\"icon\";s:11:\"eicon-share\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:24;a:4:{s:4:\"name\";s:10:\"blockquote\";s:5:\"title\";s:10:\"Blockquote\";s:4:\"icon\";s:16:\"eicon-blockquote\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:25;a:4:{s:4:\"name\";s:6:\"lottie\";s:5:\"title\";s:6:\"Lottie\";s:4:\"icon\";s:12:\"eicon-lottie\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:26;a:4:{s:4:\"name\";s:7:\"hotspot\";s:5:\"title\";s:7:\"Hotspot\";s:4:\"icon\";s:19:\"eicon-image-hotspot\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:27;a:4:{s:4:\"name\";s:13:\"paypal-button\";s:5:\"title\";s:13:\"PayPal Button\";s:4:\"icon\";s:19:\"eicon-paypal-button\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:28;a:4:{s:4:\"name\";s:14:\"code-highlight\";s:5:\"title\";s:14:\"Code Highlight\";s:4:\"icon\";s:20:\"eicon-code-highlight\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:29;a:4:{s:4:\"name\";s:14:\"video-playlist\";s:5:\"title\";s:14:\"Video Playlist\";s:4:\"icon\";s:20:\"eicon-video-playlist\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:30;a:4:{s:4:\"name\";s:8:\"template\";s:5:\"title\";s:8:\"Template\";s:4:\"icon\";s:19:\"eicon-document-file\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:31;a:4:{s:4:\"name\";s:13:\"stripe-button\";s:5:\"title\";s:13:\"Stripe Button\";s:4:\"icon\";s:19:\"eicon-stripe-button\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:32;a:4:{s:4:\"name\";s:16:\"progress-tracker\";s:5:\"title\";s:16:\"Progress Tracker\";s:4:\"icon\";s:22:\"eicon-progress-tracker\";s:10:\"categories\";s:40:\"[\"pro-elements\",\"theme-elements-single\"]\";}i:33;a:4:{s:4:\"name\";s:8:\"nav-menu\";s:5:\"title\";s:8:\"Nav Menu\";s:4:\"icon\";s:14:\"eicon-nav-menu\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:34;a:4:{s:4:\"name\";s:17:\"table-of-contents\";s:5:\"title\";s:17:\"Table of Contents\";s:4:\"icon\";s:23:\"eicon-table-of-contents\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:35;a:4:{s:4:\"name\";s:5:\"login\";s:5:\"title\";s:5:\"Login\";s:4:\"icon\";s:15:\"eicon-lock-user\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:36;a:4:{s:4:\"name\";s:6:\"slides\";s:5:\"title\";s:6:\"Slides\";s:4:\"icon\";s:12:\"eicon-slides\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:37;a:4:{s:4:\"name\";s:20:\"testimonial-carousel\";s:5:\"title\";s:20:\"Testimonial Carousel\";s:4:\"icon\";s:26:\"eicon-testimonial-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:38;a:4:{s:4:\"name\";s:7:\"reviews\";s:5:\"title\";s:7:\"Reviews\";s:4:\"icon\";s:12:\"eicon-review\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:39;a:4:{s:4:\"name\";s:15:\"facebook-button\";s:5:\"title\";s:15:\"Facebook Button\";s:4:\"icon\";s:23:\"eicon-facebook-like-box\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:40;a:4:{s:4:\"name\";s:17:\"facebook-comments\";s:5:\"title\";s:17:\"Facebook Comments\";s:4:\"icon\";s:23:\"eicon-facebook-comments\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:41;a:4:{s:4:\"name\";s:14:\"facebook-embed\";s:5:\"title\";s:14:\"Facebook Embed\";s:4:\"icon\";s:14:\"eicon-fb-embed\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:42;a:4:{s:4:\"name\";s:13:\"facebook-page\";s:5:\"title\";s:13:\"Facebook Page\";s:4:\"icon\";s:13:\"eicon-fb-feed\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:43;a:4:{s:4:\"name\";s:15:\"theme-site-logo\";s:5:\"title\";s:9:\"Site Logo\";s:4:\"icon\";s:15:\"eicon-site-logo\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:44;a:4:{s:4:\"name\";s:16:\"theme-site-title\";s:5:\"title\";s:10:\"Site Title\";s:4:\"icon\";s:16:\"eicon-site-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:45;a:4:{s:4:\"name\";s:16:\"theme-page-title\";s:5:\"title\";s:10:\"Page Title\";s:4:\"icon\";s:19:\"eicon-archive-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:46;a:4:{s:4:\"name\";s:16:\"theme-post-title\";s:5:\"title\";s:10:\"Post Title\";s:4:\"icon\";s:16:\"eicon-post-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:47;a:4:{s:4:\"name\";s:18:\"theme-post-excerpt\";s:5:\"title\";s:12:\"Post Excerpt\";s:4:\"icon\";s:18:\"eicon-post-excerpt\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:48;a:4:{s:4:\"name\";s:25:\"theme-post-featured-image\";s:5:\"title\";s:14:\"Featured Image\";s:4:\"icon\";s:20:\"eicon-featured-image\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:49;a:4:{s:4:\"name\";s:19:\"theme-archive-title\";s:5:\"title\";s:13:\"Archive Title\";s:4:\"icon\";s:19:\"eicon-archive-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:50;a:4:{s:4:\"name\";s:13:\"archive-posts\";s:5:\"title\";s:13:\"Archive Posts\";s:4:\"icon\";s:19:\"eicon-archive-posts\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:51;a:4:{s:4:\"name\";s:10:\"author-box\";s:5:\"title\";s:10:\"Author Box\";s:4:\"icon\";s:12:\"eicon-person\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:52;a:4:{s:4:\"name\";s:13:\"post-comments\";s:5:\"title\";s:13:\"Post Comments\";s:4:\"icon\";s:14:\"eicon-comments\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:53;a:4:{s:4:\"name\";s:15:\"post-navigation\";s:5:\"title\";s:15:\"Post Navigation\";s:4:\"icon\";s:21:\"eicon-post-navigation\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:54;a:4:{s:4:\"name\";s:9:\"post-info\";s:5:\"title\";s:9:\"Post Info\";s:4:\"icon\";s:15:\"eicon-post-info\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:55;a:4:{s:4:\"name\";s:7:\"sitemap\";s:5:\"title\";s:7:\"Sitemap\";s:4:\"icon\";s:13:\"eicon-sitemap\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:56;a:4:{s:4:\"name\";s:11:\"breadcrumbs\";s:5:\"title\";s:11:\"Breadcrumbs\";s:4:\"icon\";s:11:\"eicon-yoast\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:57;a:4:{s:4:\"name\";s:21:\"woocommerce-menu-cart\";s:5:\"title\";s:9:\"Menu Cart\";s:4:\"icon\";s:10:\"eicon-cart\";s:10:\"categories\";s:41:\"[\"theme-elements\",\"woocommerce-elements\"]\";}i:58;a:4:{s:4:\"name\";s:19:\"wc-archive-products\";s:5:\"title\";s:16:\"Archive Products\";s:4:\"icon\";s:14:\"eicon-products\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:59;a:4:{s:4:\"name\";s:31:\"woocommerce-archive-description\";s:5:\"title\";s:19:\"Archive Description\";s:4:\"icon\";s:25:\"eicon-product-description\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:60;a:4:{s:4:\"name\";s:20:\"woocommerce-products\";s:5:\"title\";s:8:\"Products\";s:4:\"icon\";s:14:\"eicon-products\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:61;a:4:{s:4:\"name\";s:22:\"woocommerce-breadcrumb\";s:5:\"title\";s:23:\"WooCommerce Breadcrumbs\";s:4:\"icon\";s:25:\"eicon-product-breadcrumbs\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:62;a:4:{s:4:\"name\";s:14:\"wc-add-to-cart\";s:5:\"title\";s:18:\"Custom Add To Cart\";s:4:\"icon\";s:17:\"eicon-woocommerce\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:63;a:4:{s:4:\"name\";s:11:\"wc-elements\";s:5:\"title\";s:17:\"WooCommerce Pages\";s:4:\"icon\";s:19:\"eicon-product-pages\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:64;a:4:{s:4:\"name\";s:13:\"wc-categories\";s:5:\"title\";s:18:\"Product Categories\";s:4:\"icon\";s:24:\"eicon-product-categories\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:65;a:4:{s:4:\"name\";s:25:\"woocommerce-product-title\";s:5:\"title\";s:13:\"Product Title\";s:4:\"icon\";s:19:\"eicon-product-title\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:66;a:4:{s:4:\"name\";s:26:\"woocommerce-product-images\";s:5:\"title\";s:14:\"Product Images\";s:4:\"icon\";s:20:\"eicon-product-images\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:67;a:4:{s:4:\"name\";s:25:\"woocommerce-product-price\";s:5:\"title\";s:13:\"Product Price\";s:4:\"icon\";s:19:\"eicon-product-price\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:68;a:4:{s:4:\"name\";s:31:\"woocommerce-product-add-to-cart\";s:5:\"title\";s:11:\"Add To Cart\";s:4:\"icon\";s:25:\"eicon-product-add-to-cart\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:69;a:4:{s:4:\"name\";s:26:\"woocommerce-product-rating\";s:5:\"title\";s:14:\"Product Rating\";s:4:\"icon\";s:20:\"eicon-product-rating\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:70;a:4:{s:4:\"name\";s:25:\"woocommerce-product-stock\";s:5:\"title\";s:13:\"Product Stock\";s:4:\"icon\";s:19:\"eicon-product-stock\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:71;a:4:{s:4:\"name\";s:24:\"woocommerce-product-meta\";s:5:\"title\";s:12:\"Product Meta\";s:4:\"icon\";s:18:\"eicon-product-meta\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:72;a:4:{s:4:\"name\";s:37:\"woocommerce-product-short-description\";s:5:\"title\";s:17:\"Short Description\";s:4:\"icon\";s:25:\"eicon-product-description\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:73;a:4:{s:4:\"name\";s:29:\"woocommerce-product-data-tabs\";s:5:\"title\";s:17:\"Product Data Tabs\";s:4:\"icon\";s:18:\"eicon-product-tabs\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:74;a:4:{s:4:\"name\";s:42:\"woocommerce-product-additional-information\";s:5:\"title\";s:22:\"Additional Information\";s:4:\"icon\";s:19:\" eicon-product-info\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:75;a:4:{s:4:\"name\";s:27:\"woocommerce-product-related\";s:5:\"title\";s:15:\"Product Related\";s:4:\"icon\";s:21:\"eicon-product-related\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:76;a:4:{s:4:\"name\";s:26:\"woocommerce-product-upsell\";s:5:\"title\";s:7:\"Upsells\";s:4:\"icon\";s:20:\"eicon-product-upsell\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:77;a:4:{s:4:\"name\";s:25:\"woocommerce-checkout-page\";s:5:\"title\";s:8:\"Checkout\";s:4:\"icon\";s:14:\"eicon-checkout\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:78;a:4:{s:4:\"name\";s:16:\"woocommerce-cart\";s:5:\"title\";s:4:\"Cart\";s:4:\"icon\";s:14:\"eicon-woo-cart\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:79;a:4:{s:4:\"name\";s:22:\"woocommerce-my-account\";s:5:\"title\";s:10:\"My Account\";s:4:\"icon\";s:16:\"eicon-my-account\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:80;a:4:{s:4:\"name\";s:28:\"woocommerce-purchase-summary\";s:5:\"title\";s:16:\"Purchase Summary\";s:4:\"icon\";s:22:\"eicon-purchase-summary\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:81;a:4:{s:4:\"name\";s:19:\"woocommerce-notices\";s:5:\"title\";s:19:\"WooCommerce Notices\";s:4:\"icon\";s:25:\"eicon-woocommerce-notices\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}}s:17:\"canary_deployment\";a:2:{s:11:\"plugin_info\";a:11:{s:2:\"id\";s:23:\"w.org/plugins/elementor\";s:4:\"slug\";s:9:\"elementor\";s:6:\"plugin\";s:23:\"elementor/elementor.php\";s:11:\"new_version\";s:5:\"3.6.0\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.0.zip\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:5:\"icons\";a:3:{s:2:\"2x\";s:62:\"https://ps.w.org/elementor/assets/icon-256x256.png?rev=1427768\";s:2:\"1x\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";s:3:\"svg\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=1475479\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=1475479\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"6.8.1\";s:12:\"requires_php\";s:3:\"5.6\";}s:10:\"conditions\";a:0:{}}}','off'),(5564,'_site_transient_timeout_wp_plugin_dependencies_plugin_timeout_elementor','1750224993','off'),(5565,'_site_transient_wp_plugin_dependencies_plugin_timeout_elementor','1','off'),(5566,'_site_transient_timeout_poptags_40cd750bba9870f18aada2478b24840a','1750192598','off'),(5567,'_site_transient_poptags_40cd750bba9870f18aada2478b24840a','O:8:\"stdClass\":100:{s:11:\"woocommerce\";a:3:{s:4:\"name\";s:11:\"woocommerce\";s:4:\"slug\";s:11:\"woocommerce\";s:5:\"count\";i:7131;}s:6:\"widget\";a:3:{s:4:\"name\";s:6:\"widget\";s:4:\"slug\";s:6:\"widget\";s:5:\"count\";i:4897;}s:4:\"post\";a:3:{s:4:\"name\";s:4:\"post\";s:4:\"slug\";s:4:\"post\";s:5:\"count\";i:2798;}s:5:\"admin\";a:3:{s:4:\"name\";s:5:\"admin\";s:4:\"slug\";s:5:\"admin\";s:5:\"count\";i:2711;}s:5:\"posts\";a:3:{s:4:\"name\";s:5:\"posts\";s:4:\"slug\";s:5:\"posts\";s:5:\"count\";i:2120;}s:9:\"shortcode\";a:3:{s:4:\"name\";s:9:\"shortcode\";s:4:\"slug\";s:9:\"shortcode\";s:5:\"count\";i:2044;}s:8:\"comments\";a:3:{s:4:\"name\";s:8:\"comments\";s:4:\"slug\";s:8:\"comments\";s:5:\"count\";i:1952;}s:3:\"seo\";a:3:{s:4:\"name\";s:3:\"seo\";s:4:\"slug\";s:3:\"seo\";s:5:\"count\";i:1918;}s:9:\"ecommerce\";a:3:{s:4:\"name\";s:9:\"ecommerce\";s:4:\"slug\";s:9:\"ecommerce\";s:5:\"count\";i:1615;}s:6:\"images\";a:3:{s:4:\"name\";s:6:\"images\";s:4:\"slug\";s:6:\"images\";s:5:\"count\";i:1614;}s:5:\"image\";a:3:{s:4:\"name\";s:5:\"image\";s:4:\"slug\";s:5:\"image\";s:5:\"count\";i:1604;}s:6:\"google\";a:3:{s:4:\"name\";s:6:\"google\";s:4:\"slug\";s:6:\"google\";s:5:\"count\";i:1557;}s:7:\"twitter\";a:3:{s:4:\"name\";s:7:\"twitter\";s:4:\"slug\";s:7:\"twitter\";s:5:\"count\";i:1512;}s:8:\"facebook\";a:3:{s:4:\"name\";s:8:\"facebook\";s:4:\"slug\";s:8:\"facebook\";s:5:\"count\";i:1508;}s:5:\"email\";a:3:{s:4:\"name\";s:5:\"email\";s:4:\"slug\";s:5:\"email\";s:5:\"count\";i:1471;}s:7:\"gallery\";a:3:{s:4:\"name\";s:7:\"gallery\";s:4:\"slug\";s:7:\"gallery\";s:5:\"count\";i:1337;}s:7:\"sidebar\";a:3:{s:4:\"name\";s:7:\"sidebar\";s:4:\"slug\";s:7:\"sidebar\";s:5:\"count\";i:1318;}s:8:\"security\";a:3:{s:4:\"name\";s:8:\"security\";s:4:\"slug\";s:8:\"security\";s:5:\"count\";i:1247;}s:5:\"login\";a:3:{s:4:\"name\";s:5:\"login\";s:4:\"slug\";s:5:\"login\";s:5:\"count\";i:1236;}s:6:\"social\";a:3:{s:4:\"name\";s:6:\"social\";s:4:\"slug\";s:6:\"social\";s:5:\"count\";i:1175;}s:4:\"page\";a:3:{s:4:\"name\";s:4:\"page\";s:4:\"slug\";s:4:\"page\";s:5:\"count\";i:1160;}s:5:\"video\";a:3:{s:4:\"name\";s:5:\"video\";s:4:\"slug\";s:5:\"video\";s:5:\"count\";i:1045;}s:7:\"payment\";a:3:{s:4:\"name\";s:7:\"payment\";s:4:\"slug\";s:7:\"payment\";s:5:\"count\";i:1045;}s:10:\"e-commerce\";a:3:{s:4:\"name\";s:10:\"e-commerce\";s:4:\"slug\";s:10:\"e-commerce\";s:5:\"count\";i:1044;}s:5:\"block\";a:3:{s:4:\"name\";s:5:\"block\";s:4:\"slug\";s:5:\"block\";s:5:\"count\";i:1009;}s:9:\"analytics\";a:3:{s:4:\"name\";s:9:\"analytics\";s:4:\"slug\";s:9:\"analytics\";s:5:\"count\";i:1008;}s:7:\"widgets\";a:3:{s:4:\"name\";s:7:\"widgets\";s:4:\"slug\";s:7:\"widgets\";s:5:\"count\";i:997;}s:9:\"gutenberg\";a:3:{s:4:\"name\";s:9:\"gutenberg\";s:4:\"slug\";s:9:\"gutenberg\";s:5:\"count\";i:980;}s:6:\"slider\";a:3:{s:4:\"name\";s:6:\"slider\";s:4:\"slug\";s:6:\"slider\";s:5:\"count\";i:934;}s:7:\"content\";a:3:{s:4:\"name\";s:7:\"content\";s:4:\"slug\";s:7:\"content\";s:5:\"count\";i:926;}s:5:\"links\";a:3:{s:4:\"name\";s:5:\"links\";s:4:\"slug\";s:5:\"links\";s:5:\"count\";i:922;}s:9:\"elementor\";a:3:{s:4:\"name\";s:9:\"elementor\";s:4:\"slug\";s:9:\"elementor\";s:5:\"count\";i:919;}s:4:\"spam\";a:3:{s:4:\"name\";s:4:\"spam\";s:4:\"slug\";s:4:\"spam\";s:5:\"count\";i:911;}s:15:\"payment-gateway\";a:3:{s:4:\"name\";s:15:\"payment gateway\";s:4:\"slug\";s:15:\"payment-gateway\";s:5:\"count\";i:909;}s:4:\"form\";a:3:{s:4:\"name\";s:4:\"form\";s:4:\"slug\";s:4:\"form\";s:5:\"count\";i:906;}s:5:\"media\";a:3:{s:4:\"name\";s:5:\"media\";s:4:\"slug\";s:5:\"media\";s:5:\"count\";i:854;}s:6:\"search\";a:3:{s:4:\"name\";s:6:\"search\";s:4:\"slug\";s:6:\"search\";s:5:\"count\";i:831;}s:6:\"editor\";a:3:{s:4:\"name\";s:6:\"editor\";s:4:\"slug\";s:6:\"editor\";s:5:\"count\";i:803;}s:10:\"buddypress\";a:3:{s:4:\"name\";s:10:\"buddypress\";s:4:\"slug\";s:10:\"buddypress\";s:5:\"count\";i:783;}s:12:\"contact-form\";a:3:{s:4:\"name\";s:12:\"contact form\";s:4:\"slug\";s:12:\"contact-form\";s:5:\"count\";i:772;}s:4:\"menu\";a:3:{s:4:\"name\";s:4:\"menu\";s:4:\"slug\";s:4:\"menu\";s:5:\"count\";i:763;}s:3:\"rss\";a:3:{s:4:\"name\";s:3:\"rss\";s:4:\"slug\";s:3:\"rss\";s:5:\"count\";i:759;}s:5:\"pages\";a:3:{s:4:\"name\";s:5:\"pages\";s:4:\"slug\";s:5:\"pages\";s:5:\"count\";i:748;}s:5:\"embed\";a:3:{s:4:\"name\";s:5:\"embed\";s:4:\"slug\";s:5:\"embed\";s:5:\"count\";i:738;}s:4:\"feed\";a:3:{s:4:\"name\";s:4:\"feed\";s:4:\"slug\";s:4:\"feed\";s:5:\"count\";i:712;}s:8:\"category\";a:3:{s:4:\"name\";s:8:\"category\";s:4:\"slug\";s:8:\"category\";s:5:\"count\";i:705;}s:4:\"ajax\";a:3:{s:4:\"name\";s:4:\"ajax\";s:4:\"slug\";s:4:\"ajax\";s:5:\"count\";i:680;}s:7:\"youtube\";a:3:{s:4:\"name\";s:7:\"youtube\";s:4:\"slug\";s:7:\"youtube\";s:5:\"count\";i:673;}s:6:\"jquery\";a:3:{s:4:\"name\";s:6:\"jquery\";s:4:\"slug\";s:6:\"jquery\";s:5:\"count\";i:665;}s:3:\"api\";a:3:{s:4:\"name\";s:3:\"api\";s:4:\"slug\";s:3:\"api\";s:5:\"count\";i:660;}s:8:\"shipping\";a:3:{s:4:\"name\";s:8:\"shipping\";s:4:\"slug\";s:8:\"shipping\";s:5:\"count\";i:648;}s:4:\"chat\";a:3:{s:4:\"name\";s:4:\"chat\";s:4:\"slug\";s:4:\"chat\";s:5:\"count\";i:637;}s:9:\"affiliate\";a:3:{s:4:\"name\";s:9:\"affiliate\";s:4:\"slug\";s:9:\"affiliate\";s:5:\"count\";i:634;}s:3:\"css\";a:3:{s:4:\"name\";s:3:\"css\";s:4:\"slug\";s:3:\"css\";s:5:\"count\";i:633;}s:9:\"marketing\";a:3:{s:4:\"name\";s:9:\"marketing\";s:4:\"slug\";s:9:\"marketing\";s:5:\"count\";i:628;}s:11:\"performance\";a:3:{s:4:\"name\";s:11:\"performance\";s:4:\"slug\";s:11:\"performance\";s:5:\"count\";i:627;}s:9:\"dashboard\";a:3:{s:4:\"name\";s:9:\"dashboard\";s:4:\"slug\";s:9:\"dashboard\";s:5:\"count\";i:627;}s:10:\"responsive\";a:3:{s:4:\"name\";s:10:\"responsive\";s:4:\"slug\";s:10:\"responsive\";s:5:\"count\";i:619;}s:4:\"link\";a:3:{s:4:\"name\";s:4:\"link\";s:4:\"slug\";s:4:\"link\";s:5:\"count\";i:618;}s:10:\"javascript\";a:3:{s:4:\"name\";s:10:\"javascript\";s:4:\"slug\";s:10:\"javascript\";s:5:\"count\";i:614;}s:14:\"contact-form-7\";a:3:{s:4:\"name\";s:14:\"contact form 7\";s:4:\"slug\";s:14:\"contact-form-7\";s:5:\"count\";i:611;}s:5:\"share\";a:3:{s:4:\"name\";s:5:\"share\";s:4:\"slug\";s:5:\"share\";s:5:\"count\";i:608;}s:7:\"contact\";a:3:{s:4:\"name\";s:7:\"contact\";s:4:\"slug\";s:7:\"contact\";s:5:\"count\";i:594;}s:6:\"events\";a:3:{s:4:\"name\";s:6:\"events\";s:4:\"slug\";s:6:\"events\";s:5:\"count\";i:588;}s:3:\"ads\";a:3:{s:4:\"name\";s:3:\"ads\";s:4:\"slug\";s:3:\"ads\";s:5:\"count\";i:585;}s:5:\"forms\";a:3:{s:4:\"name\";s:5:\"forms\";s:4:\"slug\";s:5:\"forms\";s:5:\"count\";i:584;}s:6:\"custom\";a:3:{s:4:\"name\";s:6:\"custom\";s:4:\"slug\";s:6:\"custom\";s:5:\"count\";i:578;}s:7:\"comment\";a:3:{s:4:\"name\";s:7:\"comment\";s:4:\"slug\";s:7:\"comment\";s:5:\"count\";i:577;}s:6:\"blocks\";a:3:{s:4:\"name\";s:6:\"blocks\";s:4:\"slug\";s:6:\"blocks\";s:5:\"count\";i:575;}s:5:\"theme\";a:3:{s:4:\"name\";s:5:\"theme\";s:4:\"slug\";s:5:\"theme\";s:5:\"count\";i:574;}s:10:\"categories\";a:3:{s:4:\"name\";s:10:\"categories\";s:4:\"slug\";s:10:\"categories\";s:5:\"count\";i:568;}s:5:\"popup\";a:3:{s:4:\"name\";s:5:\"popup\";s:4:\"slug\";s:5:\"popup\";s:5:\"count\";i:558;}s:8:\"calendar\";a:3:{s:4:\"name\";s:8:\"calendar\";s:4:\"slug\";s:8:\"calendar\";s:5:\"count\";i:551;}s:6:\"button\";a:3:{s:4:\"name\";s:6:\"button\";s:4:\"slug\";s:6:\"button\";s:5:\"count\";i:547;}s:8:\"payments\";a:3:{s:4:\"name\";s:8:\"payments\";s:4:\"slug\";s:8:\"payments\";s:5:\"count\";i:540;}s:4:\"user\";a:3:{s:4:\"name\";s:4:\"user\";s:4:\"slug\";s:4:\"user\";s:5:\"count\";i:532;}s:4:\"tags\";a:3:{s:4:\"name\";s:4:\"tags\";s:4:\"slug\";s:4:\"tags\";s:5:\"count\";i:527;}s:5:\"users\";a:3:{s:4:\"name\";s:5:\"users\";s:4:\"slug\";s:5:\"users\";s:5:\"count\";i:524;}s:2:\"ai\";a:3:{s:4:\"name\";s:2:\"AI\";s:4:\"slug\";s:2:\"ai\";s:5:\"count\";i:518;}s:10:\"newsletter\";a:3:{s:4:\"name\";s:10:\"newsletter\";s:4:\"slug\";s:10:\"newsletter\";s:5:\"count\";i:508;}s:6:\"mobile\";a:3:{s:4:\"name\";s:6:\"mobile\";s:4:\"slug\";s:6:\"mobile\";s:5:\"count\";i:507;}s:10:\"navigation\";a:3:{s:4:\"name\";s:10:\"navigation\";s:4:\"slug\";s:10:\"navigation\";s:5:\"count\";i:503;}s:12:\"social-media\";a:3:{s:4:\"name\";s:12:\"social media\";s:4:\"slug\";s:12:\"social-media\";s:5:\"count\";i:485;}s:8:\"tracking\";a:3:{s:4:\"name\";s:8:\"tracking\";s:4:\"slug\";s:8:\"tracking\";s:5:\"count\";i:480;}s:5:\"stats\";a:3:{s:4:\"name\";s:5:\"stats\";s:4:\"slug\";s:5:\"stats\";s:5:\"count\";i:469;}s:8:\"checkout\";a:3:{s:4:\"name\";s:8:\"checkout\";s:4:\"slug\";s:8:\"checkout\";s:5:\"count\";i:467;}s:12:\"notification\";a:3:{s:4:\"name\";s:12:\"notification\";s:4:\"slug\";s:12:\"notification\";s:5:\"count\";i:464;}s:7:\"gateway\";a:3:{s:4:\"name\";s:7:\"gateway\";s:4:\"slug\";s:7:\"gateway\";s:5:\"count\";i:462;}s:10:\"statistics\";a:3:{s:4:\"name\";s:10:\"statistics\";s:4:\"slug\";s:10:\"statistics\";s:5:\"count\";i:461;}s:9:\"slideshow\";a:3:{s:4:\"name\";s:9:\"slideshow\";s:4:\"slug\";s:9:\"slideshow\";s:5:\"count\";i:457;}s:8:\"redirect\";a:3:{s:4:\"name\";s:8:\"redirect\";s:4:\"slug\";s:8:\"redirect\";s:5:\"count\";i:457;}s:5:\"photo\";a:3:{s:4:\"name\";s:5:\"photo\";s:4:\"slug\";s:5:\"photo\";s:5:\"count\";i:455;}s:6:\"import\";a:3:{s:4:\"name\";s:6:\"import\";s:4:\"slug\";s:6:\"import\";s:5:\"count\";i:451;}s:4:\"news\";a:3:{s:4:\"name\";s:4:\"news\";s:4:\"slug\";s:4:\"news\";s:5:\"count\";i:432;}s:5:\"cache\";a:3:{s:4:\"name\";s:5:\"cache\";s:4:\"slug\";s:5:\"cache\";s:5:\"count\";i:431;}s:6:\"photos\";a:3:{s:4:\"name\";s:6:\"photos\";s:4:\"slug\";s:6:\"photos\";s:5:\"count\";i:431;}s:10:\"shortcodes\";a:3:{s:4:\"name\";s:10:\"shortcodes\";s:4:\"slug\";s:10:\"shortcodes\";s:5:\"count\";i:421;}s:4:\"code\";a:3:{s:4:\"name\";s:4:\"code\";s:4:\"slug\";s:4:\"code\";s:5:\"count\";i:421;}s:9:\"multisite\";a:3:{s:4:\"name\";s:9:\"multisite\";s:4:\"slug\";s:9:\"multisite\";s:5:\"count\";i:412;}s:7:\"plugins\";a:3:{s:4:\"name\";s:7:\"plugins\";s:4:\"slug\";s:7:\"plugins\";s:5:\"count\";i:412;}}','off'),(5569,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1750181812;s:8:\"response\";a:9:{s:23:\"elementor/elementor.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:23:\"w.org/plugins/elementor\";s:4:\"slug\";s:9:\"elementor\";s:6:\"plugin\";s:23:\"elementor/elementor.php\";s:11:\"new_version\";s:6:\"3.29.2\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.29.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:62:\"https://ps.w.org/elementor/assets/icon-256x256.gif?rev=3111597\";s:2:\"1x\";s:62:\"https://ps.w.org/elementor/assets/icon-128x128.gif?rev=3111597\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=3164133\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=3164133\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.5\";s:6:\"tested\";s:5:\"6.7.2\";s:12:\"requires_php\";s:3:\"7.4\";s:16:\"requires_plugins\";a:0:{}}s:51:\"header-footer-elementor/header-footer-elementor.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:37:\"w.org/plugins/header-footer-elementor\";s:4:\"slug\";s:23:\"header-footer-elementor\";s:6:\"plugin\";s:51:\"header-footer-elementor/header-footer-elementor.php\";s:11:\"new_version\";s:5:\"2.4.1\";s:3:\"url\";s:54:\"https://wordpress.org/plugins/header-footer-elementor/\";s:7:\"package\";s:72:\"https://downloads.wordpress.org/plugin/header-footer-elementor.2.4.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:76:\"https://ps.w.org/header-footer-elementor/assets/icon-256x256.gif?rev=3278750\";s:2:\"1x\";s:76:\"https://ps.w.org/header-footer-elementor/assets/icon-128x128.gif?rev=3278750\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:79:\"https://ps.w.org/header-footer-elementor/assets/banner-1544x500.gif?rev=3278750\";s:2:\"1x\";s:78:\"https://ps.w.org/header-footer-elementor/assets/banner-772x250.gif?rev=3278750\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";s:6:\"tested\";s:5:\"6.8.1\";s:12:\"requires_php\";s:3:\"7.4\";s:16:\"requires_plugins\";a:0:{}}s:37:\"elementskit-lite/elementskit-lite.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:30:\"w.org/plugins/elementskit-lite\";s:4:\"slug\";s:16:\"elementskit-lite\";s:6:\"plugin\";s:37:\"elementskit-lite/elementskit-lite.php\";s:11:\"new_version\";s:5:\"3.5.3\";s:3:\"url\";s:47:\"https://wordpress.org/plugins/elementskit-lite/\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/plugin/elementskit-lite.3.5.3.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/elementskit-lite/assets/icon-256x256.gif?rev=2518175\";s:2:\"1x\";s:69:\"https://ps.w.org/elementskit-lite/assets/icon-128x128.gif?rev=2518175\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:72:\"https://ps.w.org/elementskit-lite/assets/banner-1544x500.jpg?rev=3250020\";s:2:\"1x\";s:71:\"https://ps.w.org/elementskit-lite/assets/banner-772x250.jpg?rev=3250020\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.0\";s:6:\"tested\";s:5:\"6.8.1\";s:12:\"requires_php\";s:3:\"7.4\";s:16:\"requires_plugins\";a:0:{}}s:35:\"envato-elements/envato-elements.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:29:\"w.org/plugins/envato-elements\";s:4:\"slug\";s:15:\"envato-elements\";s:6:\"plugin\";s:35:\"envato-elements/envato-elements.php\";s:11:\"new_version\";s:6:\"2.0.16\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/envato-elements/\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/plugin/envato-elements.2.0.16.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:60:\"https://ps.w.org/envato-elements/assets/icon.svg?rev=3129155\";s:3:\"svg\";s:60:\"https://ps.w.org/envato-elements/assets/icon.svg?rev=3129155\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/envato-elements/assets/banner-1544x500.png?rev=3129155\";s:2:\"1x\";s:70:\"https://ps.w.org/envato-elements/assets/banner-772x250.png?rev=3129155\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.6\";s:6:\"tested\";s:5:\"6.4.5\";s:12:\"requires_php\";s:3:\"5.6\";s:16:\"requires_plugins\";a:0:{}}s:65:\"essential-addons-for-elementor-lite/essential_adons_elementor.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:49:\"w.org/plugins/essential-addons-for-elementor-lite\";s:4:\"slug\";s:35:\"essential-addons-for-elementor-lite\";s:6:\"plugin\";s:65:\"essential-addons-for-elementor-lite/essential_adons_elementor.php\";s:11:\"new_version\";s:6:\"6.1.18\";s:3:\"url\";s:66:\"https://wordpress.org/plugins/essential-addons-for-elementor-lite/\";s:7:\"package\";s:85:\"https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.6.1.18.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:88:\"https://ps.w.org/essential-addons-for-elementor-lite/assets/icon-256x256.gif?rev=3182943\";s:2:\"1x\";s:88:\"https://ps.w.org/essential-addons-for-elementor-lite/assets/icon-128x128.gif?rev=3182943\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:91:\"https://ps.w.org/essential-addons-for-elementor-lite/assets/banner-1544x500.png?rev=3297947\";s:2:\"1x\";s:90:\"https://ps.w.org/essential-addons-for-elementor-lite/assets/banner-772x250.png?rev=3297947\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";s:6:\"tested\";s:5:\"6.8.1\";s:12:\"requires_php\";s:3:\"7.0\";s:16:\"requires_plugins\";a:0:{}}s:39:\"jeg-elementor-kit/jeg-elementor-kit.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:31:\"w.org/plugins/jeg-elementor-kit\";s:4:\"slug\";s:17:\"jeg-elementor-kit\";s:6:\"plugin\";s:39:\"jeg-elementor-kit/jeg-elementor-kit.php\";s:11:\"new_version\";s:6:\"2.6.13\";s:3:\"url\";s:48:\"https://wordpress.org/plugins/jeg-elementor-kit/\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/plugin/jeg-elementor-kit.2.6.13.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:62:\"https://ps.w.org/jeg-elementor-kit/assets/icon.svg?rev=2587455\";s:3:\"svg\";s:62:\"https://ps.w.org/jeg-elementor-kit/assets/icon.svg?rev=2587455\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:73:\"https://ps.w.org/jeg-elementor-kit/assets/banner-1544x500.png?rev=2575635\";s:2:\"1x\";s:72:\"https://ps.w.org/jeg-elementor-kit/assets/banner-772x250.png?rev=2575635\";}s:11:\"banners_rtl\";a:2:{s:2:\"2x\";s:77:\"https://ps.w.org/jeg-elementor-kit/assets/banner-1544x500-rtl.png?rev=2575635\";s:2:\"1x\";s:76:\"https://ps.w.org/jeg-elementor-kit/assets/banner-772x250-rtl.png?rev=2575635\";}s:8:\"requires\";s:3:\"5.0\";s:6:\"tested\";s:5:\"6.8.1\";s:12:\"requires_php\";s:3:\"7.0\";s:16:\"requires_plugins\";a:1:{i:0;s:9:\"elementor\";}}s:19:\"metform/metform.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:21:\"w.org/plugins/metform\";s:4:\"slug\";s:7:\"metform\";s:6:\"plugin\";s:19:\"metform/metform.php\";s:11:\"new_version\";s:5:\"3.9.9\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/metform/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/metform.3.9.9.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:60:\"https://ps.w.org/metform/assets/icon-256x256.png?rev=3260686\";s:2:\"1x\";s:60:\"https://ps.w.org/metform/assets/icon-128x128.png?rev=3260686\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/metform/assets/banner-1544x500.jpg?rev=3260686\";s:2:\"1x\";s:62:\"https://ps.w.org/metform/assets/banner-772x250.jpg?rev=3260686\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";s:6:\"tested\";s:5:\"6.8.1\";s:12:\"requires_php\";s:3:\"7.4\";s:16:\"requires_plugins\";a:0:{}}s:61:\"premium-addons-for-elementor/premium-addons-for-elementor.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:42:\"w.org/plugins/premium-addons-for-elementor\";s:4:\"slug\";s:28:\"premium-addons-for-elementor\";s:6:\"plugin\";s:61:\"premium-addons-for-elementor/premium-addons-for-elementor.php\";s:11:\"new_version\";s:7:\"4.11.13\";s:3:\"url\";s:59:\"https://wordpress.org/plugins/premium-addons-for-elementor/\";s:7:\"package\";s:79:\"https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.11.13.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:73:\"https://ps.w.org/premium-addons-for-elementor/assets/icon.svg?rev=2421900\";s:3:\"svg\";s:73:\"https://ps.w.org/premium-addons-for-elementor/assets/icon.svg?rev=2421900\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:84:\"https://ps.w.org/premium-addons-for-elementor/assets/banner-1544x500.png?rev=3174756\";s:2:\"1x\";s:83:\"https://ps.w.org/premium-addons-for-elementor/assets/banner-772x250.png?rev=3174756\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";s:6:\"tested\";s:5:\"6.8.1\";s:12:\"requires_php\";s:3:\"7.4\";s:16:\"requires_plugins\";a:0:{}}s:37:\"royal-elementor-addons/wpr-addons.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:36:\"w.org/plugins/royal-elementor-addons\";s:4:\"slug\";s:22:\"royal-elementor-addons\";s:6:\"plugin\";s:37:\"royal-elementor-addons/wpr-addons.php\";s:11:\"new_version\";s:8:\"1.7.1025\";s:3:\"url\";s:53:\"https://wordpress.org/plugins/royal-elementor-addons/\";s:7:\"package\";s:74:\"https://downloads.wordpress.org/plugin/royal-elementor-addons.1.7.1025.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:75:\"https://ps.w.org/royal-elementor-addons/assets/icon-128x128.gif?rev=2604295\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:78:\"https://ps.w.org/royal-elementor-addons/assets/banner-1544x500.png?rev=2782347\";s:2:\"1x\";s:77:\"https://ps.w.org/royal-elementor-addons/assets/banner-772x250.png?rev=2782347\";}s:11:\"banners_rtl\";a:2:{s:2:\"2x\";s:82:\"https://ps.w.org/royal-elementor-addons/assets/banner-1544x500-rtl.png?rev=2782347\";s:2:\"1x\";s:81:\"https://ps.w.org/royal-elementor-addons/assets/banner-772x250-rtl.png?rev=2782347\";}s:8:\"requires\";s:3:\"5.0\";s:6:\"tested\";s:5:\"6.8.1\";s:12:\"requires_php\";s:3:\"5.6\";s:16:\"requires_plugins\";a:0:{}}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:1:{s:51:\"all-in-one-wp-migration/all-in-one-wp-migration.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:37:\"w.org/plugins/all-in-one-wp-migration\";s:4:\"slug\";s:23:\"all-in-one-wp-migration\";s:6:\"plugin\";s:51:\"all-in-one-wp-migration/all-in-one-wp-migration.php\";s:11:\"new_version\";s:4:\"7.95\";s:3:\"url\";s:54:\"https://wordpress.org/plugins/all-in-one-wp-migration/\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/plugin/all-in-one-wp-migration.7.95.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:76:\"https://ps.w.org/all-in-one-wp-migration/assets/icon-256x256.png?rev=2458334\";s:2:\"1x\";s:76:\"https://ps.w.org/all-in-one-wp-migration/assets/icon-128x128.png?rev=2458334\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:79:\"https://ps.w.org/all-in-one-wp-migration/assets/banner-1544x500.png?rev=3264554\";s:2:\"1x\";s:78:\"https://ps.w.org/all-in-one-wp-migration/assets/banner-772x250.png?rev=3264554\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.3\";}}s:7:\"checked\";a:11:{s:51:\"all-in-one-wp-migration/all-in-one-wp-migration.php\";s:4:\"7.95\";s:23:\"elementor/elementor.php\";s:6:\"3.23.2\";s:51:\"header-footer-elementor/header-footer-elementor.php\";s:6:\"1.6.37\";s:31:\"elementor-pro/elementor-pro.php\";s:6:\"3.10.1\";s:37:\"elementskit-lite/elementskit-lite.php\";s:5:\"3.2.2\";s:35:\"envato-elements/envato-elements.php\";s:6:\"2.0.13\";s:65:\"essential-addons-for-elementor-lite/essential_adons_elementor.php\";s:6:\"5.9.27\";s:39:\"jeg-elementor-kit/jeg-elementor-kit.php\";s:5:\"2.6.7\";s:19:\"metform/metform.php\";s:5:\"3.8.9\";s:61:\"premium-addons-for-elementor/premium-addons-for-elementor.php\";s:7:\"4.10.38\";s:37:\"royal-elementor-addons/wpr-addons.php\";s:7:\"1.3.981\";}}','off'),(5570,'ai1wm_secret_key','GYw4eBdtnPbd','auto'),(5571,'ai1wm_status','a:2:{s:4:\"type\";s:8:\"download\";s:7:\"message\";s:469:\"\n Download victor-quintero.designsfunnelserver.com\n Size: 294 MB\n \";}','auto'),(5572,'ai1wm_backups_labels','a:0:{}','auto'); /*!40000 ALTER TABLE `victorq_options` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `victorq_postmeta` -- DROP TABLE IF EXISTS `victorq_postmeta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `victorq_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=2272 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `victorq_postmeta` -- LOCK TABLES `victorq_postmeta` WRITE; /*!40000 ALTER TABLE `victorq_postmeta` DISABLE KEYS */; INSERT INTO `victorq_postmeta` VALUES (50,16,'_wp_attached_file','2024/07/placeholder-3.png'),(51,16,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:25:\"2024/07/placeholder-3.png\";s:8:\"filesize\";i:6146;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"placeholder-3-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3887;}s:5:\"large\";a:5:{s:4:\"file\";s:26:\"placeholder-3-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:18469;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"placeholder-3-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2227;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:25:\"placeholder-3-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12559;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(52,16,'_elementor_source_image_hash','88d42d2a7ad2d03b66dfd41184c97fffe3ff3254'),(53,17,'_wp_attached_file','2024/07/logo_bloomify-1.png'),(54,17,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:539;s:6:\"height\";i:125;s:4:\"file\";s:27:\"2024/07/logo_bloomify-1.png\";s:8:\"filesize\";i:9457;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"logo_bloomify-1-300x70.png\";s:5:\"width\";i:300;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8680;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"logo_bloomify-1-150x125.png\";s:5:\"width\";i:150;s:6:\"height\";i:125;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2933;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(55,17,'_elementor_source_image_hash','eba68f33f3129c5350a830b44dddb468c50148e5'),(101,24,'_edit_lock','1721936595:1'),(102,26,'envato_tk_manifest','a:7:{s:16:\"manifest_version\";s:6:\"1.0.21\";s:5:\"title\";s:58:\"Greenco – Landscaping & Gardening Elementor Template Kit\";s:12:\"page_builder\";s:9:\"elementor\";s:11:\"kit_version\";s:5:\"1.0.1\";s:9:\"templates\";a:16:{i:0;a:9:{s:4:\"name\";s:17:\"Global Kit Styles\";s:10:\"screenshot\";s:33:\"screenshots/global-kit-styles.jpg\";s:6:\"source\";s:21:\"templates/global.json\";s:11:\"preview_url\";s:23:\"https://kit.baliniz.com\";s:4:\"type\";s:7:\"section\";s:8:\"category\";s:4:\"page\";s:8:\"metadata\";a:4:{s:13:\"template_type\";s:13:\"global-styles\";s:14:\"include_in_zip\";s:1:\"1\";s:22:\"elementor_pro_required\";N;s:31:\"additional_template_information\";a:1:{i:0;s:85:\"These are the global theme styles configured through the Elementor Theme Styles area.\";}}s:22:\"elementor_pro_required\";b:0;s:7:\"imports\";a:0:{}}i:1;a:9:{s:4:\"name\";s:19:\"MetForm Appointment\";s:10:\"screenshot\";s:35:\"screenshots/metform-appointment.jpg\";s:6:\"source\";s:34:\"templates/metform-appointment.json\";s:11:\"preview_url\";s:65:\"https://kit.baliniz.com/greenco/template-kit/metform-appointment/\";s:4:\"type\";s:7:\"section\";s:8:\"category\";s:7:\"section\";s:8:\"metadata\";a:3:{s:13:\"template_type\";s:15:\"section-contact\";s:14:\"include_in_zip\";s:1:\"1\";s:22:\"elementor_pro_required\";N;}s:22:\"elementor_pro_required\";b:0;s:7:\"imports\";a:1:{i:0;a:1:{s:20:\"imported_template_id\";i:169;}}}i:2;a:9:{s:4:\"name\";s:4:\"Home\";s:10:\"screenshot\";s:20:\"screenshots/home.jpg\";s:6:\"source\";s:19:\"templates/home.json\";s:11:\"preview_url\";s:50:\"https://kit.baliniz.com/greenco/template-kit/home/\";s:4:\"type\";s:7:\"section\";s:8:\"category\";s:4:\"page\";s:8:\"metadata\";a:3:{s:13:\"template_type\";s:11:\"single-home\";s:14:\"include_in_zip\";s:1:\"1\";s:22:\"elementor_pro_required\";N;}s:22:\"elementor_pro_required\";b:0;s:7:\"imports\";a:0:{}}i:3;a:8:{s:4:\"name\";s:8:\"About Us\";s:10:\"screenshot\";s:24:\"screenshots/about-us.jpg\";s:6:\"source\";s:23:\"templates/about-us.json\";s:11:\"preview_url\";s:54:\"https://kit.baliniz.com/greenco/template-kit/about-us/\";s:4:\"type\";s:4:\"page\";s:8:\"category\";s:4:\"page\";s:8:\"metadata\";a:3:{s:13:\"template_type\";s:11:\"single-page\";s:14:\"include_in_zip\";s:1:\"1\";s:22:\"elementor_pro_required\";N;}s:22:\"elementor_pro_required\";b:0;}i:4;a:8:{s:4:\"name\";s:8:\"Services\";s:10:\"screenshot\";s:24:\"screenshots/services.jpg\";s:6:\"source\";s:23:\"templates/services.json\";s:11:\"preview_url\";s:54:\"https://kit.baliniz.com/greenco/template-kit/services/\";s:4:\"type\";s:4:\"page\";s:8:\"category\";s:4:\"page\";s:8:\"metadata\";a:3:{s:13:\"template_type\";s:11:\"single-page\";s:14:\"include_in_zip\";s:1:\"1\";s:22:\"elementor_pro_required\";N;}s:22:\"elementor_pro_required\";b:0;}i:5;a:8:{s:4:\"name\";s:8:\"Projects\";s:10:\"screenshot\";s:24:\"screenshots/projects.jpg\";s:6:\"source\";s:23:\"templates/projects.json\";s:11:\"preview_url\";s:54:\"https://kit.baliniz.com/greenco/template-kit/projects/\";s:4:\"type\";s:4:\"page\";s:8:\"category\";s:4:\"page\";s:8:\"metadata\";a:3:{s:13:\"template_type\";s:11:\"single-page\";s:14:\"include_in_zip\";s:1:\"1\";s:22:\"elementor_pro_required\";N;}s:22:\"elementor_pro_required\";b:0;}i:6;a:8:{s:4:\"name\";s:7:\"Pricing\";s:10:\"screenshot\";s:23:\"screenshots/pricing.jpg\";s:6:\"source\";s:22:\"templates/pricing.json\";s:11:\"preview_url\";s:53:\"https://kit.baliniz.com/greenco/template-kit/pricing/\";s:4:\"type\";s:4:\"page\";s:8:\"category\";s:4:\"page\";s:8:\"metadata\";a:3:{s:13:\"template_type\";s:11:\"single-page\";s:14:\"include_in_zip\";s:1:\"1\";s:22:\"elementor_pro_required\";N;}s:22:\"elementor_pro_required\";b:0;}i:7;a:8:{s:4:\"name\";s:4:\"Team\";s:10:\"screenshot\";s:20:\"screenshots/team.jpg\";s:6:\"source\";s:19:\"templates/team.json\";s:11:\"preview_url\";s:50:\"https://kit.baliniz.com/greenco/template-kit/team/\";s:4:\"type\";s:4:\"page\";s:8:\"category\";s:4:\"page\";s:8:\"metadata\";a:3:{s:13:\"template_type\";s:11:\"single-page\";s:14:\"include_in_zip\";s:1:\"1\";s:22:\"elementor_pro_required\";N;}s:22:\"elementor_pro_required\";b:0;}i:8;a:8:{s:4:\"name\";s:3:\"FAQ\";s:10:\"screenshot\";s:19:\"screenshots/faq.jpg\";s:6:\"source\";s:18:\"templates/faq.json\";s:11:\"preview_url\";s:49:\"https://kit.baliniz.com/greenco/template-kit/faq/\";s:4:\"type\";s:4:\"page\";s:8:\"category\";s:4:\"page\";s:8:\"metadata\";a:3:{s:13:\"template_type\";s:11:\"single-page\";s:14:\"include_in_zip\";s:1:\"1\";s:22:\"elementor_pro_required\";N;}s:22:\"elementor_pro_required\";b:0;}i:9;a:8:{s:4:\"name\";s:4:\"Blog\";s:10:\"screenshot\";s:20:\"screenshots/blog.jpg\";s:6:\"source\";s:19:\"templates/blog.json\";s:11:\"preview_url\";s:50:\"https://kit.baliniz.com/greenco/template-kit/blog/\";s:4:\"type\";s:4:\"page\";s:8:\"category\";s:4:\"page\";s:8:\"metadata\";a:3:{s:13:\"template_type\";s:11:\"single-page\";s:14:\"include_in_zip\";s:1:\"1\";s:22:\"elementor_pro_required\";N;}s:22:\"elementor_pro_required\";b:0;}i:10;a:8:{s:4:\"name\";s:11:\"Single Blog\";s:10:\"screenshot\";s:27:\"screenshots/single-blog.jpg\";s:6:\"source\";s:26:\"templates/single-blog.json\";s:11:\"preview_url\";s:57:\"https://kit.baliniz.com/greenco/template-kit/single-blog/\";s:4:\"type\";s:7:\"section\";s:8:\"category\";s:4:\"page\";s:8:\"metadata\";a:3:{s:13:\"template_type\";s:11:\"single-post\";s:14:\"include_in_zip\";s:1:\"1\";s:22:\"elementor_pro_required\";N;}s:22:\"elementor_pro_required\";b:0;}i:11;a:8:{s:4:\"name\";s:15:\"MetForm Contact\";s:10:\"screenshot\";s:31:\"screenshots/metform-contact.jpg\";s:6:\"source\";s:30:\"templates/metform-contact.json\";s:11:\"preview_url\";s:61:\"https://kit.baliniz.com/greenco/template-kit/metform-contact/\";s:4:\"type\";s:7:\"section\";s:8:\"category\";s:7:\"section\";s:8:\"metadata\";a:3:{s:13:\"template_type\";s:15:\"section-contact\";s:14:\"include_in_zip\";s:1:\"1\";s:22:\"elementor_pro_required\";N;}s:22:\"elementor_pro_required\";b:0;}i:12;a:8:{s:4:\"name\";s:7:\"Contact\";s:10:\"screenshot\";s:23:\"screenshots/contact.jpg\";s:6:\"source\";s:22:\"templates/contact.json\";s:11:\"preview_url\";s:53:\"https://kit.baliniz.com/greenco/template-kit/contact/\";s:4:\"type\";s:4:\"page\";s:8:\"category\";s:4:\"page\";s:8:\"metadata\";a:3:{s:13:\"template_type\";s:11:\"single-page\";s:14:\"include_in_zip\";s:1:\"1\";s:22:\"elementor_pro_required\";N;}s:22:\"elementor_pro_required\";b:0;}i:13;a:9:{s:4:\"name\";s:6:\"Header\";s:10:\"screenshot\";s:22:\"screenshots/header.jpg\";s:6:\"source\";s:21:\"templates/header.json\";s:11:\"preview_url\";s:52:\"https://kit.baliniz.com/greenco/template-kit/header/\";s:4:\"type\";s:7:\"section\";s:8:\"category\";s:7:\"section\";s:8:\"metadata\";a:3:{s:13:\"template_type\";s:14:\"section-header\";s:14:\"include_in_zip\";s:1:\"1\";s:22:\"elementor_pro_required\";N;}s:22:\"elementor_pro_required\";b:0;s:7:\"imports\";a:0:{}}i:14;a:9:{s:4:\"name\";s:6:\"Footer\";s:10:\"screenshot\";s:22:\"screenshots/footer.jpg\";s:6:\"source\";s:21:\"templates/footer.json\";s:11:\"preview_url\";s:52:\"https://kit.baliniz.com/greenco/template-kit/footer/\";s:4:\"type\";s:7:\"section\";s:8:\"category\";s:7:\"section\";s:8:\"metadata\";a:3:{s:13:\"template_type\";s:14:\"section-footer\";s:14:\"include_in_zip\";s:1:\"1\";s:22:\"elementor_pro_required\";N;}s:22:\"elementor_pro_required\";b:0;s:7:\"imports\";a:0:{}}i:15;a:8:{s:4:\"name\";s:8:\"404 Page\";s:10:\"screenshot\";s:24:\"screenshots/404-page.jpg\";s:6:\"source\";s:23:\"templates/404-page.json\";s:11:\"preview_url\";s:54:\"https://kit.baliniz.com/greenco/template-kit/404-page/\";s:4:\"type\";s:7:\"section\";s:8:\"category\";s:4:\"page\";s:8:\"metadata\";a:3:{s:13:\"template_type\";s:10:\"single-404\";s:14:\"include_in_zip\";s:1:\"1\";s:22:\"elementor_pro_required\";N;}s:22:\"elementor_pro_required\";b:0;}}s:16:\"required_plugins\";a:3:{i:0;a:4:{s:4:\"name\";s:17:\"Jeg Elementor Kit\";s:7:\"version\";s:5:\"2.6.1\";s:4:\"file\";s:39:\"jeg-elementor-kit/jeg-elementor-kit.php\";s:6:\"author\";s:8:\"Jegtheme\";}i:1;a:4:{s:4:\"name\";s:7:\"MetForm\";s:7:\"version\";s:5:\"3.2.4\";s:4:\"file\";s:19:\"metform/metform.php\";s:6:\"author\";s:5:\"Wpmet\";}i:2;a:4:{s:4:\"name\";s:9:\"Elementor\";s:7:\"version\";s:6:\"3.12.1\";s:4:\"file\";s:23:\"elementor/elementor.php\";s:6:\"author\";s:13:\"Elementor.com\";}}s:6:\"images\";a:32:{i:0;a:8:{s:8:\"filename\";s:46:\"gardener-with-hedge-trimmer-e1635892441479.jpg\";s:13:\"thumbnail_url\";s:107:\"https://kit.baliniz.com/greenco/wp-content/uploads/sites/16/2021/10/gardener-with-hedge-trimmer-800x548.jpg\";s:9:\"templates\";a:2:{i:0;a:2:{s:6:\"source\";s:19:\"templates/home.json\";s:4:\"name\";s:4:\"Home\";}i:1;a:2:{s:6:\"source\";s:23:\"templates/services.json\";s:4:\"name\";s:8:\"Services\";}}s:8:\"filesize\";i:291119;s:10:\"dimensions\";a:2:{i:0;i:1920;i:1;i:1316;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-NDKCXTH\";}i:1;a:8:{s:8:\"filename\";s:41:\"professional-gardener-at-work-XU82AHW.jpg\";s:13:\"thumbnail_url\";s:117:\"https://kit.baliniz.com/greenco/wp-content/uploads/sites/16/2021/11/professional-gardener-at-work-XU82AHW-800x533.jpg\";s:9:\"templates\";a:2:{i:0;a:2:{s:6:\"source\";s:19:\"templates/home.json\";s:4:\"name\";s:4:\"Home\";}i:1;a:2:{s:6:\"source\";s:23:\"templates/projects.json\";s:4:\"name\";s:8:\"Projects\";}}s:8:\"filesize\";i:318946;s:10:\"dimensions\";a:2:{i:0;i:1920;i:1;i:1280;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-XU82AHW\";}i:2;a:8:{s:8:\"filename\";s:37:\"gardener-buying-new-plantsP4VGX5F.jpg\";s:13:\"thumbnail_url\";s:113:\"https://kit.baliniz.com/greenco/wp-content/uploads/sites/16/2021/11/gardener-buying-new-plantsP4VGX5F-800x537.jpg\";s:9:\"templates\";a:4:{i:0;a:2:{s:6:\"source\";s:19:\"templates/home.json\";s:4:\"name\";s:4:\"Home\";}i:1;a:2:{s:6:\"source\";s:23:\"templates/services.json\";s:4:\"name\";s:8:\"Services\";}i:2;a:2:{s:6:\"source\";s:23:\"templates/projects.json\";s:4:\"name\";s:8:\"Projects\";}i:3;a:2:{s:6:\"source\";s:22:\"templates/pricing.json\";s:4:\"name\";s:7:\"Pricing\";}}s:8:\"filesize\";i:293904;s:10:\"dimensions\";a:2:{i:0;i:1920;i:1;i:1289;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-P4VGX5F\";}i:3;a:8:{s:8:\"filename\";s:76:\"garden-decorative-trees-trimming-by-professional-gardener-e1635864777836.jpg\";s:13:\"thumbnail_url\";s:137:\"https://kit.baliniz.com/greenco/wp-content/uploads/sites/16/2021/10/garden-decorative-trees-trimming-by-professional-gardener-800x533.jpg\";s:9:\"templates\";a:2:{i:0;a:2:{s:6:\"source\";s:19:\"templates/home.json\";s:4:\"name\";s:4:\"Home\";}i:1;a:2:{s:6:\"source\";s:23:\"templates/services.json\";s:4:\"name\";s:8:\"Services\";}}s:8:\"filesize\";i:305477;s:10:\"dimensions\";a:2:{i:0;i:1920;i:1;i:1280;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-A2EVLPN\";}i:4;a:8:{s:8:\"filename\";s:43:\"gardener-and-his-flowers-e1636043266831.jpg\";s:13:\"thumbnail_url\";s:104:\"https://kit.baliniz.com/greenco/wp-content/uploads/sites/16/2021/10/gardener-and-his-flowers-800x534.jpg\";s:9:\"templates\";a:2:{i:0;a:2:{s:6:\"source\";s:19:\"templates/home.json\";s:4:\"name\";s:4:\"Home\";}i:1;a:2:{s:6:\"source\";s:23:\"templates/about-us.json\";s:4:\"name\";s:8:\"About Us\";}}s:8:\"filesize\";i:230072;s:10:\"dimensions\";a:2:{i:0;i:1440;i:1;i:961;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-PB2HFLQ\";}i:5;a:8:{s:8:\"filename\";s:39:\"gardener-topiary-job-e1636044762602.jpg\";s:13:\"thumbnail_url\";s:100:\"https://kit.baliniz.com/greenco/wp-content/uploads/sites/16/2021/10/gardener-topiary-job-800x528.jpg\";s:9:\"templates\";a:5:{i:0;a:2:{s:6:\"source\";s:19:\"templates/home.json\";s:4:\"name\";s:4:\"Home\";}i:1;a:2:{s:6:\"source\";s:23:\"templates/about-us.json\";s:4:\"name\";s:8:\"About Us\";}i:2;a:2:{s:6:\"source\";s:22:\"templates/pricing.json\";s:4:\"name\";s:7:\"Pricing\";}i:3;a:2:{s:6:\"source\";s:18:\"templates/faq.json\";s:4:\"name\";s:3:\"FAQ\";}i:4;a:2:{s:6:\"source\";s:26:\"templates/single-blog.json\";s:4:\"name\";s:11:\"Single Blog\";}}s:8:\"filesize\";i:277707;s:10:\"dimensions\";a:2:{i:0;i:1200;i:1;i:793;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-HGF895Y\";}i:6;a:8:{s:8:\"filename\";s:58:\"gardener-in-newly-build-backyard-garden-e1636044857896.jpg\";s:13:\"thumbnail_url\";s:119:\"https://kit.baliniz.com/greenco/wp-content/uploads/sites/16/2021/10/gardener-in-newly-build-backyard-garden-800x533.jpg\";s:9:\"templates\";a:7:{i:0;a:2:{s:6:\"source\";s:19:\"templates/home.json\";s:4:\"name\";s:4:\"Home\";}i:1;a:2:{s:6:\"source\";s:23:\"templates/about-us.json\";s:4:\"name\";s:8:\"About Us\";}i:2;a:2:{s:6:\"source\";s:23:\"templates/services.json\";s:4:\"name\";s:8:\"Services\";}i:3;a:2:{s:6:\"source\";s:23:\"templates/projects.json\";s:4:\"name\";s:8:\"Projects\";}i:4;a:2:{s:6:\"source\";s:22:\"templates/pricing.json\";s:4:\"name\";s:7:\"Pricing\";}i:5;a:2:{s:6:\"source\";s:19:\"templates/team.json\";s:4:\"name\";s:4:\"Team\";}i:6;a:2:{s:6:\"source\";s:18:\"templates/faq.json\";s:4:\"name\";s:3:\"FAQ\";}}s:8:\"filesize\";i:275503;s:10:\"dimensions\";a:2:{i:0;i:1100;i:1;i:732;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-REVQENM\";}i:7;a:8:{s:8:\"filename\";s:63:\"garden-maintenance-performed-by-pro-gardener-e1635864820108.jpg\";s:13:\"thumbnail_url\";s:124:\"https://kit.baliniz.com/greenco/wp-content/uploads/sites/16/2021/10/garden-maintenance-performed-by-pro-gardener-800x533.jpg\";s:9:\"templates\";a:3:{i:0;a:2:{s:6:\"source\";s:19:\"templates/home.json\";s:4:\"name\";s:4:\"Home\";}i:1;a:2:{s:6:\"source\";s:23:\"templates/about-us.json\";s:4:\"name\";s:8:\"About Us\";}i:2;a:2:{s:6:\"source\";s:19:\"templates/team.json\";s:4:\"name\";s:4:\"Team\";}}s:8:\"filesize\";i:322191;s:10:\"dimensions\";a:2:{i:0;i:1920;i:1;i:1279;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-PR995B6\";}i:8;a:8:{s:8:\"filename\";s:45:\"men-watering-garden-plants-e1636044577981.jpg\";s:13:\"thumbnail_url\";s:113:\"https://kit.baliniz.com/greenco/wp-content/uploads/sites/16/2021/10/men-watering-garden-plants-e1636044577981.jpg\";s:9:\"templates\";a:2:{i:0;a:2:{s:6:\"source\";s:19:\"templates/home.json\";s:4:\"name\";s:4:\"Home\";}i:1;a:2:{s:6:\"source\";s:23:\"templates/services.json\";s:4:\"name\";s:8:\"Services\";}}s:8:\"filesize\";i:286087;s:10:\"dimensions\";a:2:{i:0;i:1240;i:1;i:827;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-WBSELCU\";}i:9;a:8:{s:8:\"filename\";s:44:\"gardener-finishing-garden-e1636044488488.jpg\";s:13:\"thumbnail_url\";s:105:\"https://kit.baliniz.com/greenco/wp-content/uploads/sites/16/2021/10/gardener-finishing-garden-800x533.jpg\";s:9:\"templates\";a:2:{i:0;a:2:{s:6:\"source\";s:19:\"templates/home.json\";s:4:\"name\";s:4:\"Home\";}i:1;a:2:{s:6:\"source\";s:23:\"templates/services.json\";s:4:\"name\";s:8:\"Services\";}}s:8:\"filesize\";i:251996;s:10:\"dimensions\";a:2:{i:0;i:1440;i:1;i:960;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-FM7Q7BJ\";}i:10;a:8:{s:8:\"filename\";s:53:\"a-gardener-watering-plants-in-a-flowerbed-2RT8DWL.jpg\";s:13:\"thumbnail_url\";s:129:\"https://kit.baliniz.com/greenco/wp-content/uploads/sites/16/2021/11/a-gardener-watering-plants-in-a-flowerbed-2RT8DWL-800x533.jpg\";s:9:\"templates\";a:6:{i:0;a:2:{s:6:\"source\";s:19:\"templates/home.json\";s:4:\"name\";s:4:\"Home\";}i:1;a:2:{s:6:\"source\";s:23:\"templates/services.json\";s:4:\"name\";s:8:\"Services\";}i:2;a:2:{s:6:\"source\";s:23:\"templates/projects.json\";s:4:\"name\";s:8:\"Projects\";}i:3;a:2:{s:6:\"source\";s:22:\"templates/pricing.json\";s:4:\"name\";s:7:\"Pricing\";}i:4;a:2:{s:6:\"source\";s:19:\"templates/blog.json\";s:4:\"name\";s:4:\"Blog\";}i:5;a:2:{s:6:\"source\";s:26:\"templates/single-blog.json\";s:4:\"name\";s:11:\"Single Blog\";}}s:8:\"filesize\";i:284180;s:10:\"dimensions\";a:2:{i:0;i:1920;i:1;i:1280;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-2RT8DWL\";}i:11;a:8:{s:8:\"filename\";s:61:\"happy-gardeners-with-plants-and-lawn-mower-e1636044353864.jpg\";s:13:\"thumbnail_url\";s:123:\"https://kit.baliniz.com/greenco/wp-content/uploads/sites/16/2021/10/happy-gardeners-with-plants-and-lawn-mower-800x1200.jpg\";s:9:\"templates\";a:3:{i:0;a:2:{s:6:\"source\";s:19:\"templates/home.json\";s:4:\"name\";s:4:\"Home\";}i:1;a:2:{s:6:\"source\";s:23:\"templates/services.json\";s:4:\"name\";s:8:\"Services\";}i:2;a:2:{s:6:\"source\";s:22:\"templates/pricing.json\";s:4:\"name\";s:7:\"Pricing\";}}s:8:\"filesize\";i:281968;s:10:\"dimensions\";a:2:{i:0;i:1000;i:1;i:1500;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-PVEMXNP\";}i:12;a:8:{s:8:\"filename\";s:50:\"gardening-background-with-garden-tolls-A9BGNJU.jpg\";s:13:\"thumbnail_url\";s:126:\"https://kit.baliniz.com/greenco/wp-content/uploads/sites/16/2021/11/gardening-background-with-garden-tolls-A9BGNJU-800x552.jpg\";s:9:\"templates\";a:2:{i:0;a:2:{s:6:\"source\";s:19:\"templates/home.json\";s:4:\"name\";s:4:\"Home\";}i:1;a:2:{s:6:\"source\";s:23:\"templates/404-page.json\";s:4:\"name\";s:8:\"404 Page\";}}s:8:\"filesize\";i:326515;s:10:\"dimensions\";a:2:{i:0;i:1920;i:1;i:1324;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-A9BGNJU\";}i:13;a:8:{s:8:\"filename\";s:55:\"gardener-pruning-and-shaping-bushes--e1636043380165.jpg\";s:13:\"thumbnail_url\";s:116:\"https://kit.baliniz.com/greenco/wp-content/uploads/sites/16/2021/10/gardener-pruning-and-shaping-bushes--800x518.jpg\";s:9:\"templates\";a:4:{i:0;a:2:{s:6:\"source\";s:19:\"templates/home.json\";s:4:\"name\";s:4:\"Home\";}i:1;a:2:{s:6:\"source\";s:23:\"templates/services.json\";s:4:\"name\";s:8:\"Services\";}i:2;a:2:{s:6:\"source\";s:23:\"templates/projects.json\";s:4:\"name\";s:8:\"Projects\";}i:3;a:2:{s:6:\"source\";s:19:\"templates/team.json\";s:4:\"name\";s:4:\"Team\";}}s:8:\"filesize\";i:270035;s:10:\"dimensions\";a:2:{i:0;i:1440;i:1;i:932;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-3UP49X7\";}i:14;a:8:{s:8:\"filename\";s:34:\"backyard-garden-e1636044880830.jpg\";s:13:\"thumbnail_url\";s:95:\"https://kit.baliniz.com/greenco/wp-content/uploads/sites/16/2021/10/backyard-garden-800x497.jpg\";s:9:\"templates\";a:4:{i:0;a:2:{s:6:\"source\";s:19:\"templates/home.json\";s:4:\"name\";s:4:\"Home\";}i:1;a:2:{s:6:\"source\";s:23:\"templates/services.json\";s:4:\"name\";s:8:\"Services\";}i:2;a:2:{s:6:\"source\";s:23:\"templates/projects.json\";s:4:\"name\";s:8:\"Projects\";}i:3;a:2:{s:6:\"source\";s:19:\"templates/team.json\";s:4:\"name\";s:4:\"Team\";}}s:8:\"filesize\";i:289086;s:10:\"dimensions\";a:2:{i:0;i:1200;i:1;i:746;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-SJMLZ6K\";}i:15;a:8:{s:8:\"filename\";s:36:\"lawn-moving-aerial-photo-Z8KDGJ9.jpg\";s:13:\"thumbnail_url\";s:112:\"https://kit.baliniz.com/greenco/wp-content/uploads/sites/16/2021/11/lawn-moving-aerial-photo-Z8KDGJ9-800x534.jpg\";s:9:\"templates\";a:3:{i:0;a:2:{s:6:\"source\";s:19:\"templates/home.json\";s:4:\"name\";s:4:\"Home\";}i:1;a:2:{s:6:\"source\";s:23:\"templates/services.json\";s:4:\"name\";s:8:\"Services\";}i:2;a:2:{s:6:\"source\";s:22:\"templates/pricing.json\";s:4:\"name\";s:7:\"Pricing\";}}s:8:\"filesize\";i:326327;s:10:\"dimensions\";a:2:{i:0;i:1920;i:1;i:1282;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-Z8KDGJ9\";}i:16;a:8:{s:8:\"filename\";s:10:\"3SUMAU.jpg\";s:13:\"thumbnail_url\";s:78:\"https://kit.baliniz.com/greenco/wp-content/uploads/sites/16/2021/11/3SUMAU.jpg\";s:9:\"templates\";a:2:{i:0;a:2:{s:6:\"source\";s:19:\"templates/home.json\";s:4:\"name\";s:4:\"Home\";}i:1;a:2:{s:6:\"source\";s:22:\"templates/pricing.json\";s:4:\"name\";s:7:\"Pricing\";}}s:8:\"filesize\";i:56794;s:10:\"dimensions\";a:2:{i:0;i:320;i:1;i:320;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:40:\"https://elements.envato.com/image-3SUMAU\";}i:17;a:8:{s:8:\"filename\";s:11:\"CASCKD8.jpg\";s:13:\"thumbnail_url\";s:79:\"https://kit.baliniz.com/greenco/wp-content/uploads/sites/16/2021/11/CASCKD8.jpg\";s:9:\"templates\";a:2:{i:0;a:2:{s:6:\"source\";s:19:\"templates/home.json\";s:4:\"name\";s:4:\"Home\";}i:1;a:2:{s:6:\"source\";s:22:\"templates/pricing.json\";s:4:\"name\";s:7:\"Pricing\";}}s:8:\"filesize\";i:52477;s:10:\"dimensions\";a:2:{i:0;i:320;i:1;i:320;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-CASCKD8\";}i:18;a:8:{s:8:\"filename\";s:11:\"MKLVKTE.jpg\";s:13:\"thumbnail_url\";s:79:\"https://kit.baliniz.com/greenco/wp-content/uploads/sites/16/2021/11/MKLVKTE.jpg\";s:9:\"templates\";a:2:{i:0;a:2:{s:6:\"source\";s:19:\"templates/home.json\";s:4:\"name\";s:4:\"Home\";}i:1;a:2:{s:6:\"source\";s:22:\"templates/pricing.json\";s:4:\"name\";s:7:\"Pricing\";}}s:8:\"filesize\";i:59237;s:10:\"dimensions\";a:2:{i:0;i:320;i:1;i:320;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-MKLVKTE\";}i:19;a:8:{s:8:\"filename\";s:54:\"gardeners-selecting-plants-in-a-greenhouse-P7XX699.jpg\";s:13:\"thumbnail_url\";s:130:\"https://kit.baliniz.com/greenco/wp-content/uploads/sites/16/2021/11/gardeners-selecting-plants-in-a-greenhouse-P7XX699-800x533.jpg\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:23:\"templates/about-us.json\";s:4:\"name\";s:8:\"About Us\";}}s:8:\"filesize\";i:305203;s:10:\"dimensions\";a:2:{i:0;i:1920;i:1;i:1280;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-P7XX699\";}i:20;a:8:{s:8:\"filename\";s:62:\"cheerful-young-man-standing-in-greenhouse-near-pla-P56ND5C.jpg\";s:13:\"thumbnail_url\";s:138:\"https://kit.baliniz.com/greenco/wp-content/uploads/sites/16/2021/11/cheerful-young-man-standing-in-greenhouse-near-pla-P56ND5C-800x999.jpg\";s:9:\"templates\";a:2:{i:0;a:2:{s:6:\"source\";s:23:\"templates/about-us.json\";s:4:\"name\";s:8:\"About Us\";}i:1;a:2:{s:6:\"source\";s:19:\"templates/team.json\";s:4:\"name\";s:4:\"Team\";}}s:8:\"filesize\";i:172598;s:10:\"dimensions\";a:2:{i:0;i:820;i:1;i:1024;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-P56ND5C\";}i:21;a:8:{s:8:\"filename\";s:41:\"mature-gardener-in-plantation-3BU56E8.jpg\";s:13:\"thumbnail_url\";s:117:\"https://kit.baliniz.com/greenco/wp-content/uploads/sites/16/2021/11/mature-gardener-in-plantation-3BU56E8-800x999.jpg\";s:9:\"templates\";a:2:{i:0;a:2:{s:6:\"source\";s:23:\"templates/about-us.json\";s:4:\"name\";s:8:\"About Us\";}i:1;a:2:{s:6:\"source\";s:19:\"templates/team.json\";s:4:\"name\";s:4:\"Team\";}}s:8:\"filesize\";i:144154;s:10:\"dimensions\";a:2:{i:0;i:820;i:1;i:1024;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-3BU56E8\";}i:22;a:8:{s:8:\"filename\";s:55:\"female-gardener-poses-in-shop-for-gardening-B8J7PM9.jpg\";s:13:\"thumbnail_url\";s:131:\"https://kit.baliniz.com/greenco/wp-content/uploads/sites/16/2021/11/female-gardener-poses-in-shop-for-gardening-B8J7PM9-800x999.jpg\";s:9:\"templates\";a:2:{i:0;a:2:{s:6:\"source\";s:23:\"templates/about-us.json\";s:4:\"name\";s:8:\"About Us\";}i:1;a:2:{s:6:\"source\";s:19:\"templates/team.json\";s:4:\"name\";s:4:\"Team\";}}s:8:\"filesize\";i:162386;s:10:\"dimensions\";a:2:{i:0;i:820;i:1;i:1024;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-B8J7PM9\";}i:23;a:8:{s:8:\"filename\";s:43:\"professional-caucasian-gardener-H5FDAME.jpg\";s:13:\"thumbnail_url\";s:119:\"https://kit.baliniz.com/greenco/wp-content/uploads/sites/16/2021/11/professional-caucasian-gardener-H5FDAME-800x533.jpg\";s:9:\"templates\";a:4:{i:0;a:2:{s:6:\"source\";s:23:\"templates/about-us.json\";s:4:\"name\";s:8:\"About Us\";}i:1;a:2:{s:6:\"source\";s:23:\"templates/services.json\";s:4:\"name\";s:8:\"Services\";}i:2;a:2:{s:6:\"source\";s:23:\"templates/projects.json\";s:4:\"name\";s:8:\"Projects\";}i:3;a:2:{s:6:\"source\";s:18:\"templates/faq.json\";s:4:\"name\";s:3:\"FAQ\";}}s:8:\"filesize\";i:263172;s:10:\"dimensions\";a:2:{i:0;i:1920;i:1;i:1280;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-H5FDAME\";}i:24;a:8:{s:8:\"filename\";s:39:\"pro-gardener-at-work-e1636043429454.jpg\";s:13:\"thumbnail_url\";s:100:\"https://kit.baliniz.com/greenco/wp-content/uploads/sites/16/2021/10/pro-gardener-at-work-800x534.jpg\";s:9:\"templates\";a:2:{i:0;a:2:{s:6:\"source\";s:19:\"templates/team.json\";s:4:\"name\";s:4:\"Team\";}i:1;a:2:{s:6:\"source\";s:22:\"templates/contact.json\";s:4:\"name\";s:7:\"Contact\";}}s:8:\"filesize\";i:290870;s:10:\"dimensions\";a:2:{i:0;i:1920;i:1;i:1282;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-PCVVLDT\";}i:25;a:8:{s:8:\"filename\";s:44:\"gardener-posing-with-flower-pot-USFHPK4c.jpg\";s:13:\"thumbnail_url\";s:120:\"https://kit.baliniz.com/greenco/wp-content/uploads/sites/16/2021/11/gardener-posing-with-flower-pot-USFHPK4c-800x999.jpg\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:19:\"templates/team.json\";s:4:\"name\";s:4:\"Team\";}}s:8:\"filesize\";i:239284;s:10:\"dimensions\";a:2:{i:0;i:820;i:1;i:1024;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-USFHPK4\";}i:26;a:8:{s:8:\"filename\";s:62:\"senior-farmer-picking-ripe-peppers-in-the-vegetabl-ZHLFCR5.jpg\";s:13:\"thumbnail_url\";s:138:\"https://kit.baliniz.com/greenco/wp-content/uploads/sites/16/2021/11/senior-farmer-picking-ripe-peppers-in-the-vegetabl-ZHLFCR5-800x999.jpg\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:19:\"templates/team.json\";s:4:\"name\";s:4:\"Team\";}}s:8:\"filesize\";i:191030;s:10:\"dimensions\";a:2:{i:0;i:820;i:1;i:1024;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-ZHLFCR5\";}i:27;a:8:{s:8:\"filename\";s:35:\"young-gardener-outdoors-DW2B89T.jpg\";s:13:\"thumbnail_url\";s:111:\"https://kit.baliniz.com/greenco/wp-content/uploads/sites/16/2021/11/young-gardener-outdoors-DW2B89T-800x999.jpg\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:19:\"templates/team.json\";s:4:\"name\";s:4:\"Team\";}}s:8:\"filesize\";i:175150;s:10:\"dimensions\";a:2:{i:0;i:820;i:1;i:1024;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-DW2B89T\";}i:28;a:8:{s:8:\"filename\";s:44:\"gardener-and-his-business-e1636043448304.jpg\";s:13:\"thumbnail_url\";s:105:\"https://kit.baliniz.com/greenco/wp-content/uploads/sites/16/2021/10/gardener-and-his-business-800x534.jpg\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:18:\"templates/faq.json\";s:4:\"name\";s:3:\"FAQ\";}}s:8:\"filesize\";i:318741;s:10:\"dimensions\";a:2:{i:0;i:1920;i:1;i:1282;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-PA9FDXZ\";}i:29;a:8:{s:8:\"filename\";s:15:\"logo-UDS48Q.png\";s:13:\"thumbnail_url\";s:91:\"https://kit.baliniz.com/greenco/wp-content/uploads/sites/16/2021/11/logo-UDS48Q-800x278.png\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:21:\"templates/header.json\";s:4:\"name\";s:6:\"Header\";}}s:8:\"filesize\";i:53621;s:10:\"dimensions\";a:2:{i:0;i:1486;i:1;i:517;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:40:\"https://elements.envato.com/image-UDS48Q\";}i:30;a:8:{s:8:\"filename\";s:32:\"green-lawn-on-ground-PT9KCVE.jpg\";s:13:\"thumbnail_url\";s:108:\"https://kit.baliniz.com/greenco/wp-content/uploads/sites/16/2021/11/green-lawn-on-ground-PT9KCVE-800x533.jpg\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:21:\"templates/footer.json\";s:4:\"name\";s:6:\"Footer\";}}s:8:\"filesize\";i:316612;s:10:\"dimensions\";a:2:{i:0;i:1920;i:1;i:1280;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-PT9KCVE\";}i:31;a:8:{s:8:\"filename\";s:15:\"logo-footer.png\";s:13:\"thumbnail_url\";s:91:\"https://kit.baliniz.com/greenco/wp-content/uploads/sites/16/2021/11/logo-footer-800x278.png\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:21:\"templates/footer.json\";s:4:\"name\";s:6:\"Footer\";}}s:8:\"filesize\";i:52192;s:10:\"dimensions\";a:2:{i:0;i:1486;i:1;i:517;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:40:\"https://elements.envato.com/image-UDS48Q\";}}}'),(103,26,'envato_tk_folder_name','a5ae88051d2bfad2e2cf9ee1428c17aa'),(104,26,'envato_tk_builder','elementor'),(105,26,'envato_tk_source_zip_url','https://victor-quintero.designsfunnelserver.com/wp-content/uploads/template-kits/a5ae88051d2bfad2e2cf9ee1428c17aa/source-26.zip'),(170,35,'_elementor_edit_mode','builder'),(171,35,'_elementor_template_type','kit'),(172,35,'_elementor_version','3.23.2'),(173,35,'_elementor_pro_version','3.10.1'),(174,36,'_elementor_edit_mode','builder'),(175,36,'_elementor_template_type','section'),(176,36,'_elementor_version','3.23.2'),(177,36,'_elementor_pro_version','3.10.1'),(178,35,'_wp_page_template','default'),(179,35,'_elementor_page_settings','a:80:{s:13:\"custom_colors\";a:3:{i:0;a:3:{s:3:\"_id\";s:7:\"e8dc402\";s:5:\"title\";s:6:\"Text 2\";s:5:\"color\";s:7:\"#C4C4C4\";}i:1;a:3:{s:3:\"_id\";s:7:\"06a34e7\";s:5:\"title\";s:5:\"White\";s:5:\"color\";s:7:\"#FFFFFF\";}i:2;a:3:{s:3:\"_id\";s:7:\"f01b239\";s:5:\"title\";s:6:\"Border\";s:5:\"color\";s:7:\"#E1E1E1\";}}s:13:\"system_colors\";a:4:{i:0;a:3:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:5:\"color\";s:7:\"#00160E\";}i:1;a:3:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:5:\"color\";s:7:\"#3F5A29\";}i:2;a:3:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:5:\"color\";s:7:\"#7F7F7F\";}i:3;a:3:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:5:\"color\";s:7:\"#FFD402\";}}s:17:\"system_typography\";a:4:{i:0;a:8:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Inter\";s:22:\"typography_font_weight\";s:3:\"600\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:50;s:5:\"sizes\";a:0:{}}s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.100000000000000088817841970012523233890533447265625;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:30;s:5:\"sizes\";a:0:{}}}i:1;a:8:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Inter\";s:22:\"typography_font_weight\";s:3:\"600\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:34;s:5:\"sizes\";a:0:{}}s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1999999999999999555910790149937383830547332763671875;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:24;s:5:\"sizes\";a:0:{}}}i:2;a:8:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Heebo\";s:22:\"typography_font_weight\";s:3:\"300\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}}i:3;a:8:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Inter\";s:22:\"typography_font_weight\";s:3:\"500\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1999999999999999555910790149937383830547332763671875;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}}}s:17:\"custom_typography\";a:16:{i:0;a:8:{s:3:\"_id\";s:7:\"274f2d8\";s:5:\"title\";s:2:\"H3\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Inter\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:24;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"500\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3000000000000000444089209850062616169452667236328125;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}}i:1;a:8:{s:3:\"_id\";s:7:\"8966ad4\";s:5:\"title\";s:2:\"H4\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Inter\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"500\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3000000000000000444089209850062616169452667236328125;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}}i:2;a:8:{s:3:\"_id\";s:7:\"91cb5d9\";s:5:\"title\";s:2:\"H5\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Inter\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"500\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1999999999999999555910790149937383830547332763671875;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}}i:3;a:7:{s:3:\"_id\";s:7:\"5ad446d\";s:5:\"title\";s:2:\"H6\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Inter\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"500\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3000000000000000444089209850062616169452667236328125;s:5:\"sizes\";a:0:{}}}i:4;a:9:{s:3:\"_id\";s:7:\"eef9e43\";s:5:\"title\";s:3:\"Nav\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Inter\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:12;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"600\";s:25:\"typography_text_transform\";s:9:\"uppercase\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";d:1.3000000000000000444089209850062616169452667236328125;s:5:\"sizes\";a:0:{}}}i:5;a:8:{s:3:\"_id\";s:7:\"558fe58\";s:5:\"title\";s:7:\"Button \";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Inter\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"500\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:12;s:5:\"sizes\";a:0:{}}}i:6;a:8:{s:3:\"_id\";s:7:\"0a50947\";s:5:\"title\";s:8:\"Button 2\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Inter\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"500\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}}i:7;a:8:{s:3:\"_id\";s:7:\"a1d69c8\";s:5:\"title\";s:6:\"H3 Alt\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Inter\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"500\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3000000000000000444089209850062616169452667236328125;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}}i:8;a:7:{s:3:\"_id\";s:7:\"f882794\";s:5:\"title\";s:7:\"Text 2 \";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Heebo\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"300\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}}i:9;a:8:{s:3:\"_id\";s:7:\"0703412\";s:5:\"title\";s:8:\"Funfact \";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Inter\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:34;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"600\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1999999999999999555910790149937383830547332763671875;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:28;s:5:\"sizes\";a:0:{}}}i:10;a:9:{s:3:\"_id\";s:7:\"d343bdf\";s:5:\"title\";s:16:\"Desc Testimonial\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Heebo\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:22;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"400\";s:21:\"typography_font_style\";s:6:\"italic\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}}i:11;a:7:{s:3:\"_id\";s:7:\"9d077e9\";s:5:\"title\";s:7:\"Pricing\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Inter\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:48;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"600\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3000000000000000444089209850062616169452667236328125;s:5:\"sizes\";a:0:{}}}i:12;a:8:{s:3:\"_id\";s:7:\"dcc4f3a\";s:5:\"title\";s:13:\"Super Funfact\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Heebo\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:26;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"600\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:24;s:5:\"sizes\";a:0:{}}}i:13;a:8:{s:3:\"_id\";s:7:\"a098a14\";s:5:\"title\";s:8:\"404 Page\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Inter\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:156;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"700\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1999999999999999555910790149937383830547332763671875;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:96;s:5:\"sizes\";a:0:{}}}i:14;a:7:{s:3:\"_id\";s:7:\"b8d9da4\";s:5:\"title\";s:6:\"Number\";s:21:\"typography_typography\";s:6:\"custom\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"600\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3000000000000000444089209850062616169452667236328125;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_family\";s:5:\"Inter\";}i:15;a:8:{s:3:\"_id\";s:7:\"c19945e\";s:5:\"title\";s:5:\"Quote\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Heebo\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"300\";s:21:\"typography_font_style\";s:6:\"italic\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}}}s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:15:\"activeItemIndex\";i:1;s:11:\"viewport_md\";i:768;s:11:\"viewport_lg\";i:1025;s:20:\"button_border_border\";s:5:\"solid\";s:19:\"button_border_width\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:20:\"button_border_radius\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"5\";s:5:\"right\";s:1:\"5\";s:6:\"bottom\";s:1:\"5\";s:4:\"left\";s:1:\"5\";s:8:\"isLinked\";b:1;}s:14:\"button_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"20\";s:5:\"right\";s:2:\"40\";s:6:\"bottom\";s:2:\"20\";s:4:\"left\";s:2:\"40\";s:8:\"isLinked\";b:0;}s:11:\"__globals__\";a:26:{s:10:\"body_color\";s:22:\"globals/colors?id=text\";s:26:\"body_typography_typography\";s:26:\"globals/typography?id=text\";s:17:\"link_normal_color\";s:24:\"globals/colors?id=accent\";s:16:\"link_hover_color\";s:27:\"globals/colors?id=secondary\";s:8:\"h1_color\";s:25:\"globals/colors?id=primary\";s:24:\"h1_typography_typography\";s:29:\"globals/typography?id=primary\";s:8:\"h2_color\";s:25:\"globals/colors?id=primary\";s:24:\"h2_typography_typography\";s:31:\"globals/typography?id=secondary\";s:8:\"h3_color\";s:25:\"globals/colors?id=primary\";s:24:\"h3_typography_typography\";s:29:\"globals/typography?id=274f2d8\";s:8:\"h4_color\";s:25:\"globals/colors?id=primary\";s:24:\"h4_typography_typography\";s:29:\"globals/typography?id=8966ad4\";s:8:\"h5_color\";s:24:\"globals/colors?id=accent\";s:24:\"h5_typography_typography\";s:29:\"globals/typography?id=91cb5d9\";s:8:\"h6_color\";s:25:\"globals/colors?id=primary\";s:24:\"h6_typography_typography\";s:29:\"globals/typography?id=5ad446d\";s:23:\"button_background_color\";s:24:\"globals/colors?id=accent\";s:17:\"button_text_color\";s:27:\"globals/colors?id=secondary\";s:28:\"button_typography_typography\";s:29:\"globals/typography?id=0a50947\";s:32:\"form_field_typography_typography\";s:26:\"globals/typography?id=text\";s:21:\"form_field_text_color\";s:25:\"globals/colors?id=primary\";s:32:\"form_label_typography_typography\";s:0:\"\";s:16:\"form_label_color\";s:25:\"globals/colors?id=primary\";s:29:\"button_hover_background_color\";s:27:\"globals/colors?id=secondary\";s:23:\"button_hover_text_color\";s:24:\"globals/colors?id=accent\";s:23:\"form_field_border_color\";s:25:\"globals/colors?id=f01b239\";}s:10:\"body_color\";s:7:\"#6C7084\";s:26:\"body_typography_typography\";s:6:\"custom\";s:27:\"body_typography_font_family\";s:5:\"Heebo\";s:25:\"body_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}s:32:\"body_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:27:\"body_typography_font_weight\";s:3:\"400\";s:27:\"body_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}s:17:\"link_normal_color\";s:7:\"#FFD027\";s:16:\"link_hover_color\";s:7:\"#0B1B69\";s:8:\"h1_color\";s:7:\"#0B1B69\";s:24:\"h1_typography_typography\";s:6:\"custom\";s:25:\"h1_typography_font_family\";s:5:\"Inter\";s:23:\"h1_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:50;s:5:\"sizes\";a:0:{}}s:25:\"h1_typography_font_weight\";s:3:\"600\";s:25:\"h1_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.100000000000000088817841970012523233890533447265625;s:5:\"sizes\";a:0:{}}s:8:\"h2_color\";s:7:\"#0B1B69\";s:24:\"h2_typography_typography\";s:6:\"custom\";s:25:\"h2_typography_font_family\";s:5:\"Inter\";s:23:\"h2_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:34;s:5:\"sizes\";a:0:{}}s:25:\"h2_typography_font_weight\";s:3:\"600\";s:25:\"h2_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1999999999999999555910790149937383830547332763671875;s:5:\"sizes\";a:0:{}}s:8:\"h3_color\";s:7:\"#0B1B69\";s:24:\"h3_typography_typography\";s:6:\"custom\";s:25:\"h3_typography_font_family\";s:5:\"Inter\";s:23:\"h3_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:24;s:5:\"sizes\";a:0:{}}s:25:\"h3_typography_font_weight\";s:3:\"500\";s:25:\"h3_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3000000000000000444089209850062616169452667236328125;s:5:\"sizes\";a:0:{}}s:8:\"h4_color\";s:7:\"#0B1B69\";s:24:\"h4_typography_typography\";s:6:\"custom\";s:25:\"h4_typography_font_family\";s:5:\"Inter\";s:23:\"h4_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}s:25:\"h4_typography_font_weight\";s:3:\"500\";s:25:\"h4_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3000000000000000444089209850062616169452667236328125;s:5:\"sizes\";a:0:{}}s:8:\"h5_color\";s:7:\"#FFD027\";s:24:\"h5_typography_typography\";s:6:\"custom\";s:25:\"h5_typography_font_family\";s:5:\"Inter\";s:23:\"h5_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}s:25:\"h5_typography_font_weight\";s:3:\"500\";s:25:\"h5_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1999999999999999555910790149937383830547332763671875;s:5:\"sizes\";a:0:{}}s:8:\"h6_color\";s:7:\"#0B1B69\";s:24:\"h6_typography_typography\";s:6:\"custom\";s:25:\"h6_typography_font_family\";s:5:\"Inter\";s:23:\"h6_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}s:25:\"h6_typography_font_weight\";s:3:\"500\";s:25:\"h6_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3000000000000000444089209850062616169452667236328125;s:5:\"sizes\";a:0:{}}s:17:\"button_text_color\";s:7:\"#0B1B69\";s:23:\"button_background_color\";s:7:\"#FFD027\";s:16:\"form_label_color\";s:7:\"#0B1B69\";s:32:\"form_label_typography_typography\";s:6:\"custom\";s:33:\"form_label_typography_font_family\";s:5:\"Inter\";s:31:\"form_label_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}s:33:\"form_label_typography_font_weight\";s:3:\"500\";s:33:\"form_label_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:2.600000000000000088817841970012523233890533447265625;s:5:\"sizes\";a:0:{}}s:32:\"form_field_typography_typography\";s:6:\"custom\";s:33:\"form_field_typography_font_family\";s:5:\"Heebo\";s:31:\"form_field_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}s:38:\"form_field_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:33:\"form_field_typography_font_weight\";s:3:\"400\";s:33:\"form_field_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}s:21:\"form_field_text_color\";s:7:\"#0B1B69\";s:24:\"form_field_border_border\";s:5:\"solid\";s:23:\"form_field_border_width\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";s:8:\"isLinked\";b:1;}s:24:\"form_field_border_radius\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"5\";s:5:\"right\";s:1:\"5\";s:6:\"bottom\";s:1:\"5\";s:4:\"left\";s:1:\"5\";s:8:\"isLinked\";b:1;}s:27:\"hello_footer_copyright_text\";s:19:\"All rights reserved\";s:32:\"colors_enable_styleguide_preview\";s:3:\"yes\";s:9:\"site_name\";s:29:\"Prestige Luxury Cleanings LLC\";}'),(180,35,'_elementor_data','[]'),(181,37,'_elementor_edit_mode','builder'),(182,37,'_elementor_template_type','section'),(183,37,'_elementor_version','3.23.2'),(184,37,'_elementor_pro_version','3.10.1'),(185,37,'_wp_page_template','default'),(186,37,'_elementor_page_settings','a:78:{s:13:\"custom_colors\";a:3:{i:0;a:3:{s:3:\"_id\";s:7:\"e8dc402\";s:5:\"title\";s:6:\"Text 2\";s:5:\"color\";s:7:\"#C4C4C4\";}i:1;a:3:{s:3:\"_id\";s:7:\"06a34e7\";s:5:\"title\";s:5:\"White\";s:5:\"color\";s:7:\"#FFFFFF\";}i:2;a:3:{s:3:\"_id\";s:7:\"f01b239\";s:5:\"title\";s:6:\"Border\";s:5:\"color\";s:7:\"#E1E1E1\";}}s:13:\"system_colors\";a:4:{i:0;a:3:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:5:\"color\";s:7:\"#00160E\";}i:1;a:3:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:5:\"color\";s:7:\"#006943\";}i:2;a:3:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:5:\"color\";s:7:\"#7F7F7F\";}i:3;a:3:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:5:\"color\";s:7:\"#FFD402\";}}s:17:\"system_typography\";a:4:{i:0;a:8:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Inter\";s:22:\"typography_font_weight\";s:3:\"600\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:50;s:5:\"sizes\";a:0:{}}s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.100000000000000088817841970012523233890533447265625;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:30;s:5:\"sizes\";a:0:{}}}i:1;a:8:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Inter\";s:22:\"typography_font_weight\";s:3:\"600\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:34;s:5:\"sizes\";a:0:{}}s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1999999999999999555910790149937383830547332763671875;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:24;s:5:\"sizes\";a:0:{}}}i:2;a:8:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Heebo\";s:22:\"typography_font_weight\";s:3:\"300\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}}i:3;a:8:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Inter\";s:22:\"typography_font_weight\";s:3:\"500\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1999999999999999555910790149937383830547332763671875;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}}}s:17:\"custom_typography\";a:16:{i:0;a:8:{s:3:\"_id\";s:7:\"274f2d8\";s:5:\"title\";s:2:\"H3\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Inter\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:24;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"500\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3000000000000000444089209850062616169452667236328125;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}}i:1;a:8:{s:3:\"_id\";s:7:\"8966ad4\";s:5:\"title\";s:2:\"H4\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Inter\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"500\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3000000000000000444089209850062616169452667236328125;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}}i:2;a:8:{s:3:\"_id\";s:7:\"91cb5d9\";s:5:\"title\";s:2:\"H5\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Inter\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"500\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1999999999999999555910790149937383830547332763671875;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}}i:3;a:7:{s:3:\"_id\";s:7:\"5ad446d\";s:5:\"title\";s:2:\"H6\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Inter\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"500\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3000000000000000444089209850062616169452667236328125;s:5:\"sizes\";a:0:{}}}i:4;a:9:{s:3:\"_id\";s:7:\"eef9e43\";s:5:\"title\";s:3:\"Nav\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Inter\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:12;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"600\";s:25:\"typography_text_transform\";s:9:\"uppercase\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";d:1.3000000000000000444089209850062616169452667236328125;s:5:\"sizes\";a:0:{}}}i:5;a:8:{s:3:\"_id\";s:7:\"558fe58\";s:5:\"title\";s:7:\"Button \";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Inter\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"500\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:12;s:5:\"sizes\";a:0:{}}}i:6;a:8:{s:3:\"_id\";s:7:\"0a50947\";s:5:\"title\";s:8:\"Button 2\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Inter\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"500\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}}i:7;a:8:{s:3:\"_id\";s:7:\"a1d69c8\";s:5:\"title\";s:6:\"H3 Alt\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Inter\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"500\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3000000000000000444089209850062616169452667236328125;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}}i:8;a:7:{s:3:\"_id\";s:7:\"f882794\";s:5:\"title\";s:7:\"Text 2 \";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Heebo\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"300\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}}i:9;a:8:{s:3:\"_id\";s:7:\"0703412\";s:5:\"title\";s:8:\"Funfact \";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Inter\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:34;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"600\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1999999999999999555910790149937383830547332763671875;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:28;s:5:\"sizes\";a:0:{}}}i:10;a:9:{s:3:\"_id\";s:7:\"d343bdf\";s:5:\"title\";s:16:\"Desc Testimonial\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Heebo\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:22;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"400\";s:21:\"typography_font_style\";s:6:\"italic\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}}i:11;a:7:{s:3:\"_id\";s:7:\"9d077e9\";s:5:\"title\";s:7:\"Pricing\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Inter\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:48;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"600\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3000000000000000444089209850062616169452667236328125;s:5:\"sizes\";a:0:{}}}i:12;a:8:{s:3:\"_id\";s:7:\"dcc4f3a\";s:5:\"title\";s:13:\"Super Funfact\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Heebo\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:26;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"600\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:24;s:5:\"sizes\";a:0:{}}}i:13;a:8:{s:3:\"_id\";s:7:\"a098a14\";s:5:\"title\";s:8:\"404 Page\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Inter\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:156;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"700\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1999999999999999555910790149937383830547332763671875;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:96;s:5:\"sizes\";a:0:{}}}i:14;a:7:{s:3:\"_id\";s:7:\"b8d9da4\";s:5:\"title\";s:6:\"Number\";s:21:\"typography_typography\";s:6:\"custom\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"600\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3000000000000000444089209850062616169452667236328125;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_family\";s:5:\"Inter\";}i:15;a:8:{s:3:\"_id\";s:7:\"c19945e\";s:5:\"title\";s:5:\"Quote\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Heebo\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"300\";s:21:\"typography_font_style\";s:6:\"italic\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}}}s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:15:\"activeItemIndex\";i:1;s:11:\"viewport_md\";i:768;s:11:\"viewport_lg\";i:1025;s:20:\"button_border_border\";s:5:\"solid\";s:19:\"button_border_width\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:20:\"button_border_radius\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"5\";s:5:\"right\";s:1:\"5\";s:6:\"bottom\";s:1:\"5\";s:4:\"left\";s:1:\"5\";s:8:\"isLinked\";b:1;}s:14:\"button_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"20\";s:5:\"right\";s:2:\"40\";s:6:\"bottom\";s:2:\"20\";s:4:\"left\";s:2:\"40\";s:8:\"isLinked\";b:0;}s:11:\"__globals__\";a:26:{s:10:\"body_color\";s:22:\"globals/colors?id=text\";s:26:\"body_typography_typography\";s:26:\"globals/typography?id=text\";s:17:\"link_normal_color\";s:24:\"globals/colors?id=accent\";s:16:\"link_hover_color\";s:27:\"globals/colors?id=secondary\";s:8:\"h1_color\";s:25:\"globals/colors?id=primary\";s:24:\"h1_typography_typography\";s:29:\"globals/typography?id=primary\";s:8:\"h2_color\";s:25:\"globals/colors?id=primary\";s:24:\"h2_typography_typography\";s:31:\"globals/typography?id=secondary\";s:8:\"h3_color\";s:25:\"globals/colors?id=primary\";s:24:\"h3_typography_typography\";s:29:\"globals/typography?id=274f2d8\";s:8:\"h4_color\";s:25:\"globals/colors?id=primary\";s:24:\"h4_typography_typography\";s:29:\"globals/typography?id=8966ad4\";s:8:\"h5_color\";s:24:\"globals/colors?id=accent\";s:24:\"h5_typography_typography\";s:29:\"globals/typography?id=91cb5d9\";s:8:\"h6_color\";s:25:\"globals/colors?id=primary\";s:24:\"h6_typography_typography\";s:29:\"globals/typography?id=5ad446d\";s:23:\"button_background_color\";s:24:\"globals/colors?id=accent\";s:17:\"button_text_color\";s:27:\"globals/colors?id=secondary\";s:28:\"button_typography_typography\";s:29:\"globals/typography?id=0a50947\";s:32:\"form_field_typography_typography\";s:26:\"globals/typography?id=text\";s:21:\"form_field_text_color\";s:25:\"globals/colors?id=primary\";s:32:\"form_label_typography_typography\";s:0:\"\";s:16:\"form_label_color\";s:25:\"globals/colors?id=primary\";s:29:\"button_hover_background_color\";s:27:\"globals/colors?id=secondary\";s:23:\"button_hover_text_color\";s:24:\"globals/colors?id=accent\";s:23:\"form_field_border_color\";s:25:\"globals/colors?id=f01b239\";}s:10:\"body_color\";s:7:\"#6C7084\";s:26:\"body_typography_typography\";s:6:\"custom\";s:27:\"body_typography_font_family\";s:5:\"Heebo\";s:25:\"body_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}s:32:\"body_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:27:\"body_typography_font_weight\";s:3:\"400\";s:27:\"body_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}s:17:\"link_normal_color\";s:7:\"#FFD027\";s:16:\"link_hover_color\";s:7:\"#0B1B69\";s:8:\"h1_color\";s:7:\"#0B1B69\";s:24:\"h1_typography_typography\";s:6:\"custom\";s:25:\"h1_typography_font_family\";s:5:\"Inter\";s:23:\"h1_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:50;s:5:\"sizes\";a:0:{}}s:25:\"h1_typography_font_weight\";s:3:\"600\";s:25:\"h1_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.100000000000000088817841970012523233890533447265625;s:5:\"sizes\";a:0:{}}s:8:\"h2_color\";s:7:\"#0B1B69\";s:24:\"h2_typography_typography\";s:6:\"custom\";s:25:\"h2_typography_font_family\";s:5:\"Inter\";s:23:\"h2_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:34;s:5:\"sizes\";a:0:{}}s:25:\"h2_typography_font_weight\";s:3:\"600\";s:25:\"h2_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1999999999999999555910790149937383830547332763671875;s:5:\"sizes\";a:0:{}}s:8:\"h3_color\";s:7:\"#0B1B69\";s:24:\"h3_typography_typography\";s:6:\"custom\";s:25:\"h3_typography_font_family\";s:5:\"Inter\";s:23:\"h3_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:24;s:5:\"sizes\";a:0:{}}s:25:\"h3_typography_font_weight\";s:3:\"500\";s:25:\"h3_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3000000000000000444089209850062616169452667236328125;s:5:\"sizes\";a:0:{}}s:8:\"h4_color\";s:7:\"#0B1B69\";s:24:\"h4_typography_typography\";s:6:\"custom\";s:25:\"h4_typography_font_family\";s:5:\"Inter\";s:23:\"h4_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}s:25:\"h4_typography_font_weight\";s:3:\"500\";s:25:\"h4_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3000000000000000444089209850062616169452667236328125;s:5:\"sizes\";a:0:{}}s:8:\"h5_color\";s:7:\"#FFD027\";s:24:\"h5_typography_typography\";s:6:\"custom\";s:25:\"h5_typography_font_family\";s:5:\"Inter\";s:23:\"h5_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}s:25:\"h5_typography_font_weight\";s:3:\"500\";s:25:\"h5_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1999999999999999555910790149937383830547332763671875;s:5:\"sizes\";a:0:{}}s:8:\"h6_color\";s:7:\"#0B1B69\";s:24:\"h6_typography_typography\";s:6:\"custom\";s:25:\"h6_typography_font_family\";s:5:\"Inter\";s:23:\"h6_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}s:25:\"h6_typography_font_weight\";s:3:\"500\";s:25:\"h6_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3000000000000000444089209850062616169452667236328125;s:5:\"sizes\";a:0:{}}s:17:\"button_text_color\";s:7:\"#0B1B69\";s:23:\"button_background_color\";s:7:\"#FFD027\";s:16:\"form_label_color\";s:7:\"#0B1B69\";s:32:\"form_label_typography_typography\";s:6:\"custom\";s:33:\"form_label_typography_font_family\";s:5:\"Inter\";s:31:\"form_label_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}s:33:\"form_label_typography_font_weight\";s:3:\"500\";s:33:\"form_label_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:2.600000000000000088817841970012523233890533447265625;s:5:\"sizes\";a:0:{}}s:32:\"form_field_typography_typography\";s:6:\"custom\";s:33:\"form_field_typography_font_family\";s:5:\"Heebo\";s:31:\"form_field_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}s:38:\"form_field_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:33:\"form_field_typography_font_weight\";s:3:\"400\";s:33:\"form_field_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}s:21:\"form_field_text_color\";s:7:\"#0B1B69\";s:24:\"form_field_border_border\";s:5:\"solid\";s:23:\"form_field_border_width\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";s:8:\"isLinked\";b:1;}s:24:\"form_field_border_radius\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"5\";s:5:\"right\";s:1:\"5\";s:6:\"bottom\";s:1:\"5\";s:4:\"left\";s:1:\"5\";s:8:\"isLinked\";b:1;}s:27:\"hello_footer_copyright_text\";s:19:\"All rights reserved\";}'),(187,37,'_elementor_data','[]'),(188,35,'_elementor_page_assets','a:0:{}'),(189,35,'envato_tk_source_kit','26'),(190,35,'envato_tk_source_index','0'),(191,38,'_elementor_edit_mode','builder'),(192,38,'_elementor_template_type','kit'),(193,38,'_elementor_version','3.23.2'),(194,38,'_elementor_pro_version','3.10.1'),(195,38,'_wp_page_template','default'),(196,38,'_elementor_page_settings','a:78:{s:13:\"custom_colors\";a:3:{i:0;a:3:{s:3:\"_id\";s:7:\"e8dc402\";s:5:\"title\";s:6:\"Text 2\";s:5:\"color\";s:7:\"#C4C4C4\";}i:1;a:3:{s:3:\"_id\";s:7:\"06a34e7\";s:5:\"title\";s:5:\"White\";s:5:\"color\";s:7:\"#FFFFFF\";}i:2;a:3:{s:3:\"_id\";s:7:\"f01b239\";s:5:\"title\";s:6:\"Border\";s:5:\"color\";s:7:\"#E1E1E1\";}}s:13:\"system_colors\";a:4:{i:0;a:3:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:5:\"color\";s:7:\"#00160E\";}i:1;a:3:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:5:\"color\";s:7:\"#006943\";}i:2;a:3:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:5:\"color\";s:7:\"#7F7F7F\";}i:3;a:3:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:5:\"color\";s:7:\"#FFD402\";}}s:17:\"system_typography\";a:4:{i:0;a:8:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Inter\";s:22:\"typography_font_weight\";s:3:\"600\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:50;s:5:\"sizes\";a:0:{}}s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.100000000000000088817841970012523233890533447265625;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:30;s:5:\"sizes\";a:0:{}}}i:1;a:8:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Inter\";s:22:\"typography_font_weight\";s:3:\"600\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:34;s:5:\"sizes\";a:0:{}}s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1999999999999999555910790149937383830547332763671875;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:24;s:5:\"sizes\";a:0:{}}}i:2;a:8:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Heebo\";s:22:\"typography_font_weight\";s:3:\"300\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}}i:3;a:8:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Inter\";s:22:\"typography_font_weight\";s:3:\"500\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1999999999999999555910790149937383830547332763671875;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}}}s:17:\"custom_typography\";a:16:{i:0;a:8:{s:3:\"_id\";s:7:\"274f2d8\";s:5:\"title\";s:2:\"H3\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Inter\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:24;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"500\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3000000000000000444089209850062616169452667236328125;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}}i:1;a:8:{s:3:\"_id\";s:7:\"8966ad4\";s:5:\"title\";s:2:\"H4\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Inter\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"500\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3000000000000000444089209850062616169452667236328125;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}}i:2;a:8:{s:3:\"_id\";s:7:\"91cb5d9\";s:5:\"title\";s:2:\"H5\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Inter\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"500\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1999999999999999555910790149937383830547332763671875;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}}i:3;a:7:{s:3:\"_id\";s:7:\"5ad446d\";s:5:\"title\";s:2:\"H6\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Inter\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"500\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3000000000000000444089209850062616169452667236328125;s:5:\"sizes\";a:0:{}}}i:4;a:9:{s:3:\"_id\";s:7:\"eef9e43\";s:5:\"title\";s:3:\"Nav\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Inter\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:12;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"600\";s:25:\"typography_text_transform\";s:9:\"uppercase\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";d:1.3000000000000000444089209850062616169452667236328125;s:5:\"sizes\";a:0:{}}}i:5;a:8:{s:3:\"_id\";s:7:\"558fe58\";s:5:\"title\";s:7:\"Button \";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Inter\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"500\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:12;s:5:\"sizes\";a:0:{}}}i:6;a:8:{s:3:\"_id\";s:7:\"0a50947\";s:5:\"title\";s:8:\"Button 2\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Inter\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"500\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}}i:7;a:8:{s:3:\"_id\";s:7:\"a1d69c8\";s:5:\"title\";s:6:\"H3 Alt\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Inter\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"500\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3000000000000000444089209850062616169452667236328125;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}}i:8;a:7:{s:3:\"_id\";s:7:\"f882794\";s:5:\"title\";s:7:\"Text 2 \";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Heebo\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"300\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}}i:9;a:8:{s:3:\"_id\";s:7:\"0703412\";s:5:\"title\";s:8:\"Funfact \";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Inter\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:34;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"600\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1999999999999999555910790149937383830547332763671875;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:28;s:5:\"sizes\";a:0:{}}}i:10;a:9:{s:3:\"_id\";s:7:\"d343bdf\";s:5:\"title\";s:16:\"Desc Testimonial\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Heebo\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:22;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"400\";s:21:\"typography_font_style\";s:6:\"italic\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}}i:11;a:7:{s:3:\"_id\";s:7:\"9d077e9\";s:5:\"title\";s:7:\"Pricing\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Inter\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:48;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"600\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3000000000000000444089209850062616169452667236328125;s:5:\"sizes\";a:0:{}}}i:12;a:8:{s:3:\"_id\";s:7:\"dcc4f3a\";s:5:\"title\";s:13:\"Super Funfact\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Heebo\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:26;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"600\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:24;s:5:\"sizes\";a:0:{}}}i:13;a:8:{s:3:\"_id\";s:7:\"a098a14\";s:5:\"title\";s:8:\"404 Page\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Inter\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:156;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"700\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1999999999999999555910790149937383830547332763671875;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:96;s:5:\"sizes\";a:0:{}}}i:14;a:7:{s:3:\"_id\";s:7:\"b8d9da4\";s:5:\"title\";s:6:\"Number\";s:21:\"typography_typography\";s:6:\"custom\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"600\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3000000000000000444089209850062616169452667236328125;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_family\";s:5:\"Inter\";}i:15;a:8:{s:3:\"_id\";s:7:\"c19945e\";s:5:\"title\";s:5:\"Quote\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Heebo\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"300\";s:21:\"typography_font_style\";s:6:\"italic\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}}}s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:15:\"activeItemIndex\";i:1;s:11:\"viewport_md\";i:768;s:11:\"viewport_lg\";i:1025;s:20:\"button_border_border\";s:5:\"solid\";s:19:\"button_border_width\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:20:\"button_border_radius\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"5\";s:5:\"right\";s:1:\"5\";s:6:\"bottom\";s:1:\"5\";s:4:\"left\";s:1:\"5\";s:8:\"isLinked\";b:1;}s:14:\"button_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"20\";s:5:\"right\";s:2:\"40\";s:6:\"bottom\";s:2:\"20\";s:4:\"left\";s:2:\"40\";s:8:\"isLinked\";b:0;}s:11:\"__globals__\";a:26:{s:10:\"body_color\";s:22:\"globals/colors?id=text\";s:26:\"body_typography_typography\";s:26:\"globals/typography?id=text\";s:17:\"link_normal_color\";s:24:\"globals/colors?id=accent\";s:16:\"link_hover_color\";s:27:\"globals/colors?id=secondary\";s:8:\"h1_color\";s:25:\"globals/colors?id=primary\";s:24:\"h1_typography_typography\";s:29:\"globals/typography?id=primary\";s:8:\"h2_color\";s:25:\"globals/colors?id=primary\";s:24:\"h2_typography_typography\";s:31:\"globals/typography?id=secondary\";s:8:\"h3_color\";s:25:\"globals/colors?id=primary\";s:24:\"h3_typography_typography\";s:29:\"globals/typography?id=274f2d8\";s:8:\"h4_color\";s:25:\"globals/colors?id=primary\";s:24:\"h4_typography_typography\";s:29:\"globals/typography?id=8966ad4\";s:8:\"h5_color\";s:24:\"globals/colors?id=accent\";s:24:\"h5_typography_typography\";s:29:\"globals/typography?id=91cb5d9\";s:8:\"h6_color\";s:25:\"globals/colors?id=primary\";s:24:\"h6_typography_typography\";s:29:\"globals/typography?id=5ad446d\";s:23:\"button_background_color\";s:24:\"globals/colors?id=accent\";s:17:\"button_text_color\";s:27:\"globals/colors?id=secondary\";s:28:\"button_typography_typography\";s:29:\"globals/typography?id=0a50947\";s:32:\"form_field_typography_typography\";s:26:\"globals/typography?id=text\";s:21:\"form_field_text_color\";s:25:\"globals/colors?id=primary\";s:32:\"form_label_typography_typography\";s:0:\"\";s:16:\"form_label_color\";s:25:\"globals/colors?id=primary\";s:29:\"button_hover_background_color\";s:27:\"globals/colors?id=secondary\";s:23:\"button_hover_text_color\";s:24:\"globals/colors?id=accent\";s:23:\"form_field_border_color\";s:25:\"globals/colors?id=f01b239\";}s:10:\"body_color\";s:7:\"#6C7084\";s:26:\"body_typography_typography\";s:6:\"custom\";s:27:\"body_typography_font_family\";s:5:\"Heebo\";s:25:\"body_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}s:32:\"body_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:27:\"body_typography_font_weight\";s:3:\"400\";s:27:\"body_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}s:17:\"link_normal_color\";s:7:\"#FFD027\";s:16:\"link_hover_color\";s:7:\"#0B1B69\";s:8:\"h1_color\";s:7:\"#0B1B69\";s:24:\"h1_typography_typography\";s:6:\"custom\";s:25:\"h1_typography_font_family\";s:5:\"Inter\";s:23:\"h1_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:50;s:5:\"sizes\";a:0:{}}s:25:\"h1_typography_font_weight\";s:3:\"600\";s:25:\"h1_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.100000000000000088817841970012523233890533447265625;s:5:\"sizes\";a:0:{}}s:8:\"h2_color\";s:7:\"#0B1B69\";s:24:\"h2_typography_typography\";s:6:\"custom\";s:25:\"h2_typography_font_family\";s:5:\"Inter\";s:23:\"h2_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:34;s:5:\"sizes\";a:0:{}}s:25:\"h2_typography_font_weight\";s:3:\"600\";s:25:\"h2_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1999999999999999555910790149937383830547332763671875;s:5:\"sizes\";a:0:{}}s:8:\"h3_color\";s:7:\"#0B1B69\";s:24:\"h3_typography_typography\";s:6:\"custom\";s:25:\"h3_typography_font_family\";s:5:\"Inter\";s:23:\"h3_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:24;s:5:\"sizes\";a:0:{}}s:25:\"h3_typography_font_weight\";s:3:\"500\";s:25:\"h3_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3000000000000000444089209850062616169452667236328125;s:5:\"sizes\";a:0:{}}s:8:\"h4_color\";s:7:\"#0B1B69\";s:24:\"h4_typography_typography\";s:6:\"custom\";s:25:\"h4_typography_font_family\";s:5:\"Inter\";s:23:\"h4_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}s:25:\"h4_typography_font_weight\";s:3:\"500\";s:25:\"h4_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3000000000000000444089209850062616169452667236328125;s:5:\"sizes\";a:0:{}}s:8:\"h5_color\";s:7:\"#FFD027\";s:24:\"h5_typography_typography\";s:6:\"custom\";s:25:\"h5_typography_font_family\";s:5:\"Inter\";s:23:\"h5_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}s:25:\"h5_typography_font_weight\";s:3:\"500\";s:25:\"h5_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1999999999999999555910790149937383830547332763671875;s:5:\"sizes\";a:0:{}}s:8:\"h6_color\";s:7:\"#0B1B69\";s:24:\"h6_typography_typography\";s:6:\"custom\";s:25:\"h6_typography_font_family\";s:5:\"Inter\";s:23:\"h6_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}s:25:\"h6_typography_font_weight\";s:3:\"500\";s:25:\"h6_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3000000000000000444089209850062616169452667236328125;s:5:\"sizes\";a:0:{}}s:17:\"button_text_color\";s:7:\"#0B1B69\";s:23:\"button_background_color\";s:7:\"#FFD027\";s:16:\"form_label_color\";s:7:\"#0B1B69\";s:32:\"form_label_typography_typography\";s:6:\"custom\";s:33:\"form_label_typography_font_family\";s:5:\"Inter\";s:31:\"form_label_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}s:33:\"form_label_typography_font_weight\";s:3:\"500\";s:33:\"form_label_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:2.600000000000000088817841970012523233890533447265625;s:5:\"sizes\";a:0:{}}s:32:\"form_field_typography_typography\";s:6:\"custom\";s:33:\"form_field_typography_font_family\";s:5:\"Heebo\";s:31:\"form_field_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}s:38:\"form_field_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:33:\"form_field_typography_font_weight\";s:3:\"400\";s:33:\"form_field_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}s:21:\"form_field_text_color\";s:7:\"#0B1B69\";s:24:\"form_field_border_border\";s:5:\"solid\";s:23:\"form_field_border_width\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";s:8:\"isLinked\";b:1;}s:24:\"form_field_border_radius\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"5\";s:5:\"right\";s:1:\"5\";s:6:\"bottom\";s:1:\"5\";s:4:\"left\";s:1:\"5\";s:8:\"isLinked\";b:1;}s:27:\"hello_footer_copyright_text\";s:19:\"All rights reserved\";}'),(197,38,'_elementor_data','[]'),(198,38,'_elementor_page_assets','a:0:{}'),(208,41,'_edit_last','1'),(209,41,'_edit_lock','1721838853:1'),(210,41,'_wp_page_template','default'),(211,41,'ehf_target_include_locations','a:2:{s:4:\"rule\";a:1:{i:0;s:12:\"basic-global\";}s:8:\"specific\";a:0:{}}'),(212,41,'ehf_target_exclude_locations','a:0:{}'),(213,41,'ehf_target_user_roles','a:1:{i:0;s:0:\"\";}'),(214,41,'ehf_template_type','type_header'),(215,41,'_elementor_edit_mode','builder'),(216,41,'_elementor_template_type','wp-post'),(217,41,'_elementor_version','3.23.2'),(220,43,'_wp_attached_file','2024/07/logo-UDS48Q.png'),(221,43,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1486;s:6:\"height\";i:517;s:4:\"file\";s:23:\"2024/07/logo-UDS48Q.png\";s:8:\"filesize\";i:53621;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"logo-UDS48Q-300x104.png\";s:5:\"width\";i:300;s:6:\"height\";i:104;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12733;}s:5:\"large\";a:5:{s:4:\"file\";s:24:\"logo-UDS48Q-1024x356.png\";s:5:\"width\";i:1024;s:6:\"height\";i:356;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:59089;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"logo-UDS48Q-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4963;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:23:\"logo-UDS48Q-768x267.png\";s:5:\"width\";i:768;s:6:\"height\";i:267;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:40503;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(222,43,'_elementor_source_image_hash','e33d1c682e3330b084eb0f15fa1009fa589279ec'),(223,44,'_elementor_edit_mode','builder'),(224,44,'_elementor_template_type','section'),(225,44,'_elementor_version','3.23.2'),(226,44,'_elementor_data','[{\"id\":\"625370b6\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"z_index\":2,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"17c0d1df\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"z_index_tablet\":5,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"68e1cdef\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"dea95de\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.315000000000001278976924368180334568023681640625,\"_inline_size_tablet\":30,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"486c907f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"43\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/logo-UDS48Q.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"1a062173\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":58.89099999999999823785401531495153903961181640625,\"align\":\"flex-end\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":70,\"hide_mobile\":\"hidden-phone\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4044e57c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-map-marker1-light\",\"library\":\"jkiticon\"},\"title_text\":\"Location\",\"description_text\":\"Jl. Raya Kuta No.70, Kuta \",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#EAEAEA\",\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"description_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"globals\\/typography?id=8966ad4\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"view\":\"framed\",\"icon_padding\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#006943\",\"title_color\":\"#00160E\",\"description_color\":\"#7F7F7F\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"70cf91ce\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-phone-call-line\",\"library\":\"jkiticon\"},\"title_text\":\"Call Us\",\"description_text\":\"(+021) 176 993\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"description_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"globals\\/typography?id=8966ad4\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"view\":\"framed\",\"icon_padding\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f78f4b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":21.452000000000001733724275254644453525543212890625,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6d581625\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"align\":\"right\",\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=558fe58\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"hover_animation\":\"float\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#006943\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c1f1150\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":3,\"blur\":15,\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.06)\"},\"background_background\":\"classic\",\"z_index\":1,\"jet_sticky_section_sticky\":\"yes\",\"jet_sticky_section_sticky_z_index\":\"10\",\"jet_sticky_section_sticky_background_background\":\"classic\",\"jet_sticky_section_sticky_background_color\":\"#FFFFFF\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"z_index_tablet\":4,\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"96e8406\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80.3490000000000037516656448133289813995361328125,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":20,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2d784978\",\"elType\":\"widget\",\"settings\":{\"sg_menu_choose\":\"menu\",\"sg_mobile_menu_logo\":{\"id\":\"43\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/logo-UDS48Q.png\"},\"sg_mobile_menu_logo_size_imagesize_size\":\"full\",\"sg_mobile_menu_icon\":{\"value\":\"jki jki-bars-solid\",\"library\":\"jkiticon\"},\"st_menu_wrapper_height_responsive\":{\"unit\":\"px\",\"size\":74,\"sizes\":[]},\"st_menu_wrapper_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"},\"st_submenu_item_indicator_margin_responsive\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_submenu_panel_padding_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_panel_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_background_background_background\":\"classic\",\"st_submenu_panel_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_position_responsive_tablet\":\"left\",\"st_hamburger_menu_icon_background_background_background\":\"classic\",\"st_hamburger_menu_icon_background_background_color\":\"#FFFFFF00\",\"st_hamburger_menu_icon_border_border_border\":\"solid\",\"st_hamburger_menu_icon_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_hamburger_menu_close_background_background_background\":\"classic\",\"st_hamburger_menu_close_border_border_border\":\"solid\",\"st_hamburger_menu_close_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"st_menu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_menu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_color_responsive\":\"\",\"st_submenu_panel_background_background_color\":\"\",\"st_submenu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_submenu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_wrapper_mobile_color_tablet_responsive_tablet\":\"\",\"st_menu_item_text_normal_color_responsive_tablet\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_item_text_active_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_submenu_item_indicator_color_responsive_tablet\":\"\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_icon_color_hover_responsive_tablet\":\"\",\"st_hamburger_menu_close_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_close_color_hover_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_wrapper_background_background_color\":\"\",\"st_hamburger_menu_close_background_background_color\":\"globals\\/colors?id=secondary\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_border_border_color\":\"\",\"st_hamburger_menu_close_background_hover_background_color\":\"globals\\/colors?id=accent\"},\"st_submenu_panel_box_shadow_box_shadow_box_shadow_type\":\"yes\",\"st_submenu_panel_box_shadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_submenu_item_indicator_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_submenu_item_indicator_border_border_border\":\"solid\",\"st_submenu_item_indicator_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_submenu_panel_background_background_color\":\"#FFFFFF\",\"st_hamburger_menu_icon_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_icon_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_close_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_hamburger_menu_close_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_hamburger_menu_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_menu_item_text_normal_color_responsive_tablet\":\"#6EC1E4\",\"st_menu_item_text_hover_color_responsive_tablet\":\"#54595F\",\"st_menu_item_text_active_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_close_background_background_color\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"#54595F\",\"st_hamburger_menu_position_responsive_mobile\":\"left\",\"st_hamburger_menu_close_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_hamburger_menu_close_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"st_mobile_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"st_menu_item_text_hover_color_responsive\":\"#54595F\",\"st_menu_item_text_active_color_responsive\":\"#54595F\",\"st_mobile_menu_object_fit_responsive_tablet\":\"cover\",\"st_mobile_menu_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_hamburger_menu_close_background_hover_background_background\":\"classic\",\"sg_mobile_close_icon\":{\"value\":\"fas fa-times\",\"library\":\"fa-solid\"},\"st_menu_wrapper_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_menu_wrapper_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_menu_wrapper_background_background_slideshow_gallery\":[],\"st_menu_item_text_normal_bg_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_menu_item_text_normal_bg_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_menu_item_text_normal_bg_background_slideshow_gallery\":[],\"st_menu_item_text_hover_bg_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_menu_item_text_hover_bg_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_menu_item_text_hover_bg_background_slideshow_gallery\":[],\"st_menu_item_text_active_bg_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_menu_item_text_active_bg_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_menu_item_text_active_bg_background_slideshow_gallery\":[],\"st_submenu_item_text_normal_bg_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_submenu_item_text_normal_bg_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_submenu_item_text_normal_bg_background_slideshow_gallery\":[],\"st_submenu_item_text_hover_bg_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_submenu_item_text_hover_bg_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_submenu_item_text_hover_bg_background_slideshow_gallery\":[],\"st_submenu_item_text_active_bg_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_submenu_item_text_active_bg_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_submenu_item_text_active_bg_background_slideshow_gallery\":[],\"st_submenu_panel_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_submenu_panel_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_submenu_panel_background_background_slideshow_gallery\":[],\"st_hamburger_menu_icon_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_hamburger_menu_icon_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_hamburger_menu_icon_background_background_slideshow_gallery\":[],\"st_hamburger_menu_icon_background_hover_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_hamburger_menu_icon_background_hover_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_hamburger_menu_icon_background_hover_background_slideshow_gallery\":[],\"st_hamburger_menu_close_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_hamburger_menu_close_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_hamburger_menu_close_background_background_slideshow_gallery\":[],\"st_hamburger_menu_close_background_hover_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_hamburger_menu_close_background_hover_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_hamburger_menu_close_background_hover_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_nav_menu\"}],\"isInner\":\"\"},{\"id\":\"3f2f0b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":19.650999999999999801048033987171947956085205078125,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":30,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":80,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"30bb725d\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"jki jki-facebook-f\",\"library\":\"jkiticon\"},\"_id\":\"7c320e0\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"3c2d02e\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"03c5d88\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"_id\":\"6498fcd\",\"social_icon\":{\"value\":\"jki jki-instagram-1-light\",\"library\":\"jkiticon\"},\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"}],\"shape\":\"circle\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=secondary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"icon_secondary_color\":\"globals\\/colors?id=accent\"},\"align_tablet\":\"right\",\"hover_animation\":\"shrink\",\"hover_primary_color\":\"#006943\",\"hover_secondary_color\":\"#FFD402\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(227,45,'_elementor_edit_mode','builder'),(228,45,'_elementor_template_type','section'),(229,45,'_elementor_version','3.23.2'),(230,45,'_elementor_data','[{\"id\":\"625370b6\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"z_index\":2,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"17c0d1df\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"z_index_tablet\":5,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"68e1cdef\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"dea95de\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.315000000000001278976924368180334568023681640625,\"_inline_size_tablet\":30,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"486c907f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"43\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/logo-UDS48Q.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"1a062173\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":58.89099999999999823785401531495153903961181640625,\"align\":\"flex-end\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":70,\"hide_mobile\":\"hidden-phone\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4044e57c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-map-marker1-light\",\"library\":\"jkiticon\"},\"title_text\":\"Location\",\"description_text\":\"Jl. Raya Kuta No.70, Kuta \",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#EAEAEA\",\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"description_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"globals\\/typography?id=8966ad4\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"view\":\"framed\",\"icon_padding\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#006943\",\"title_color\":\"#00160E\",\"description_color\":\"#7F7F7F\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"70cf91ce\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-phone-call-line\",\"library\":\"jkiticon\"},\"title_text\":\"Call Us\",\"description_text\":\"(+021) 176 993\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"description_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"globals\\/typography?id=8966ad4\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"view\":\"framed\",\"icon_padding\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7f78f4b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":21.452000000000001733724275254644453525543212890625,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6d581625\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"align\":\"right\",\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=558fe58\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"hover_animation\":\"float\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#006943\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c1f1150\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":3,\"blur\":15,\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.06)\"},\"background_background\":\"classic\",\"z_index\":1,\"jet_sticky_section_sticky\":\"yes\",\"jet_sticky_section_sticky_z_index\":\"10\",\"jet_sticky_section_sticky_background_background\":\"classic\",\"jet_sticky_section_sticky_background_color\":\"#FFFFFF\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"z_index_tablet\":4,\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"96e8406\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80.3490000000000037516656448133289813995361328125,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":20,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2d784978\",\"elType\":\"widget\",\"settings\":{\"sg_menu_choose\":\"menu\",\"sg_mobile_menu_logo\":{\"id\":\"43\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/logo-UDS48Q.png\"},\"sg_mobile_menu_logo_size_imagesize_size\":\"full\",\"sg_mobile_menu_icon\":{\"value\":\"jki jki-bars-solid\",\"library\":\"jkiticon\"},\"st_menu_wrapper_height_responsive\":{\"unit\":\"px\",\"size\":74,\"sizes\":[]},\"st_menu_wrapper_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"},\"st_submenu_item_indicator_margin_responsive\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_submenu_panel_padding_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_panel_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_background_background_background\":\"classic\",\"st_submenu_panel_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_position_responsive_tablet\":\"left\",\"st_hamburger_menu_icon_background_background_background\":\"classic\",\"st_hamburger_menu_icon_background_background_color\":\"#FFFFFF00\",\"st_hamburger_menu_icon_border_border_border\":\"solid\",\"st_hamburger_menu_icon_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_hamburger_menu_close_background_background_background\":\"classic\",\"st_hamburger_menu_close_border_border_border\":\"solid\",\"st_hamburger_menu_close_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"st_menu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_menu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_color_responsive\":\"\",\"st_submenu_panel_background_background_color\":\"\",\"st_submenu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_submenu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_wrapper_mobile_color_tablet_responsive_tablet\":\"\",\"st_menu_item_text_normal_color_responsive_tablet\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_item_text_active_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_submenu_item_indicator_color_responsive_tablet\":\"\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_icon_color_hover_responsive_tablet\":\"\",\"st_hamburger_menu_close_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_close_color_hover_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_wrapper_background_background_color\":\"\",\"st_hamburger_menu_close_background_background_color\":\"globals\\/colors?id=secondary\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_border_border_color\":\"\",\"st_hamburger_menu_close_background_hover_background_color\":\"globals\\/colors?id=accent\"},\"st_submenu_panel_box_shadow_box_shadow_box_shadow_type\":\"yes\",\"st_submenu_panel_box_shadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_submenu_item_indicator_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_submenu_item_indicator_border_border_border\":\"solid\",\"st_submenu_item_indicator_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_submenu_panel_background_background_color\":\"#FFFFFF\",\"st_hamburger_menu_icon_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_icon_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_close_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_hamburger_menu_close_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_hamburger_menu_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_menu_item_text_normal_color_responsive_tablet\":\"#6EC1E4\",\"st_menu_item_text_hover_color_responsive_tablet\":\"#54595F\",\"st_menu_item_text_active_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_close_background_background_color\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"#54595F\",\"st_hamburger_menu_position_responsive_mobile\":\"left\",\"st_hamburger_menu_close_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_hamburger_menu_close_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"st_mobile_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"st_menu_item_text_hover_color_responsive\":\"#54595F\",\"st_menu_item_text_active_color_responsive\":\"#54595F\",\"st_mobile_menu_object_fit_responsive_tablet\":\"cover\",\"st_mobile_menu_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_hamburger_menu_close_background_hover_background_background\":\"classic\",\"sg_mobile_close_icon\":{\"value\":\"fas fa-times\",\"library\":\"fa-solid\"},\"st_menu_wrapper_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_menu_wrapper_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_menu_wrapper_background_background_slideshow_gallery\":[],\"st_menu_item_text_normal_bg_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_menu_item_text_normal_bg_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_menu_item_text_normal_bg_background_slideshow_gallery\":[],\"st_menu_item_text_hover_bg_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_menu_item_text_hover_bg_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_menu_item_text_hover_bg_background_slideshow_gallery\":[],\"st_menu_item_text_active_bg_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_menu_item_text_active_bg_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_menu_item_text_active_bg_background_slideshow_gallery\":[],\"st_submenu_item_text_normal_bg_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_submenu_item_text_normal_bg_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_submenu_item_text_normal_bg_background_slideshow_gallery\":[],\"st_submenu_item_text_hover_bg_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_submenu_item_text_hover_bg_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_submenu_item_text_hover_bg_background_slideshow_gallery\":[],\"st_submenu_item_text_active_bg_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_submenu_item_text_active_bg_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_submenu_item_text_active_bg_background_slideshow_gallery\":[],\"st_submenu_panel_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_submenu_panel_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_submenu_panel_background_background_slideshow_gallery\":[],\"st_hamburger_menu_icon_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_hamburger_menu_icon_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_hamburger_menu_icon_background_background_slideshow_gallery\":[],\"st_hamburger_menu_icon_background_hover_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_hamburger_menu_icon_background_hover_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_hamburger_menu_icon_background_hover_background_slideshow_gallery\":[],\"st_hamburger_menu_close_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_hamburger_menu_close_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_hamburger_menu_close_background_background_slideshow_gallery\":[],\"st_hamburger_menu_close_background_hover_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_hamburger_menu_close_background_hover_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_hamburger_menu_close_background_hover_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_nav_menu\"}],\"isInner\":\"\"},{\"id\":\"3f2f0b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":19.650999999999999801048033987171947956085205078125,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":30,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":80,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"30bb725d\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"jki jki-facebook-f\",\"library\":\"jkiticon\"},\"_id\":\"7c320e0\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"3c2d02e\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"03c5d88\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"_id\":\"6498fcd\",\"social_icon\":{\"value\":\"jki jki-instagram-1-light\",\"library\":\"jkiticon\"},\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"}],\"shape\":\"circle\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=secondary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"icon_secondary_color\":\"globals\\/colors?id=accent\"},\"align_tablet\":\"right\",\"hover_animation\":\"shrink\",\"hover_primary_color\":\"#006943\",\"hover_secondary_color\":\"#FFD402\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(231,44,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(232,44,'_wp_page_template','elementor_canvas'),(233,44,'envato_tk_source_kit','26'),(234,44,'envato_tk_source_index','13'),(235,46,'_wp_page_template','default'),(236,46,'_elementor_edit_mode','builder'),(237,46,'_elementor_template_type','wp-post'),(238,46,'_elementor_version','3.23.2'),(240,47,'_wp_page_template','default'),(241,47,'_elementor_edit_mode','builder'),(242,47,'_elementor_template_type','wp-post'),(243,47,'_elementor_version','3.23.2'),(245,41,'_elementor_data','[{\"id\":\"1ed2d9f1\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":3,\"blur\":15,\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.06)\"},\"background_background\":\"classic\",\"z_index\":1,\"jet_sticky_section_sticky\":\"yes\",\"jet_sticky_section_sticky_z_index\":\"10\",\"jet_sticky_section_sticky_background_background\":\"classic\",\"jet_sticky_section_sticky_background_color\":\"#FFFFFF\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"z_index_tablet\":4,\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"z_index_mobile\":0,\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=f01b239\"}},\"elements\":[{\"id\":\"5a58714b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80.3490000000000037516656448133289813995361328125,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":20,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"18bb12d6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-map-marker1-light\",\"library\":\"jkiticon\"},\"title_text\":\"\",\"description_text\":\"123 Wall St\\nMiami, FL 12345\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"none\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#EAEAEA\",\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\",\"description_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"secondary_color\":\"\",\"title_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"view\":\"framed\",\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#3F5A29\",\"title_color\":\"#00160E\",\"description_color\":\"#00160E\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"secondary_color\":\"#FFFFFF00\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Heebo\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"294dea9a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-phone-call-line\",\"library\":\"jkiticon\"},\"title_text\":\"\",\"description_text\":\"+1 505 555 5555\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\",\"description_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"secondary_color\":\"\",\"title_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"view\":\"framed\",\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"tel:+1 505 555 5555\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"primary_color\":\"#3F5A29\",\"secondary_color\":\"#FFFFFF00\",\"title_color\":\"#00160E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"description_color\":\"#00160E\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Heebo\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_border_border\":\"none\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#EAEAEA\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"5e047152\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":19.650999999999999801048033987171947956085205078125,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":30,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":80},\"elements\":[{\"id\":\"976c2f8\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"jki jki-facebook-f\",\"library\":\"jkiticon\"},\"_id\":\"0fb8cc7\"},{\"social_icon\":{\"value\":\"fab fa-x-twitter\",\"library\":\"fa-brands\"},\"_id\":\"4be5bc7\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"147010a\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"df2ad14\"}],\"shape\":\"circle\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"hover_animation\":\"shrink\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=secondary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_secondary_color\":\"globals\\/colors?id=accent\",\"hover_primary_color\":\"globals\\/colors?id=accent\"},\"align_tablet\":\"right\",\"hover_primary_color\":\"#006943\",\"hover_secondary_color\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65d61e79\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"z_index\":1,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":3,\"blur\":15,\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.06)\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"z_index_tablet\":4,\"z_index_mobile\":0,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"49c5f53f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"z_index_tablet\":5,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7fd427a5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"z_index_mobile\":999},\"elements\":[{\"id\":\"a5ad795\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EAEAEA\"},\"elements\":[{\"id\":\"4b6500b7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":219,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-2.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":70}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2eb94bb5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.6580000000000012505552149377763271331787109375,\"align\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":80,\"hide_mobile\":\"hidden-phone\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align_tablet\":\"flex-end\"},\"elements\":[{\"id\":\"14c9c516\",\"elType\":\"widget\",\"settings\":{\"sg_menu_choose\":\"main-menu\",\"sg_mobile_menu_logo\":{\"id\":107,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_mobile_menu_logo_size_imagesize_size\":\"full\",\"sg_mobile_menu_icon\":{\"value\":\"jki jki-bars-solid\",\"library\":\"jkiticon\"},\"st_menu_wrapper_height_responsive\":{\"unit\":\"px\",\"size\":74,\"sizes\":[]},\"st_menu_wrapper_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"},\"st_submenu_item_indicator_margin_responsive\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_submenu_panel_padding_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_panel_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_background_background_background\":\"classic\",\"st_submenu_panel_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_position_responsive_tablet\":\"left\",\"st_hamburger_menu_icon_background_background_background\":\"classic\",\"st_hamburger_menu_icon_background_background_color\":\"#FFFFFF00\",\"st_hamburger_menu_icon_border_border_border\":\"solid\",\"st_hamburger_menu_icon_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_hamburger_menu_close_background_background_background\":\"classic\",\"st_hamburger_menu_close_border_border_border\":\"solid\",\"st_hamburger_menu_close_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"st_menu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_menu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_color_responsive\":\"\",\"st_submenu_panel_background_background_color\":\"\",\"st_submenu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_submenu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_wrapper_mobile_color_tablet_responsive_tablet\":\"\",\"st_menu_item_text_normal_color_responsive_tablet\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_item_text_active_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_submenu_item_indicator_color_responsive_tablet\":\"\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_icon_color_hover_responsive_tablet\":\"\",\"st_hamburger_menu_close_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_close_color_hover_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_wrapper_background_background_color\":\"\",\"st_hamburger_menu_close_background_background_color\":\"globals\\/colors?id=secondary\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_border_border_color\":\"\",\"st_hamburger_menu_close_background_hover_background_color\":\"globals\\/colors?id=accent\"},\"st_submenu_panel_box_shadow_box_shadow_box_shadow_type\":\"yes\",\"st_submenu_panel_box_shadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_submenu_item_indicator_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_submenu_item_indicator_border_border_border\":\"solid\",\"st_submenu_item_indicator_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_submenu_panel_background_background_color\":\"#FFFFFF\",\"st_hamburger_menu_icon_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_icon_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_close_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_hamburger_menu_close_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_hamburger_menu_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_menu_item_text_normal_color_responsive_tablet\":\"#6EC1E4\",\"st_menu_item_text_hover_color_responsive_tablet\":\"#54595F\",\"st_menu_item_text_active_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_close_background_background_color\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"#54595F\",\"st_hamburger_menu_position_responsive_mobile\":\"left\",\"st_hamburger_menu_close_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_hamburger_menu_close_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"st_mobile_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"st_menu_item_text_hover_color_responsive\":\"#54595F\",\"st_menu_item_text_active_color_responsive\":\"#54595F\",\"st_mobile_menu_object_fit_responsive_tablet\":\"cover\",\"st_mobile_menu_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_hamburger_menu_close_background_hover_background_background\":\"classic\",\"sg_menu_alignment_responsive\":\"center\",\"sg_menu_alignment_responsive_tablet\":\"flex-end\",\"sg_menu_alignment_responsive_mobile\":\"flex-end\",\"sg_menu_sub_position\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_z_index_mobile\":9999},\"elements\":[],\"widgetType\":\"jkit_nav_menu\"}],\"isInner\":true},{\"id\":\"5ef5f227\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"234dd6d2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"align\":\"right\",\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=558fe58\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"hover_animation\":\"float\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"00bb017\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"z_index\":1,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":3,\"blur\":15,\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.06)\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"z_index_tablet\":4,\"z_index_mobile\":0,\"hide_desktop\":\"hidden-desktop\"},\"elements\":[{\"id\":\"05b35c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index_tablet\":5,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"817d99c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"f9871fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"b9b486a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-2.png\",\"id\":219,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2c526\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position_tablet\":\"center\",\"content_position_mobile\":\"center\",\"align_tablet\":\"flex-end\",\"align_mobile\":\"flex-end\"},\"elements\":[{\"id\":\"665fe6d\",\"elType\":\"widget\",\"settings\":{\"sg_menu_choose\":\"main-menu\",\"sg_mobile_menu_logo\":{\"id\":107,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_mobile_menu_logo_size_imagesize_size\":\"full\",\"sg_mobile_menu_icon\":{\"value\":\"jki jki-bars-solid\",\"library\":\"jkiticon\"},\"st_menu_wrapper_height_responsive\":{\"unit\":\"px\",\"size\":74,\"sizes\":[]},\"st_menu_wrapper_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"},\"st_submenu_item_indicator_margin_responsive\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_submenu_panel_padding_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_panel_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_background_background_background\":\"classic\",\"st_submenu_panel_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_position_responsive_tablet\":\"left\",\"st_hamburger_menu_icon_background_background_background\":\"classic\",\"st_hamburger_menu_icon_background_background_color\":\"#FFFFFF00\",\"st_hamburger_menu_icon_border_border_border\":\"solid\",\"st_hamburger_menu_icon_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_hamburger_menu_close_background_background_background\":\"classic\",\"st_hamburger_menu_close_border_border_border\":\"solid\",\"st_hamburger_menu_close_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"st_menu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_menu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_color_responsive\":\"\",\"st_submenu_panel_background_background_color\":\"\",\"st_submenu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_submenu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_wrapper_mobile_color_tablet_responsive_tablet\":\"\",\"st_menu_item_text_normal_color_responsive_tablet\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_item_text_active_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_submenu_item_indicator_color_responsive_tablet\":\"\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_icon_color_hover_responsive_tablet\":\"\",\"st_hamburger_menu_close_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_close_color_hover_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_wrapper_background_background_color\":\"\",\"st_hamburger_menu_close_background_background_color\":\"globals\\/colors?id=secondary\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_border_border_color\":\"\",\"st_hamburger_menu_close_background_hover_background_color\":\"globals\\/colors?id=accent\"},\"st_submenu_panel_box_shadow_box_shadow_box_shadow_type\":\"yes\",\"st_submenu_panel_box_shadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_submenu_item_indicator_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_submenu_item_indicator_border_border_border\":\"solid\",\"st_submenu_item_indicator_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_submenu_panel_background_background_color\":\"#FFFFFF\",\"st_hamburger_menu_icon_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_icon_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_close_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_hamburger_menu_close_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_hamburger_menu_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_menu_item_text_normal_color_responsive_tablet\":\"#6EC1E4\",\"st_menu_item_text_hover_color_responsive_tablet\":\"#54595F\",\"st_menu_item_text_active_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_close_background_background_color\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"#54595F\",\"st_hamburger_menu_position_responsive_mobile\":\"left\",\"st_hamburger_menu_close_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_hamburger_menu_close_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"st_mobile_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"st_menu_item_text_hover_color_responsive\":\"#54595F\",\"st_menu_item_text_active_color_responsive\":\"#54595F\",\"st_mobile_menu_object_fit_responsive_tablet\":\"cover\",\"st_mobile_menu_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_hamburger_menu_close_background_hover_background_background\":\"classic\",\"sg_menu_alignment_responsive\":\"center\",\"sg_menu_alignment_responsive_tablet\":\"flex-end\",\"sg_menu_alignment_responsive_mobile\":\"flex-end\",\"sg_menu_sub_position\":\"left\",\"st_hamburger_menu_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width_tablet\":\"auto\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_offset_orientation_h\":\"end\"},\"elements\":[],\"widgetType\":\"jkit_nav_menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(246,48,'_wp_page_template','default'),(247,48,'_elementor_edit_mode','builder'),(248,48,'_elementor_template_type','wp-post'),(249,48,'_elementor_version','3.23.2'),(251,48,'_elementor_data','[{\"id\":\"65d61e79\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"z_index\":2,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"49c5f53f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"z_index_tablet\":5},\"elements\":[{\"id\":\"7fd427a5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"a5ad795\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.315000000000001278976924368180334568023681640625,\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"4b6500b7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"43\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/logo-UDS48Q.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2eb94bb5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":58.89099999999999823785401531495153903961181640625,\"align\":\"flex-end\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":70,\"hide_mobile\":\"hidden-phone\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18bb12d6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-map-marker1-light\",\"library\":\"jkiticon\"},\"title_text\":\"Location\",\"description_text\":\"Jl. Raya Kuta No.70, Kuta \",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#EAEAEA\",\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"description_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"globals\\/typography?id=8966ad4\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"view\":\"framed\",\"icon_padding\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#006943\",\"title_color\":\"#00160E\",\"description_color\":\"#7F7F7F\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"294dea9a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-phone-call-line\",\"library\":\"jkiticon\"},\"title_text\":\"Call Us\",\"description_text\":\"(+021) 176 993\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"description_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"globals\\/typography?id=8966ad4\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"view\":\"framed\",\"icon_padding\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"5ef5f227\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":21.452000000000001733724275254644453525543212890625,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"234dd6d2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"align\":\"right\",\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=558fe58\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"hover_animation\":\"float\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1ed2d9f1\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":3,\"blur\":15,\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.06)\"},\"background_background\":\"classic\",\"z_index\":1,\"jet_sticky_section_sticky\":\"yes\",\"jet_sticky_section_sticky_z_index\":\"10\",\"jet_sticky_section_sticky_background_background\":\"classic\",\"jet_sticky_section_sticky_background_color\":\"#FFFFFF\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"z_index_tablet\":4,\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a58714b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80.3490000000000037516656448133289813995361328125,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":20,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"14c9c516\",\"elType\":\"widget\",\"settings\":{\"sg_menu_choose\":\"menu\",\"sg_mobile_menu_logo\":{\"id\":\"43\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/logo-UDS48Q.png\"},\"sg_mobile_menu_logo_size_imagesize_size\":\"full\",\"sg_mobile_menu_icon\":{\"value\":\"jki jki-bars-solid\",\"library\":\"jkiticon\"},\"st_menu_wrapper_height_responsive\":{\"unit\":\"px\",\"size\":74,\"sizes\":[]},\"st_menu_wrapper_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"},\"st_submenu_item_indicator_margin_responsive\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_submenu_panel_padding_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_panel_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_background_background_background\":\"classic\",\"st_submenu_panel_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_position_responsive_tablet\":\"left\",\"st_hamburger_menu_icon_background_background_background\":\"classic\",\"st_hamburger_menu_icon_background_background_color\":\"#FFFFFF00\",\"st_hamburger_menu_icon_border_border_border\":\"solid\",\"st_hamburger_menu_icon_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_hamburger_menu_close_background_background_background\":\"classic\",\"st_hamburger_menu_close_border_border_border\":\"solid\",\"st_hamburger_menu_close_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"st_menu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_menu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_color_responsive\":\"\",\"st_submenu_panel_background_background_color\":\"\",\"st_submenu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_submenu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_wrapper_mobile_color_tablet_responsive_tablet\":\"\",\"st_menu_item_text_normal_color_responsive_tablet\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_item_text_active_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_submenu_item_indicator_color_responsive_tablet\":\"\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_icon_color_hover_responsive_tablet\":\"\",\"st_hamburger_menu_close_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_close_color_hover_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_wrapper_background_background_color\":\"\",\"st_hamburger_menu_close_background_background_color\":\"globals\\/colors?id=secondary\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_border_border_color\":\"\",\"st_hamburger_menu_close_background_hover_background_color\":\"globals\\/colors?id=accent\"},\"st_submenu_panel_box_shadow_box_shadow_box_shadow_type\":\"yes\",\"st_submenu_panel_box_shadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_submenu_item_indicator_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_submenu_item_indicator_border_border_border\":\"solid\",\"st_submenu_item_indicator_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_submenu_panel_background_background_color\":\"#FFFFFF\",\"st_hamburger_menu_icon_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_icon_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_close_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_hamburger_menu_close_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_hamburger_menu_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_menu_item_text_normal_color_responsive_tablet\":\"#6EC1E4\",\"st_menu_item_text_hover_color_responsive_tablet\":\"#54595F\",\"st_menu_item_text_active_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_close_background_background_color\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"#54595F\",\"st_hamburger_menu_position_responsive_mobile\":\"left\",\"st_hamburger_menu_close_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_hamburger_menu_close_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"st_mobile_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"st_menu_item_text_hover_color_responsive\":\"#54595F\",\"st_menu_item_text_active_color_responsive\":\"#54595F\",\"st_mobile_menu_object_fit_responsive_tablet\":\"cover\",\"st_mobile_menu_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_hamburger_menu_close_background_hover_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_nav_menu\"}],\"isInner\":\"\"},{\"id\":\"5e047152\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":19.650999999999999801048033987171947956085205078125,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":30,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":80},\"elements\":[{\"id\":\"63d6d3ed\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"jki jki-facebook-f\",\"library\":\"jkiticon\"},\"_id\":\"7c320e0\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"3c2d02e\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"03c5d88\"},{\"_id\":\"6498fcd\",\"social_icon\":{\"value\":\"jki jki-instagram-1-light\",\"library\":\"jkiticon\"}}],\"shape\":\"circle\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=secondary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"icon_secondary_color\":\"globals\\/colors?id=accent\"},\"align_tablet\":\"right\",\"hover_animation\":\"shrink\",\"hover_primary_color\":\"#006943\",\"hover_secondary_color\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(252,41,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(253,49,'_edit_last','1'),(254,49,'_edit_lock','1721838853:1'),(255,49,'_wp_page_template','default'),(256,49,'ehf_target_include_locations','a:2:{s:4:\"rule\";a:1:{i:0;s:12:\"basic-global\";}s:8:\"specific\";a:0:{}}'),(257,49,'ehf_target_exclude_locations','a:0:{}'),(258,49,'ehf_target_user_roles','a:1:{i:0;s:0:\"\";}'),(259,49,'ehf_template_type','type_footer'),(260,49,'_elementor_edit_mode','builder'),(261,49,'_elementor_template_type','wp-post'),(262,49,'_elementor_version','3.23.2'),(265,51,'_wp_attached_file','2024/07/green-lawn-on-ground-PT9KCVE.jpg'),(266,51,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:40:\"2024/07/green-lawn-on-ground-PT9KCVE.jpg\";s:8:\"filesize\";i:316612;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:40:\"green-lawn-on-ground-PT9KCVE-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19204;}s:5:\"large\";a:5:{s:4:\"file\";s:41:\"green-lawn-on-ground-PT9KCVE-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:153204;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:40:\"green-lawn-on-ground-PT9KCVE-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8072;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:40:\"green-lawn-on-ground-PT9KCVE-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:95858;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:42:\"green-lawn-on-ground-PT9KCVE-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:285163;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(267,51,'_elementor_source_image_hash','50ddcc73f685adc46728fbc85b6fb31cbdc21644'),(268,52,'_wp_attached_file','2024/07/logo-footer.png'),(269,52,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1486;s:6:\"height\";i:517;s:4:\"file\";s:23:\"2024/07/logo-footer.png\";s:8:\"filesize\";i:52192;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"logo-footer-300x104.png\";s:5:\"width\";i:300;s:6:\"height\";i:104;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12705;}s:5:\"large\";a:5:{s:4:\"file\";s:24:\"logo-footer-1024x356.png\";s:5:\"width\";i:1024;s:6:\"height\";i:356;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:59051;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"logo-footer-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4804;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:23:\"logo-footer-768x267.png\";s:5:\"width\";i:768;s:6:\"height\";i:267;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:40334;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(270,52,'_elementor_source_image_hash','5f53b14d9f37c3f16edb8bd75b580dd4da0f857c'),(271,53,'_elementor_edit_mode','builder'),(272,53,'_elementor_template_type','section'),(273,53,'_elementor_version','3.23.2'),(274,53,'_elementor_data','[{\"id\":\"71a7ab9f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#00160E\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_overlay_image\":{\"id\":\"51\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/green-lawn-on-ground-PT9KCVE.jpg\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"16b75b6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2c41e0dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"gap\":\"no\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"54f7c7f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":\"33.596\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"25459eef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"52\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/logo-footer.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"image_size\":\"full\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2baa6c41\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod \",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=e8dc402\",\"typography_typography\":\"globals\\/typography?id=text\"},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"355ecb10\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Jl. Raya Kuta No.70, Kuta \",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"8cfc1eb\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"support@domain.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"01dad71\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"(+021) 176 993\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"e0e44de\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"text_color\":\"globals\\/colors?id=06a34e7\",\"icon_typography_typography\":\"globals\\/typography?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":\"1\"},{\"id\":\"5a4741a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":\"17.193\",\"_inline_size_mobile\":\"100\",\"_inline_size_tablet\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"205454a2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Other Pages\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=8966ad4\"},\"header_size\":\"h4\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"641c4468\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Home\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8e5ccb4\"},{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"_id\":\"b2b06d7\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2a5846b\"},{\"text\":\"Project\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"23e9052\"},{\"text\":\"Contact\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcbb08b\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=accent\",\"text_color\":\"\",\"icon_color\":\"globals\\/colors?id=accent\",\"icon_typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":\"1\"},{\"id\":\"1fa2d5dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":\"14.211\",\"_inline_size_mobile\":\"100\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3f79e205\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick Links\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=8966ad4\"},\"header_size\":\"h4\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78f9b900\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8e5ccb4\"},{\"text\":\"Term Of Service\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"_id\":\"b2b06d7\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Disclaimer\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcbb08b\"},{\"text\":\"Credits\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2a5846b\"},{\"text\":\"FAQ\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"76de45a\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=accent\",\"text_color\":\"\",\"icon_color\":\"globals\\/colors?id=accent\",\"icon_typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":\"1\"},{\"id\":\"570d85ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":\"35\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"bbe322b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=8966ad4\"},\"header_size\":\"h4\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d2057e5\",\"elType\":\"widget\",\"settings\":{\"sg_form_email_placeholder\":\"Your Email Address\",\"sg_form_email_icon_enable\":\"\",\"sg_form_button_text\":\"Send\",\"sg_form_button_icon_enable\":\"\",\"sg_form_success_message\":\"Successfully listed this email\",\"st_input_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_input_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"20\",\"bottom\":\"16\",\"left\":\"20\",\"isLinked\":false},\"st_input_border_border_border\":\"solid\",\"st_input_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_input_margin_right_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_input_placeholder_color_responsive\":\"#B5B8C4\",\"st_button_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"10\",\"bottom\":\"21\",\"left\":\"10\",\"isLinked\":false},\"st_button_width_responsive\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_input_placeholder_color_responsive\":\"\",\"st_input_placeholder_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_input_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_input_color_responsive\":\"globals\\/colors?id=primary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"st_input_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_input_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_input_width_responsive_tablet\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"st_button_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_button_width_responsive_tablet\":{\"unit\":\"px\",\"size\":105,\"sizes\":[]},\"st_button_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"30\",\"bottom\":\"19\",\"left\":\"30\",\"isLinked\":false},\"st_button_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_width_responsive_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_input_width_responsive\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"st_input_width_responsive_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"st_button_hover_background_background_background\":\"classic\",\"st_input_background_background_background\":\"classic\",\"st_input_background_background_color\":\"#FFFFFF\",\"st_button_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_input_color_responsive\":\"#0B1B69\",\"st_button_normal_color_responsive\":\"#0B1B69\",\"st_button_normal_background_background_color\":\"#FFD027\",\"sg_form_name_first_icon\":{\"value\":\"fas fa-user\",\"library\":\"fa-solid\"},\"sg_form_name_last_icon\":{\"value\":\"fas fa-user\",\"library\":\"fa-solid\"},\"sg_form_phone_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"sg_form_email_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"sg_form_button_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"st_input_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_input_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_input_background_background_slideshow_gallery\":[],\"st_button_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_normal_background_background_slideshow_gallery\":[],\"st_button_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_hover_background_background_slideshow_gallery\":[],\"st_icon_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_background_background_slideshow_gallery\":[],\"st_message_success_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_message_success_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_message_success_background_background_slideshow_gallery\":[],\"st_message_error_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_message_error_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_message_error_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_mailchimp\"},{\"id\":\"4abacd76\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Get the latest news & updates\\n\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"text_color\":\"globals\\/colors?id=e8dc402\",\"typography_typography\":\"globals\\/typography?id=text\"},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"14c07dd2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"jki jki-facebook-f\",\"library\":\"jkiticon\"},\"_id\":\"0fb8cc7\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"4be5bc7\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"147010a\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"df2ad14\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"}],\"shape\":\"circle\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"hover_animation\":\"shrink\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=secondary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_secondary_color\":\"globals\\/colors?id=accent\",\"hover_primary_color\":\"globals\\/colors?id=accent\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"62f540e8\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text\":\"Divider\",\"color\":\"#A0AABA2B\",\"gap\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4d78a1af\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"#C2C2C2\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"gap\":\"no\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"436d843d\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"ddf15b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Landscape & Gardening Template Kit by Baliniz\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f882794\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"},{\"id\":\"66b3218f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"21a84702\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Copyright \\u00a9 2021 All rights reserved.\",\"align\":\"right\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f882794\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(275,54,'_elementor_edit_mode','builder'),(276,54,'_elementor_template_type','section'),(277,54,'_elementor_version','3.23.2'),(278,54,'_elementor_data','[{\"id\":\"71a7ab9f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#00160E\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_overlay_image\":{\"id\":\"51\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/green-lawn-on-ground-PT9KCVE.jpg\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"16b75b6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2c41e0dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"gap\":\"no\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"54f7c7f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":\"33.596\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"25459eef\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"52\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/logo-footer.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"image_size\":\"full\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2baa6c41\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod \",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=e8dc402\",\"typography_typography\":\"globals\\/typography?id=text\"},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"355ecb10\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Jl. Raya Kuta No.70, Kuta \",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"8cfc1eb\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"support@domain.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"01dad71\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"(+021) 176 993\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"e0e44de\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"text_color\":\"globals\\/colors?id=06a34e7\",\"icon_typography_typography\":\"globals\\/typography?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":\"1\"},{\"id\":\"5a4741a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":\"17.193\",\"_inline_size_mobile\":\"100\",\"_inline_size_tablet\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"205454a2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Other Pages\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=8966ad4\"},\"header_size\":\"h4\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"641c4468\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Home\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8e5ccb4\"},{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"_id\":\"b2b06d7\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2a5846b\"},{\"text\":\"Project\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"23e9052\"},{\"text\":\"Contact\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcbb08b\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=accent\",\"text_color\":\"\",\"icon_color\":\"globals\\/colors?id=accent\",\"icon_typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":\"1\"},{\"id\":\"1fa2d5dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":\"14.211\",\"_inline_size_mobile\":\"100\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3f79e205\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick Links\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=8966ad4\"},\"header_size\":\"h4\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78f9b900\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8e5ccb4\"},{\"text\":\"Term Of Service\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"_id\":\"b2b06d7\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Disclaimer\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcbb08b\"},{\"text\":\"Credits\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2a5846b\"},{\"text\":\"FAQ\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"76de45a\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=accent\",\"text_color\":\"\",\"icon_color\":\"globals\\/colors?id=accent\",\"icon_typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":\"1\"},{\"id\":\"570d85ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":\"35\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"bbe322b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=8966ad4\"},\"header_size\":\"h4\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d2057e5\",\"elType\":\"widget\",\"settings\":{\"sg_form_email_placeholder\":\"Your Email Address\",\"sg_form_email_icon_enable\":\"\",\"sg_form_button_text\":\"Send\",\"sg_form_button_icon_enable\":\"\",\"sg_form_success_message\":\"Successfully listed this email\",\"st_input_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_input_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"20\",\"bottom\":\"16\",\"left\":\"20\",\"isLinked\":false},\"st_input_border_border_border\":\"solid\",\"st_input_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_input_margin_right_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_input_placeholder_color_responsive\":\"#B5B8C4\",\"st_button_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"10\",\"bottom\":\"21\",\"left\":\"10\",\"isLinked\":false},\"st_button_width_responsive\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_input_placeholder_color_responsive\":\"\",\"st_input_placeholder_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_input_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_input_color_responsive\":\"globals\\/colors?id=primary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"st_input_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_input_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_input_width_responsive_tablet\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"st_button_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_button_width_responsive_tablet\":{\"unit\":\"px\",\"size\":105,\"sizes\":[]},\"st_button_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"30\",\"bottom\":\"19\",\"left\":\"30\",\"isLinked\":false},\"st_button_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_width_responsive_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_input_width_responsive\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"st_input_width_responsive_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"st_button_hover_background_background_background\":\"classic\",\"st_input_background_background_background\":\"classic\",\"st_input_background_background_color\":\"#FFFFFF\",\"st_button_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_input_color_responsive\":\"#0B1B69\",\"st_button_normal_color_responsive\":\"#0B1B69\",\"st_button_normal_background_background_color\":\"#FFD027\",\"sg_form_name_first_icon\":{\"value\":\"fas fa-user\",\"library\":\"fa-solid\"},\"sg_form_name_last_icon\":{\"value\":\"fas fa-user\",\"library\":\"fa-solid\"},\"sg_form_phone_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"sg_form_email_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"sg_form_button_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"st_input_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_input_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_input_background_background_slideshow_gallery\":[],\"st_button_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_normal_background_background_slideshow_gallery\":[],\"st_button_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_hover_background_background_slideshow_gallery\":[],\"st_icon_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_background_background_slideshow_gallery\":[],\"st_message_success_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_message_success_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_message_success_background_background_slideshow_gallery\":[],\"st_message_error_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_message_error_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_message_error_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_mailchimp\"},{\"id\":\"4abacd76\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Get the latest news & updates\\n\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"text_color\":\"globals\\/colors?id=e8dc402\",\"typography_typography\":\"globals\\/typography?id=text\"},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"14c07dd2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"jki jki-facebook-f\",\"library\":\"jkiticon\"},\"_id\":\"0fb8cc7\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"4be5bc7\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"147010a\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"df2ad14\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"}],\"shape\":\"circle\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"hover_animation\":\"shrink\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=secondary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_secondary_color\":\"globals\\/colors?id=accent\",\"hover_primary_color\":\"globals\\/colors?id=accent\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"62f540e8\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text\":\"Divider\",\"color\":\"#A0AABA2B\",\"gap\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4d78a1af\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"#C2C2C2\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"gap\":\"no\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"436d843d\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"ddf15b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Landscape & Gardening Template Kit by Baliniz\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f882794\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"},{\"id\":\"66b3218f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"21a84702\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Copyright \\u00a9 2021 All rights reserved.\",\"align\":\"right\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f882794\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(279,53,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(280,53,'_wp_page_template','elementor_canvas'),(281,53,'envato_tk_source_kit','26'),(282,53,'envato_tk_source_index','14'),(283,55,'_wp_page_template','default'),(284,55,'_elementor_edit_mode','builder'),(285,55,'_elementor_template_type','wp-post'),(286,55,'_elementor_version','3.23.2'),(288,56,'_wp_page_template','default'),(289,56,'_elementor_edit_mode','builder'),(290,56,'_elementor_template_type','wp-post'),(291,56,'_elementor_version','3.23.2'),(293,49,'_elementor_data','[{\"id\":\"25324c9a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#00160E\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_overlay_image\":{\"id\":\"51\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/green-lawn-on-ground-PT9KCVE.jpg\"}},\"elements\":[{\"id\":\"2ed3ced5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"cf27f42\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"gap\":\"no\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"36e45d2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":\"33.596\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"498deddc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":115,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-02.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"image_size\":\"full\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"529be226\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod \",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=e8dc402\",\"typography_typography\":\"globals\\/typography?id=text\"},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6dfa1147\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"123 Wall St Miami, FL 12345\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"8cfc1eb\"},{\"text\":\"email@email.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"01dad71\",\"link\":{\"url\":\"mailto:email@email.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+1 505 555 5555\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"e0e44de\",\"link\":{\"url\":\"tel:+1 505 555 5555\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"text_color\":\"globals\\/colors?id=06a34e7\",\"icon_typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":\"1\"},{\"id\":\"4dc3ac3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":\"17.193\",\"_inline_size_mobile\":\"100\",\"_inline_size_tablet\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"top\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7772d55b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Other Pages\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=8966ad4\"},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41eea4c7\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Home\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8e5ccb4\"},{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"_id\":\"b2b06d7\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2a5846b\"},{\"text\":\"Contact\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcbb08b\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=accent\",\"text_color\":\"\",\"icon_color\":\"globals\\/colors?id=accent\",\"icon_typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":\"1\"},{\"id\":\"35cfcdfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":\"14.211\",\"_inline_size_mobile\":\"100\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"content_position\":\"top\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"13522926\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick Links\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=8966ad4\"},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bc61709\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8e5ccb4\"},{\"text\":\"Term Of Service\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"_id\":\"b2b06d7\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"FAQ\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"76de45a\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=accent\",\"text_color\":\"\",\"icon_color\":\"globals\\/colors?id=accent\",\"icon_typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":\"1\"},{\"id\":\"3e19ab1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":\"35\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2abe676b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=8966ad4\"},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f25bdf9\",\"elType\":\"widget\",\"settings\":{\"sg_form_email_placeholder\":\"Your Email Address\",\"sg_form_email_icon_enable\":\"\",\"sg_form_button_text\":\"Send\",\"sg_form_button_icon_enable\":\"\",\"sg_form_success_message\":\"Successfully listed this email\",\"st_input_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_input_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"20\",\"bottom\":\"16\",\"left\":\"20\",\"isLinked\":false},\"st_input_border_border_border\":\"solid\",\"st_input_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_input_margin_right_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_input_placeholder_color_responsive\":\"#B5B8C4\",\"st_button_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"10\",\"bottom\":\"21\",\"left\":\"10\",\"isLinked\":false},\"st_button_width_responsive\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_input_placeholder_color_responsive\":\"\",\"st_input_placeholder_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_input_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_input_color_responsive\":\"globals\\/colors?id=primary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"st_input_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_input_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_input_width_responsive_tablet\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"st_button_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_button_width_responsive_tablet\":{\"unit\":\"px\",\"size\":105,\"sizes\":[]},\"st_button_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"30\",\"bottom\":\"19\",\"left\":\"30\",\"isLinked\":false},\"st_button_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_width_responsive_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_input_width_responsive\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"st_input_width_responsive_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"st_button_hover_background_background_background\":\"classic\",\"st_input_background_background_background\":\"classic\",\"st_input_background_background_color\":\"#FFFFFF\",\"st_button_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_input_color_responsive\":\"#0B1B69\",\"st_button_normal_color_responsive\":\"#0B1B69\",\"st_button_normal_background_background_color\":\"#FFD027\"},\"elements\":[],\"widgetType\":\"jkit_mailchimp\"},{\"id\":\"2f02530a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Get the latest news & updates\\n\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"text_color\":\"globals\\/colors?id=e8dc402\",\"typography_typography\":\"globals\\/typography?id=text\"},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2579224c\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"jki jki-facebook-f\",\"library\":\"jkiticon\"},\"_id\":\"0fb8cc7\"},{\"social_icon\":{\"value\":\"fab fa-x-twitter\",\"library\":\"fa-brands\"},\"_id\":\"4be5bc7\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"147010a\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"df2ad14\"}],\"shape\":\"circle\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"hover_animation\":\"shrink\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=secondary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_secondary_color\":\"globals\\/colors?id=accent\",\"hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"4e4c8b50\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text\":\"Divider\",\"color\":\"#A0AABA2B\",\"gap\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5f48f734\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"#C2C2C2\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"gap\":\"no\"},\"elements\":[{\"id\":\"fe8e002\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"63e6eb20\",\"elType\":\"widget\",\"settings\":{\"editor\":\"

\\u00a9 2024 Prestige Luxury Cleanings LLC. All rights reserved.<\\/p>\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f882794\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"},{\"id\":\"427e430a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"42937d5b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"

Design and development by DesignsFunnel<\\/a>.<\\/p>\",\"align\":\"right\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f882794\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(294,57,'_wp_page_template','default'),(295,57,'_elementor_edit_mode','builder'),(296,57,'_elementor_template_type','wp-post'),(297,57,'_elementor_version','3.23.2'),(299,57,'_elementor_data','[{\"id\":\"25324c9a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#00160E\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_overlay_image\":{\"id\":\"51\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/green-lawn-on-ground-PT9KCVE.jpg\"}},\"elements\":[{\"id\":\"2ed3ced5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"cf27f42\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"gap\":\"no\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"36e45d2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":\"33.596\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"498deddc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"52\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/logo-footer.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"529be226\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod \",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=e8dc402\",\"typography_typography\":\"globals\\/typography?id=text\"},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6dfa1147\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Jl. Raya Kuta No.70, Kuta \",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"8cfc1eb\"},{\"text\":\"support@domain.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"01dad71\"},{\"text\":\"(+021) 176 993\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"e0e44de\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"text_color\":\"globals\\/colors?id=06a34e7\",\"icon_typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":\"1\"},{\"id\":\"4dc3ac3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":\"17.193\",\"_inline_size_mobile\":\"100\",\"_inline_size_tablet\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7772d55b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Other Pages\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=8966ad4\"},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41eea4c7\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Home\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8e5ccb4\"},{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"_id\":\"b2b06d7\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2a5846b\"},{\"text\":\"Project\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"23e9052\"},{\"text\":\"Contact\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcbb08b\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=accent\",\"text_color\":\"\",\"icon_color\":\"globals\\/colors?id=accent\",\"icon_typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":\"1\"},{\"id\":\"35cfcdfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":\"14.211\",\"_inline_size_mobile\":\"100\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"13522926\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick Links\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=8966ad4\"},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bc61709\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8e5ccb4\"},{\"text\":\"Term Of Service\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"_id\":\"b2b06d7\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Disclaimer\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcbb08b\"},{\"text\":\"Credits\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2a5846b\"},{\"text\":\"FAQ\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"76de45a\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=accent\",\"text_color\":\"\",\"icon_color\":\"globals\\/colors?id=accent\",\"icon_typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":\"1\"},{\"id\":\"3e19ab1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":\"35\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"2abe676b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=8966ad4\"},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f25bdf9\",\"elType\":\"widget\",\"settings\":{\"sg_form_email_placeholder\":\"Your Email Address\",\"sg_form_email_icon_enable\":\"\",\"sg_form_button_text\":\"Send\",\"sg_form_button_icon_enable\":\"\",\"sg_form_success_message\":\"Successfully listed this email\",\"st_input_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_input_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"20\",\"bottom\":\"16\",\"left\":\"20\",\"isLinked\":false},\"st_input_border_border_border\":\"solid\",\"st_input_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_input_margin_right_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_input_placeholder_color_responsive\":\"#B5B8C4\",\"st_button_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"10\",\"bottom\":\"21\",\"left\":\"10\",\"isLinked\":false},\"st_button_width_responsive\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_input_placeholder_color_responsive\":\"\",\"st_input_placeholder_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_input_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_input_color_responsive\":\"globals\\/colors?id=primary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"st_input_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_input_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_input_width_responsive_tablet\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"st_button_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_button_width_responsive_tablet\":{\"unit\":\"px\",\"size\":105,\"sizes\":[]},\"st_button_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"30\",\"bottom\":\"19\",\"left\":\"30\",\"isLinked\":false},\"st_button_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_width_responsive_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_input_width_responsive\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"st_input_width_responsive_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"st_button_hover_background_background_background\":\"classic\",\"st_input_background_background_background\":\"classic\",\"st_input_background_background_color\":\"#FFFFFF\",\"st_button_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_input_color_responsive\":\"#0B1B69\",\"st_button_normal_color_responsive\":\"#0B1B69\",\"st_button_normal_background_background_color\":\"#FFD027\"},\"elements\":[],\"widgetType\":\"jkit_mailchimp\"},{\"id\":\"2f02530a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Get the latest news & updates\\n\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"text_color\":\"globals\\/colors?id=e8dc402\",\"typography_typography\":\"globals\\/typography?id=text\"},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2579224c\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"jki jki-facebook-f\",\"library\":\"jkiticon\"},\"_id\":\"0fb8cc7\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"4be5bc7\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"147010a\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"df2ad14\"}],\"shape\":\"circle\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"hover_animation\":\"shrink\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=secondary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_secondary_color\":\"globals\\/colors?id=accent\",\"hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"4e4c8b50\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text\":\"Divider\",\"color\":\"#A0AABA2B\",\"gap\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5f48f734\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"#C2C2C2\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"gap\":\"no\"},\"elements\":[{\"id\":\"fe8e002\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"63e6eb20\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Landscape & Gardening Template Kit by Baliniz\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f882794\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"},{\"id\":\"427e430a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"42937d5b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Copyright \\u00a9 2021 All rights reserved.\",\"align\":\"right\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f882794\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(300,49,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(302,24,'_elementor_edit_mode','builder'),(303,24,'_elementor_template_type','wp-page'),(304,24,'_elementor_version','3.23.2'),(305,58,'_wp_attached_file','2024/07/gardener-with-hedge-trimmer-e1635892441479.jpg'),(306,58,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1316;s:4:\"file\";s:54:\"2024/07/gardener-with-hedge-trimmer-e1635892441479.jpg\";s:8:\"filesize\";i:291119;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:54:\"gardener-with-hedge-trimmer-e1635892441479-300x206.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16121;}s:5:\"large\";a:5:{s:4:\"file\";s:55:\"gardener-with-hedge-trimmer-e1635892441479-1024x702.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:702;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:107737;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:54:\"gardener-with-hedge-trimmer-e1635892441479-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7021;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:54:\"gardener-with-hedge-trimmer-e1635892441479-768x526.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:526;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:69200;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:56:\"gardener-with-hedge-trimmer-e1635892441479-1536x1053.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1053;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:198771;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(307,58,'_elementor_source_image_hash','793f3a5b91a19e480253f02a32226771961c57f2'),(308,59,'_wp_attached_file','2024/07/professional-gardener-at-work-XU82AHW.jpg'),(309,59,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:49:\"2024/07/professional-gardener-at-work-XU82AHW.jpg\";s:8:\"filesize\";i:318946;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:49:\"professional-gardener-at-work-XU82AHW-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25314;}s:5:\"large\";a:5:{s:4:\"file\";s:50:\"professional-gardener-at-work-XU82AHW-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:271907;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:49:\"professional-gardener-at-work-XU82AHW-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9828;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:49:\"professional-gardener-at-work-XU82AHW-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:163213;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:51:\"professional-gardener-at-work-XU82AHW-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:519381;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:20:\"All Rights Reserved.\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(310,59,'_elementor_source_image_hash','543f704582d5a60254a1d077d029e91bafb0bc7e'),(311,60,'_wp_attached_file','2024/07/gardener-buying-new-plantsP4VGX5F.jpg'),(312,60,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1289;s:4:\"file\";s:45:\"2024/07/gardener-buying-new-plantsP4VGX5F.jpg\";s:8:\"filesize\";i:293904;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:45:\"gardener-buying-new-plantsP4VGX5F-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22345;}s:5:\"large\";a:5:{s:4:\"file\";s:46:\"gardener-buying-new-plantsP4VGX5F-1024x687.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:687;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:164573;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:45:\"gardener-buying-new-plantsP4VGX5F-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9558;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:45:\"gardener-buying-new-plantsP4VGX5F-768x516.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:104258;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:47:\"gardener-buying-new-plantsP4VGX5F-1536x1031.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1031;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:309234;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:20:\"All Rights Reserved.\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(313,60,'_elementor_source_image_hash','07e7859ed6caa8804ca3ab568cf30525919fabb6'),(314,61,'_wp_attached_file','2024/07/garden-decorative-trees-trimming-by-professional-gardener-e1635864777836.jpg'),(315,61,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:84:\"2024/07/garden-decorative-trees-trimming-by-professional-gardener-e1635864777836.jpg\";s:8:\"filesize\";i:305477;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:84:\"garden-decorative-trees-trimming-by-professional-gardener-e1635864777836-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15518;}s:5:\"large\";a:5:{s:4:\"file\";s:85:\"garden-decorative-trees-trimming-by-professional-gardener-e1635864777836-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:109583;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:84:\"garden-decorative-trees-trimming-by-professional-gardener-e1635864777836-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6928;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:84:\"garden-decorative-trees-trimming-by-professional-gardener-e1635864777836-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:68999;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:86:\"garden-decorative-trees-trimming-by-professional-gardener-e1635864777836-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:204192;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(316,61,'_elementor_source_image_hash','6132868e7a6387b30c1e16ab0e35eaa02ebb4bc3'),(317,62,'_wp_attached_file','2024/07/gardener-and-his-flowers.jpg'),(318,62,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2000;s:6:\"height\";i:1335;s:4:\"file\";s:36:\"2024/07/gardener-and-his-flowers.jpg\";s:8:\"filesize\";i:490387;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:36:\"gardener-and-his-flowers-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21966;}s:5:\"large\";a:5:{s:4:\"file\";s:37:\"gardener-and-his-flowers-1024x684.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:138827;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:36:\"gardener-and-his-flowers-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9586;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:36:\"gardener-and-his-flowers-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:91361;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:38:\"gardener-and-his-flowers-1536x1025.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1025;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:252800;}s:24:\"elementor_custom_820x980\";a:4:{s:4:\"file\";s:88:\"elementor/thumbs/gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk.jpg\";s:5:\"width\";i:820;s:6:\"height\";i:980;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(319,62,'_elementor_source_image_hash','4f15bea24331e4a58d95afc8738af974dd819da0'),(320,63,'_wp_attached_file','2024/07/gardener-topiary-job.jpg'),(321,63,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2000;s:6:\"height\";i:1321;s:4:\"file\";s:32:\"2024/07/gardener-topiary-job.jpg\";s:8:\"filesize\";i:785047;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"gardener-topiary-job-300x198.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26211;}s:5:\"large\";a:5:{s:4:\"file\";s:33:\"gardener-topiary-job-1024x676.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:676;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:215444;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"gardener-topiary-job-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10966;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:32:\"gardener-topiary-job-768x507.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:507;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:134634;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:34:\"gardener-topiary-job-1536x1015.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1015;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:405094;}s:24:\"elementor_custom_860x980\";a:4:{s:4:\"file\";s:84:\"elementor/thumbs/gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w.jpg\";s:5:\"width\";i:860;s:6:\"height\";i:980;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(322,63,'_elementor_source_image_hash','5a09e0cc932c5d30831dd8ad5371f31e29a505bc'),(323,64,'_wp_attached_file','2024/07/gardener-in-newly-build-backyard-garden.jpg'),(324,64,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2000;s:6:\"height\";i:1332;s:4:\"file\";s:51:\"2024/07/gardener-in-newly-build-backyard-garden.jpg\";s:8:\"filesize\";i:1198168;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:51:\"gardener-in-newly-build-backyard-garden-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24598;}s:5:\"large\";a:5:{s:4:\"file\";s:52:\"gardener-in-newly-build-backyard-garden-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:277697;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:51:\"gardener-in-newly-build-backyard-garden-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10086;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:51:\"gardener-in-newly-build-backyard-garden-768x511.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:157557;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:53:\"gardener-in-newly-build-backyard-garden-1536x1023.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1023;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:584514;}s:25:\"elementor_custom_820x1024\";a:4:{s:4:\"file\";s:103:\"elementor/thumbs/gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68.jpg\";s:5:\"width\";i:820;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(325,64,'_elementor_source_image_hash','a9b25988104e002731da05a9ba81c8183d338f07'),(326,65,'_wp_attached_file','2024/07/garden-maintenance-performed-by-pro-gardener.jpg'),(327,65,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2000;s:6:\"height\";i:1332;s:4:\"file\";s:56:\"2024/07/garden-maintenance-performed-by-pro-gardener.jpg\";s:8:\"filesize\";i:454958;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:56:\"garden-maintenance-performed-by-pro-gardener-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16980;}s:5:\"large\";a:5:{s:4:\"file\";s:57:\"garden-maintenance-performed-by-pro-gardener-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:121262;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:56:\"garden-maintenance-performed-by-pro-gardener-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7759;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:56:\"garden-maintenance-performed-by-pro-gardener-768x511.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:76056;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:58:\"garden-maintenance-performed-by-pro-gardener-1536x1023.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1023;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:227691;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(328,65,'_elementor_source_image_hash','aee7c1b1d6f445c10c360f339c7c5273c624a162'),(329,66,'_wp_attached_file','2024/07/men-watering-garden-plants.jpg'),(330,66,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2000;s:6:\"height\";i:1333;s:4:\"file\";s:38:\"2024/07/men-watering-garden-plants.jpg\";s:8:\"filesize\";i:924114;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:38:\"men-watering-garden-plants-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24980;}s:5:\"large\";a:5:{s:4:\"file\";s:39:\"men-watering-garden-plants-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:231427;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:38:\"men-watering-garden-plants-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10045;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:38:\"men-watering-garden-plants-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:138323;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:40:\"men-watering-garden-plants-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:457714;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(331,66,'_elementor_source_image_hash','d6bfea50a41cdb66970ed25673b53220bd34d5b1'),(332,67,'_wp_attached_file','2024/07/gardener-finishing-garden.jpg'),(333,67,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2000;s:6:\"height\";i:1333;s:4:\"file\";s:37:\"2024/07/gardener-finishing-garden.jpg\";s:8:\"filesize\";i:539524;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:37:\"gardener-finishing-garden-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20875;}s:5:\"large\";a:5:{s:4:\"file\";s:38:\"gardener-finishing-garden-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:148827;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:37:\"gardener-finishing-garden-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:37:\"gardener-finishing-garden-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:93872;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:39:\"gardener-finishing-garden-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:278019;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(334,67,'_elementor_source_image_hash','b0a65acdc740bafbdd7c4dffd385e6f1becda5f7'),(335,68,'_wp_attached_file','2024/07/gardener-with-hedge-trimmer.jpg'),(336,68,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2000;s:6:\"height\";i:1371;s:4:\"file\";s:39:\"2024/07/gardener-with-hedge-trimmer.jpg\";s:8:\"filesize\";i:402731;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:39:\"gardener-with-hedge-trimmer-300x206.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16186;}s:5:\"large\";a:5:{s:4:\"file\";s:40:\"gardener-with-hedge-trimmer-1024x702.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:702;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:110328;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:39:\"gardener-with-hedge-trimmer-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7046;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:39:\"gardener-with-hedge-trimmer-768x526.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:526;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:70371;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:41:\"gardener-with-hedge-trimmer-1536x1053.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1053;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:206884;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(337,68,'_elementor_source_image_hash','05bdb119d9aef8a543f15b9d34866ea26bb0cb76'),(338,69,'_wp_attached_file','2024/07/a-gardener-watering-plants-in-a-flowerbed-2RT8DWL.jpg'),(339,69,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:61:\"2024/07/a-gardener-watering-plants-in-a-flowerbed-2RT8DWL.jpg\";s:8:\"filesize\";i:284180;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:61:\"a-gardener-watering-plants-in-a-flowerbed-2RT8DWL-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22856;}s:5:\"large\";a:5:{s:4:\"file\";s:62:\"a-gardener-watering-plants-in-a-flowerbed-2RT8DWL-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:146811;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:61:\"a-gardener-watering-plants-in-a-flowerbed-2RT8DWL-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10529;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:61:\"a-gardener-watering-plants-in-a-flowerbed-2RT8DWL-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:95328;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:63:\"a-gardener-watering-plants-in-a-flowerbed-2RT8DWL-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:265447;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(340,69,'_elementor_source_image_hash','6dedaa11fe42112f1ab367577139a47ec5cfd86c'),(341,70,'_wp_attached_file','2024/07/happy-gardeners-with-plants-and-lawn-mower.jpg'),(342,70,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1333;s:6:\"height\";i:2000;s:4:\"file\";s:54:\"2024/07/happy-gardeners-with-plants-and-lawn-mower.jpg\";s:8:\"filesize\";i:588325;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:54:\"happy-gardeners-with-plants-and-lawn-mower-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20112;}s:5:\"large\";a:5:{s:4:\"file\";s:55:\"happy-gardeners-with-plants-and-lawn-mower-682x1024.jpg\";s:5:\"width\";i:682;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:152347;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:54:\"happy-gardeners-with-plants-and-lawn-mower-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9126;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:55:\"happy-gardeners-with-plants-and-lawn-mower-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:183508;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:56:\"happy-gardeners-with-plants-and-lawn-mower-1024x1536.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:290402;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(343,70,'_elementor_source_image_hash','23389b0fe45b68b56748bcbec37d01c2bf3a16f9'),(344,71,'_wp_attached_file','2024/07/gardening-background-with-garden-tolls-A9BGNJU.jpg'),(345,71,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1324;s:4:\"file\";s:58:\"2024/07/gardening-background-with-garden-tolls-A9BGNJU.jpg\";s:8:\"filesize\";i:326515;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:58:\"gardening-background-with-garden-tolls-A9BGNJU-300x207.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:207;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21375;}s:5:\"large\";a:5:{s:4:\"file\";s:59:\"gardening-background-with-garden-tolls-A9BGNJU-1024x706.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:706;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:222901;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:58:\"gardening-background-with-garden-tolls-A9BGNJU-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8160;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:58:\"gardening-background-with-garden-tolls-A9BGNJU-768x530.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:530;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:131182;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:60:\"gardening-background-with-garden-tolls-A9BGNJU-1536x1059.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1059;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:449836;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:22:\"Cseh Ioan - Grafvision\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(346,71,'_elementor_source_image_hash','9a869a92f1df92f720b3181a0fc341aa515c696f'),(347,72,'_wp_attached_file','2024/07/gardener-pruning-and-shaping-bushes-.jpg'),(348,72,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2000;s:6:\"height\";i:1294;s:4:\"file\";s:48:\"2024/07/gardener-pruning-and-shaping-bushes-.jpg\";s:8:\"filesize\";i:579189;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:48:\"gardener-pruning-and-shaping-bushes--300x194.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:194;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20841;}s:5:\"large\";a:5:{s:4:\"file\";s:49:\"gardener-pruning-and-shaping-bushes--1024x663.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:663;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:157715;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"gardener-pruning-and-shaping-bushes--150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8818;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:48:\"gardener-pruning-and-shaping-bushes--768x497.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:497;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:99559;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:49:\"gardener-pruning-and-shaping-bushes--1536x994.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:994;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:298566;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(349,72,'_elementor_source_image_hash','8021ca6221286c116beb3bb7aaca4bf26494a554'),(350,73,'_wp_attached_file','2024/07/backyard-garden.jpg'),(351,73,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2000;s:6:\"height\";i:1243;s:4:\"file\";s:27:\"2024/07/backyard-garden.jpg\";s:8:\"filesize\";i:856287;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"backyard-garden-300x186.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:186;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23409;}s:5:\"large\";a:5:{s:4:\"file\";s:28:\"backyard-garden-1024x636.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:636;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:218402;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"backyard-garden-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10104;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"backyard-garden-768x477.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:477;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:131285;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:28:\"backyard-garden-1536x955.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:955;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:433534;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(352,73,'_elementor_source_image_hash','853880ed7e64e861f95c0bcbaa702664ad4bac38'),(353,74,'_wp_attached_file','2024/07/lawn-moving-aerial-photo-Z8KDGJ9.jpg'),(354,74,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1282;s:4:\"file\";s:44:\"2024/07/lawn-moving-aerial-photo-Z8KDGJ9.jpg\";s:8:\"filesize\";i:326327;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:44:\"lawn-moving-aerial-photo-Z8KDGJ9-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19318;}s:5:\"large\";a:5:{s:4:\"file\";s:45:\"lawn-moving-aerial-photo-Z8KDGJ9-1024x684.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:239748;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:44:\"lawn-moving-aerial-photo-Z8KDGJ9-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8116;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:44:\"lawn-moving-aerial-photo-Z8KDGJ9-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:138149;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:46:\"lawn-moving-aerial-photo-Z8KDGJ9-1536x1026.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1026;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:493988;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:20:\"All Rights Reserved.\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(355,74,'_elementor_source_image_hash','ed7b5fa6b546bcef54e3d6e5fa43653769453a33'),(356,75,'_wp_attached_file','2024/07/3SUMAU.jpg'),(357,75,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:320;s:6:\"height\";i:320;s:4:\"file\";s:18:\"2024/07/3SUMAU.jpg\";s:8:\"filesize\";i:56794;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"3SUMAU-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14798;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"3SUMAU-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6274;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(358,75,'_elementor_source_image_hash','3763e422bcf55a450049d068bf44792dfa6b158d'),(359,76,'_wp_attached_file','2024/07/CASCKD8.jpg'),(360,76,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:320;s:6:\"height\";i:320;s:4:\"file\";s:19:\"2024/07/CASCKD8.jpg\";s:8:\"filesize\";i:52477;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"CASCKD8-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13489;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"CASCKD8-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5729;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(361,76,'_elementor_source_image_hash','32f1f3804d0fca4f143398d026f8855f6cfe5362'),(362,77,'_wp_attached_file','2024/07/MKLVKTE.jpg'),(363,77,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:320;s:6:\"height\";i:320;s:4:\"file\";s:19:\"2024/07/MKLVKTE.jpg\";s:8:\"filesize\";i:59237;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"MKLVKTE-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15126;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"MKLVKTE-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6180;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(364,77,'_elementor_source_image_hash','9eca97e185a973909c16dcd4141174ed068ea951'),(365,78,'_elementor_edit_mode','builder'),(366,78,'_elementor_template_type','section'),(367,78,'_elementor_version','3.23.2'),(368,78,'_elementor_data','[{\"id\":\"5049ef19\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"Eldery male gardener using scissors for bushes\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"160\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0,\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_size_tablet\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"top center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00160E\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b\":\"#00000054\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_slideshow_gallery\":[{\"id\":\"58\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-with-hedge-trimmer-e1635892441479.jpg\"},{\"id\":\"59\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/professional-gardener-at-work-XU82AHW.jpg\"},{\"id\":\"60\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-buying-new-plantsP4VGX5F.jpg\"},{\"id\":\"61\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/garden-decorative-trees-trimming-by-professional-gardener-e1635864777836.jpg\"}],\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"62dabe3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":65,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=06a34e7\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"252a27f9\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Complete For All\",\"sg_title_focused\":\" Landscape \",\"sg_title_after\":\" Service And Maintenance\",\"sg_title_html_tag\":\"h1\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=primary\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"sg_title_text\":\"Trending Stories And Another Stories\",\"sg_separator_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_background_background_slideshow_gallery\":[],\"st_title_border_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_border_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_border_color_background_slideshow_gallery\":[],\"st_focused_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_background_background_slideshow_gallery\":[],\"st_focused_gradient_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_gradient_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_gradient_color_background_slideshow_gallery\":[],\"st_subtitle_gradient_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_gradient_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_gradient_color_background_slideshow_gallery\":[],\"st_subtitle_border_left_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_left_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_left_background_background_slideshow_gallery\":[],\"st_subtitle_border_right_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_right_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_right_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"48f391c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5f6e716c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"74f4f2b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37.85499999999999687361196265555918216705322265625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":48,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"397b2421\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"typography_typography\":\"globals\\/typography?id=0a50947\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"71989139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":62.14500000000000312638803734444081783294677734375,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"flex-start\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":52,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"740b34dc\",\"elType\":\"widget\",\"settings\":{\"sg_video_button_title\":\"Play Video\",\"sg_video_button_icon\":{\"value\":\"jki jki-play-button-light\",\"library\":\"jkiticon\"},\"sg_video_url\":\"https:\\/\\/www.youtube.com\\/watch?v=MLpWrANjFbI\",\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_width_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_line_height_responsive\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#FFD402\",\"st_button_normal_glow_color_responsive\":\"#00694361\",\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"_element_width\":\"auto\",\"__globals__\":{\"st_button_normal_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=accent\",\"st_border_normal_border_border_color\":\"\",\"st_button_hover_text_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_glow_color_responsive\":\"\"},\"st_button_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_button_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_width_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_line_height_responsive_mobile\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"st_border_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_border_normal_border_border_color\":\"#FFD027\",\"st_button_line_height_responsive_tablet\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"st_button_normal_background_background_color\":\"#006943\",\"st_button_hover_text_color_responsive\":\"#006943\",\"st_button_hover_background_background_color\":\"#FFD402\",\"sg_video_hosted\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_video_hosted_poster\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_normal_background_background_slideshow_gallery\":[],\"st_button_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_hover_background_background_slideshow_gallery\":[],\"st_icon_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_normal_background_background_slideshow_gallery\":[],\"st_icon_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_hover_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_video_button\"},{\"id\":\"502875ca\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Intro\",\"align\":\"right\",\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"typography_typography\":\"globals\\/typography?id=0a50947\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"hide_mobile\":\"hidden-mobile\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7fa9583d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7abb693f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.00200000000000244426701101474463939666748046875,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6568360\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Greenco\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"208ad28b\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Landscaping And Garden Care Services\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"90fed70\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"584cd1e9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"370041f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6eaa6445\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"62\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-and-his-flowers.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"980\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"65ac9fe3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"42d7ecb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Public Liability Insurance\",\"_id\":\"a978734\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Environmentally Friendly\",\"_id\":\"1cd10a1\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"On Time, Every Time\",\"_id\":\"c6767db\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Beautiful Garden Designs\",\"_id\":\"d4743f4\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Modern Machinery And Tool\",\"_id\":\"535c17d\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1b015ada\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=558fe58\",\"background_color\":\"globals\\/colors?id=accent\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4081ddf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.9129999999999967030817060731351375579833984375,\"_inline_size_tablet\":100,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6ab3f09c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"63\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-topiary-job.jpg\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"860\",\"height\":\"980\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"174cdce6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"64\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden.jpg\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"-59\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"188f84cd\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"324c53d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"52957e58\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#00160E\",\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=primary\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=06a34e7\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"st_content_title_color_responsive\":\"#7F7F7F\",\"st_super_color_responsive\":\"#FFD402\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\",\"sg_setting_html_tag\":\"span\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_icon_choose\":{\"value\":\"fas fa-grip-horizontal\",\"library\":\"fa-solid\"},\"sg_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_type_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_type_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_type_background_slideshow_gallery\":[],\"st_background_overlay_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_color_background_slideshow_gallery\":[],\"st_background_overlay_hover_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_hover_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_hover_color_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"35eac620\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1b93a67f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"65\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/garden-maintenance-performed-by-pro-gardener.jpg\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4f0e1ba2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":224,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":478,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":325,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"4189797a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"40\",\"bottom\":\"80\",\"left\":\"40\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2feb9ec1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91cb5d9\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"44be581e\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Have The Perfect Solution For Your Landscape Problems\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"363ff969\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1871360\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"34e7572a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"77450002\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Variation Gardening\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"sg_setting_hover_watermark_icon\":{\"value\":\"far fa-map\",\"library\":\"fa-regular\"},\"sg_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_background_background_slideshow_gallery\":[],\"st_container_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_hover_background_background_slideshow_gallery\":[],\"st_icon_gradient_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_gradient_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_gradient_background_slideshow_gallery\":[],\"st_icon_hover_gradient_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_hover_gradient_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_hover_gradient_background_slideshow_gallery\":[],\"st_button_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_normal_background_background_slideshow_gallery\":[],\"st_button_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_hover_background_background_slideshow_gallery\":[],\"st_background_overlay_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_color_background_slideshow_gallery\":[],\"st_background_overlay_hover_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_hover_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_hover_color_background_slideshow_gallery\":[],\"st_badge_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_badge_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_badge_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"581050d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"66c3bb8a\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Expert Landscapers\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"sg_setting_hover_watermark_icon\":{\"value\":\"far fa-map\",\"library\":\"fa-regular\"},\"sg_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_background_background_slideshow_gallery\":[],\"st_container_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_hover_background_background_slideshow_gallery\":[],\"st_icon_gradient_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_gradient_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_gradient_background_slideshow_gallery\":[],\"st_icon_hover_gradient_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_hover_gradient_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_hover_gradient_background_slideshow_gallery\":[],\"st_button_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_normal_background_background_slideshow_gallery\":[],\"st_button_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_hover_background_background_slideshow_gallery\":[],\"st_background_overlay_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_color_background_slideshow_gallery\":[],\"st_background_overlay_hover_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_hover_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_hover_color_background_slideshow_gallery\":[],\"st_badge_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_badge_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_badge_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5a4b53f3\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"57ea0ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7f0c3110\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Affordable Price\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-save-money-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"sg_setting_hover_watermark_icon\":{\"value\":\"far fa-map\",\"library\":\"fa-regular\"},\"sg_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_background_background_slideshow_gallery\":[],\"st_container_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_hover_background_background_slideshow_gallery\":[],\"st_icon_gradient_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_gradient_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_gradient_background_slideshow_gallery\":[],\"st_icon_hover_gradient_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_hover_gradient_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_hover_gradient_background_slideshow_gallery\":[],\"st_button_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_normal_background_background_slideshow_gallery\":[],\"st_button_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_hover_background_background_slideshow_gallery\":[],\"st_background_overlay_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_color_background_slideshow_gallery\":[],\"st_background_overlay_hover_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_hover_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_hover_color_background_slideshow_gallery\":[],\"st_badge_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_badge_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_badge_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"1dbceeef\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2a61f9fe\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Free Consultation\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-Consultancy-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"sg_setting_hover_watermark_icon\":{\"value\":\"far fa-map\",\"library\":\"fa-regular\"},\"sg_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_background_background_slideshow_gallery\":[],\"st_container_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_hover_background_background_slideshow_gallery\":[],\"st_icon_gradient_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_gradient_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_gradient_background_slideshow_gallery\":[],\"st_icon_hover_gradient_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_hover_gradient_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_hover_gradient_background_slideshow_gallery\":[],\"st_button_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_normal_background_background_slideshow_gallery\":[],\"st_button_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_hover_background_background_slideshow_gallery\":[],\"st_background_overlay_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_color_background_slideshow_gallery\":[],\"st_background_overlay_hover_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_hover_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_hover_color_background_slideshow_gallery\":[],\"st_badge_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_badge_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_badge_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"15150978\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"44cde829\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"518af483\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"16695004\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find The Best Service For Your Garden\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e6e2741\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1c43445a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"55535738\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"66\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/men-watering-garden-plants.jpg\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"780fecf4\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3f41846c\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6340bcec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"16a0f016\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Watering Garden\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"sg_separator_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_background_background_slideshow_gallery\":[],\"st_title_border_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_border_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_border_color_background_slideshow_gallery\":[],\"st_focused_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_background_background_slideshow_gallery\":[],\"st_focused_gradient_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_gradient_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_gradient_color_background_slideshow_gallery\":[],\"st_subtitle_gradient_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_gradient_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_gradient_color_background_slideshow_gallery\":[],\"st_subtitle_border_left_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_left_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_left_background_background_slideshow_gallery\":[],\"st_subtitle_border_right_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_right_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_right_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"7e521209\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2032d7fc\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"st_button_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_normal_background_background_slideshow_gallery\":[],\"st_button_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_hover_background_background_slideshow_gallery\":[],\"st_icon_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_normal_background_background_slideshow_gallery\":[],\"st_icon_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_hover_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6dbbb418\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"67\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-finishing-garden.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6ae5e35c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"a4e1019\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"20757be6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"543198f7\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Lawn Maintenance\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"sg_separator_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_background_background_slideshow_gallery\":[],\"st_title_border_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_border_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_border_color_background_slideshow_gallery\":[],\"st_focused_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_background_background_slideshow_gallery\":[],\"st_focused_gradient_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_gradient_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_gradient_color_background_slideshow_gallery\":[],\"st_subtitle_gradient_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_gradient_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_gradient_color_background_slideshow_gallery\":[],\"st_subtitle_border_left_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_left_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_left_background_background_slideshow_gallery\":[],\"st_subtitle_border_right_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_right_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_right_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"5deb6b49\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"49fcfdbc\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"st_button_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_normal_background_background_slideshow_gallery\":[],\"st_button_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_hover_background_background_slideshow_gallery\":[],\"st_icon_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_normal_background_background_slideshow_gallery\":[],\"st_icon_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_hover_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"52417e6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"58\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-with-hedge-trimmer-e1635892441479.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"abaa68a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"34485dca\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"ea9ee58\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"30e7eb21\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Cutting Leaf\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"sg_separator_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_background_background_slideshow_gallery\":[],\"st_title_border_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_border_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_border_color_background_slideshow_gallery\":[],\"st_focused_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_background_background_slideshow_gallery\":[],\"st_focused_gradient_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_gradient_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_gradient_color_background_slideshow_gallery\":[],\"st_subtitle_gradient_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_gradient_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_gradient_color_background_slideshow_gallery\":[],\"st_subtitle_border_left_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_left_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_left_background_background_slideshow_gallery\":[],\"st_subtitle_border_right_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_right_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_right_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"2155f290\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5f3afc7c\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"st_button_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_normal_background_background_slideshow_gallery\":[],\"st_button_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_hover_background_background_slideshow_gallery\":[],\"st_icon_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_normal_background_background_slideshow_gallery\":[],\"st_icon_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_hover_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7997dc60\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"360\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"160\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"140\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"background_overlay_color_b\":\"#000414\",\"background_overlay_image\":{\"id\":\"69\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/a-gardener-watering-plants-in-a-flowerbed-2RT8DWL.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"62ea67bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"601fa48d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Landscaping\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a092069\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a458e19\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need Someone To Take Care Your Garden & Lawn?\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=07ee36d\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e4b20cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"2cf02f24\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":20,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":4,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6d004be1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.5090000000000003410605131648480892181396484375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"id\":\"70\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/happy-gardeners-with-plants-and-lawn-mower.jpg\"},\"background_position\":\"initial\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"space-between\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_color\":\"#FFFFFF00\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":9,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"50d65abe\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":219,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":183,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"207b4013\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Make Appointment & Take Care Your Garden\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=secondary\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=93191b3\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_content_title_color_hover_responsive\":\"#FFFFFF\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#FFFFFF\",\"st_icon_color_responsive\":\"#00E5CC\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#00E5CC\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"sg_setting_hover_watermark_icon\":{\"value\":\"far fa-map\",\"library\":\"fa-regular\"},\"sg_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_background_background_slideshow_gallery\":[],\"st_container_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_hover_background_background_slideshow_gallery\":[],\"st_icon_gradient_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_gradient_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_gradient_background_slideshow_gallery\":[],\"st_icon_hover_gradient_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_hover_gradient_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_hover_gradient_background_slideshow_gallery\":[],\"st_button_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_normal_background_background_slideshow_gallery\":[],\"st_button_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_hover_background_background_slideshow_gallery\":[],\"st_background_overlay_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_color_background_slideshow_gallery\":[],\"st_background_overlay_hover_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_hover_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_hover_color_background_slideshow_gallery\":[],\"st_badge_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_badge_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_badge_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":false},{\"id\":\"418276be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.4909999999999996589394868351519107818603515625,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"28ae2b94\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"260***1635696832144\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4a4c3520\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"152ee587\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"12fc721d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Process\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79208bda\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Complete Every Step Carefully\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4cd2a399\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1c3a7c23\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"13e50c41\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5a4e55ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-consult-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consultation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"72a2463e\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"span\",\"title_color\":\"#FFD402\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#006943\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"59c8ffd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3660fa76\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-pencil_art-light\",\"library\":\"jkiticon\"},\"title_text\":\"Design Installation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"56ed0d82\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7c7403f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"421f517a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consturction \",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"4308090b\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7fef8e2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"56187d46\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"title_text\":\"Finished Work\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"23159d8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"14032bc9\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"71\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardening-background-with-garden-tolls-A9BGNJU.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"506bd071\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"72d0f0c4\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"20\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Years of Experience\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\",\"sg_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_type_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_type_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_type_background_slideshow_gallery\":[],\"st_background_overlay_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_color_background_slideshow_gallery\":[],\"st_background_overlay_hover_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_hover_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_hover_color_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"2a05aa3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6ed592c4\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\",\"sg_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_type_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_type_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_type_background_slideshow_gallery\":[],\"st_background_overlay_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_color_background_slideshow_gallery\":[],\"st_background_overlay_hover_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_hover_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_hover_color_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"7f8d25d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"54d89ba1\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"2850\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Happy Customers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\",\"sg_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_type_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_type_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_type_background_slideshow_gallery\":[],\"st_background_overlay_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_color_background_slideshow_gallery\":[],\"st_background_overlay_hover_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_hover_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_hover_color_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"7a807212\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"44ddc54e\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"64\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Expert Landscapers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\",\"sg_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_type_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_type_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_type_background_slideshow_gallery\":[],\"st_background_overlay_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_color_background_slideshow_gallery\":[],\"st_background_overlay_hover_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_hover_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_hover_color_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19941753\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"9563981\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3fa9c388\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"645f78a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.56499999999999772626324556767940521240234375,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"677bd0fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Projects\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2ec6eb6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Project We Have Done\\n\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"68f713ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.49900000000000233058017329312860965728759765625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":40,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2d2bd810\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"f3cfd5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.0330000000000012505552149377763271331787109375,\"_inline_size_tablet\":23,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6c1e3ab2\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Projects\",\"align\":\"right\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=558fe58\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"left\",\"hover_animation\":\"float\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"205f104\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"250f70a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"685a9204\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"72\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-pruning-and-shaping-bushes-.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Cutting Leaf\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\",\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_background\":\"\",\"sg_social_normal_background_background_gradient_notice\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_gradient_notice\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\",\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_background\":\"\",\"sg_social_normal_background_background_gradient_notice\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_gradient_notice\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\",\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_background\":\"\",\"sg_social_normal_background_background_gradient_notice\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_gradient_notice\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"sg_popup_close_icon\":{\"value\":\"fas fa-times\",\"library\":\"fa-solid\"},\"st_content_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_normal_background_background_slideshow_gallery\":[],\"st_content_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_hover_background_background_slideshow_gallery\":[],\"st_image_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_background_background_slideshow_gallery\":[],\"st_image_overlay_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_overlay_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_overlay_background_background_slideshow_gallery\":[],\"st_control_modal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_control_modal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_control_modal_background_background_slideshow_gallery\":[],\"st_close_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_normal_background_background_slideshow_gallery\":[],\"st_close_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_hover_background_background_slideshow_gallery\":[],\"st_hover_content_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_hover_content_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_hover_content_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"1f710ca5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"32d4587e\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"73\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/backyard-garden.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Home Garden\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\",\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_background\":\"\",\"sg_social_normal_background_background_gradient_notice\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_gradient_notice\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\",\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_background\":\"\",\"sg_social_normal_background_background_gradient_notice\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_gradient_notice\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\",\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_background\":\"\",\"sg_social_normal_background_background_gradient_notice\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_gradient_notice\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"sg_popup_close_icon\":{\"value\":\"fas fa-times\",\"library\":\"fa-solid\"},\"st_content_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_normal_background_background_slideshow_gallery\":[],\"st_content_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_hover_background_background_slideshow_gallery\":[],\"st_image_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_background_background_slideshow_gallery\":[],\"st_image_overlay_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_overlay_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_overlay_background_background_slideshow_gallery\":[],\"st_control_modal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_control_modal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_control_modal_background_background_slideshow_gallery\":[],\"st_close_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_normal_background_background_slideshow_gallery\":[],\"st_close_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_hover_background_background_slideshow_gallery\":[],\"st_hover_content_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_hover_content_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_hover_content_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"7b7c79db\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"17b70851\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"64\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Build Backyard\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\",\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_background\":\"\",\"sg_social_normal_background_background_gradient_notice\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_gradient_notice\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\",\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_background\":\"\",\"sg_social_normal_background_background_gradient_notice\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_gradient_notice\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\",\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_background\":\"\",\"sg_social_normal_background_background_gradient_notice\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_gradient_notice\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_image_height_responsive_tablet\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"sg_popup_close_icon\":{\"value\":\"fas fa-times\",\"library\":\"fa-solid\"},\"st_content_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_normal_background_background_slideshow_gallery\":[],\"st_content_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_hover_background_background_slideshow_gallery\":[],\"st_image_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_background_background_slideshow_gallery\":[],\"st_image_overlay_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_overlay_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_overlay_background_background_slideshow_gallery\":[],\"st_control_modal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_control_modal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_control_modal_background_background_slideshow_gallery\":[],\"st_close_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_normal_background_background_slideshow_gallery\":[],\"st_close_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_hover_background_background_slideshow_gallery\":[],\"st_hover_content_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_hover_content_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_hover_content_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4ef6465\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_image\":{\"id\":\"74\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-moving-aerial-photo-Z8KDGJ9.jpg\"},\"background_overlay_color\":\"#0000007D\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6f3cbce\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4010ff95\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e310343\",\"elType\":\"widget\",\"settings\":{\"title\":\"What They Says About Us\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"af1ae57\",\"elType\":\"widget\",\"settings\":{\"sg_layout_testimonial_choose\":\"style-2\",\"sg_testimonials_image_size_imagesize_size\":\"medium\",\"sg_testimonials_list\":[{\"sg_testimonials_list_client_avatar\":{\"id\":\"75\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/3SUMAU.jpg\"},\"_id\":\"6e9b2e1\",\"sg_testimonials_list_client_name\":\"Regan Traynor\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"sg_testimonials_list_rating\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_testimonials_list_background_background_gradient_notice\":\"\",\"sg_testimonials_list_background_background_color\":\"\",\"sg_testimonials_list_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_testimonials_list_background_background_color_b\":\"#f2295b\",\"sg_testimonials_list_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_testimonials_list_background_background_gradient_type\":\"linear\",\"sg_testimonials_list_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_testimonials_list_background_background_gradient_position\":\"center center\",\"sg_testimonials_list_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_testimonials_list_background_background_position\":\"\",\"sg_testimonials_list_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_testimonials_list_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_testimonials_list_background_background_attachment\":\"\",\"sg_testimonials_list_background_background_repeat\":\"\",\"sg_testimonials_list_background_background_size\":\"\",\"sg_testimonials_list_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_testimonials_list_background_background_video_link\":\"\",\"sg_testimonials_list_background_background_video_start\":\"\",\"sg_testimonials_list_background_background_video_end\":\"\",\"sg_testimonials_list_background_background_play_once\":\"\",\"sg_testimonials_list_background_background_play_on_mobile\":\"\",\"sg_testimonials_list_background_background_privacy_mode\":\"\",\"sg_testimonials_list_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_testimonials_list_background_background_slideshow_gallery\":[],\"sg_testimonials_list_background_background_slideshow_loop\":\"yes\",\"sg_testimonials_list_background_background_slideshow_slide_duration\":5000,\"sg_testimonials_list_background_background_slideshow_slide_transition\":\"fade\",\"sg_testimonials_list_background_background_slideshow_transition_duration\":500,\"sg_testimonials_list_background_background_slideshow_background_size\":\"\",\"sg_testimonials_list_background_background_slideshow_background_position\":\"\",\"sg_testimonials_list_background_background_slideshow_lazyload\":\"\",\"sg_testimonials_list_background_background_slideshow_ken_burns\":\"\",\"sg_testimonials_list_background_background_slideshow_ken_burns_zoom_direction\":\"in\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"76\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/CASCKD8.jpg\"},\"sg_testimonials_list_client_name\":\"Maisha Dunn\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"d069a43\",\"sg_testimonials_list_rating\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_testimonials_list_background_background_gradient_notice\":\"\",\"sg_testimonials_list_background_background_color\":\"\",\"sg_testimonials_list_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_testimonials_list_background_background_color_b\":\"#f2295b\",\"sg_testimonials_list_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_testimonials_list_background_background_gradient_type\":\"linear\",\"sg_testimonials_list_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_testimonials_list_background_background_gradient_position\":\"center center\",\"sg_testimonials_list_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_testimonials_list_background_background_position\":\"\",\"sg_testimonials_list_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_testimonials_list_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_testimonials_list_background_background_attachment\":\"\",\"sg_testimonials_list_background_background_repeat\":\"\",\"sg_testimonials_list_background_background_size\":\"\",\"sg_testimonials_list_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_testimonials_list_background_background_video_link\":\"\",\"sg_testimonials_list_background_background_video_start\":\"\",\"sg_testimonials_list_background_background_video_end\":\"\",\"sg_testimonials_list_background_background_play_once\":\"\",\"sg_testimonials_list_background_background_play_on_mobile\":\"\",\"sg_testimonials_list_background_background_privacy_mode\":\"\",\"sg_testimonials_list_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_testimonials_list_background_background_slideshow_gallery\":[],\"sg_testimonials_list_background_background_slideshow_loop\":\"yes\",\"sg_testimonials_list_background_background_slideshow_slide_duration\":5000,\"sg_testimonials_list_background_background_slideshow_slide_transition\":\"fade\",\"sg_testimonials_list_background_background_slideshow_transition_duration\":500,\"sg_testimonials_list_background_background_slideshow_background_size\":\"\",\"sg_testimonials_list_background_background_slideshow_background_position\":\"\",\"sg_testimonials_list_background_background_slideshow_lazyload\":\"\",\"sg_testimonials_list_background_background_slideshow_ken_burns\":\"\",\"sg_testimonials_list_background_background_slideshow_ken_burns_zoom_direction\":\"in\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"77\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/MKLVKTE.jpg\"},\"sg_testimonials_list_client_name\":\"Reis Leonard\",\"sg_testimonials_list_designation\":\"Businessman\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"05c24f5\",\"sg_testimonials_list_rating\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_testimonials_list_background_background_gradient_notice\":\"\",\"sg_testimonials_list_background_background_color\":\"\",\"sg_testimonials_list_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_testimonials_list_background_background_color_b\":\"#f2295b\",\"sg_testimonials_list_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_testimonials_list_background_background_gradient_type\":\"linear\",\"sg_testimonials_list_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_testimonials_list_background_background_gradient_position\":\"center center\",\"sg_testimonials_list_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_testimonials_list_background_background_position\":\"\",\"sg_testimonials_list_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_testimonials_list_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_testimonials_list_background_background_attachment\":\"\",\"sg_testimonials_list_background_background_repeat\":\"\",\"sg_testimonials_list_background_background_size\":\"\",\"sg_testimonials_list_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_testimonials_list_background_background_video_link\":\"\",\"sg_testimonials_list_background_background_video_start\":\"\",\"sg_testimonials_list_background_background_video_end\":\"\",\"sg_testimonials_list_background_background_play_once\":\"\",\"sg_testimonials_list_background_background_play_on_mobile\":\"\",\"sg_testimonials_list_background_background_privacy_mode\":\"\",\"sg_testimonials_list_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_testimonials_list_background_background_slideshow_gallery\":[],\"sg_testimonials_list_background_background_slideshow_loop\":\"yes\",\"sg_testimonials_list_background_background_slideshow_slide_duration\":5000,\"sg_testimonials_list_background_background_slideshow_slide_transition\":\"fade\",\"sg_testimonials_list_background_background_slideshow_transition_duration\":500,\"sg_testimonials_list_background_background_slideshow_background_size\":\"\",\"sg_testimonials_list_background_background_slideshow_background_position\":\"\",\"sg_testimonials_list_background_background_slideshow_lazyload\":\"\",\"sg_testimonials_list_background_background_slideshow_ken_burns\":\"\",\"sg_testimonials_list_background_background_slideshow_ken_burns_zoom_direction\":\"in\"}],\"st_wrapper_alignment_responsive\":\"left\",\"st_client_name_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_description_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_client_name_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_client_designation_normal_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_client_designation_normal_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=d343bdf\",\"st_rating_color_responsive\":\"\",\"st_client_name_normal_color_responsive\":\"\",\"st_quote_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_layout_background_background_color\":\"\"},\"st_layout_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_layout_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_wrapper_fix_height\":\"\",\"sg_setting_autoplay\":\"yes\",\"sg_setting_autoplay_pause\":\"\",\"sg_setting_arrow\":\"\",\"sg_setting_arrow_position\":\"middle-edge\",\"sg_setting_dots\":\"\",\"sg_setting_quote\":\"yes\",\"sg_setting_rating\":\"\",\"st_layout_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_layout_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_slide_show_responsive\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"sg_setting_quote_icon\":{\"value\":\"jki jki-quote-light\",\"library\":\"jkiticon\"},\"sg_layout_image_position\":\"below\",\"st_layout_background_background_background\":\"classic\",\"st_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position\":\"\",\"st_quote_override_position_top_responsive\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"st_quote_override_position_left_responsive\":{\"unit\":\"px\",\"size\":442,\"sizes\":[]},\"st_client_name_normal_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_quote_normal_font_size_responsive\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"st_client_image_margin_responsive\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_rating_font_size_responsive\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"st_rating_margin_right_responsive\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_setting_slide_show_responsive_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"st_wrapper_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position_top_responsive_tablet\":{\"unit\":\"px\",\"size\":249,\"sizes\":[]},\"st_quote_override_position_top_responsive_mobile\":{\"unit\":\"px\",\"size\":193,\"sizes\":[]},\"st_quote_override_position_left_responsive_tablet\":{\"unit\":\"px\",\"size\":265,\"sizes\":[]},\"st_quote_override_position_left_responsive_mobile\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]},\"st_quote_normal_font_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"st_description_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_normal_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_setting_arrow_left\":{\"value\":\"fas fa-angle-left\",\"library\":\"fa-solid\"},\"sg_setting_arrow_right\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"sg_setting_rating_icon_full\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"sg_setting_rating_icon_half\":{\"value\":\"fas fa-star-half\",\"library\":\"fa-solid\"},\"st_layout_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_layout_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_layout_background_background_slideshow_gallery\":[],\"st_layout_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_layout_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_layout_hover_background_background_slideshow_gallery\":[],\"st_quote_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_quote_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_quote_normal_background_background_slideshow_gallery\":[],\"st_quote_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_quote_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_quote_hover_background_background_slideshow_gallery\":[],\"st_client_image_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_client_image_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_client_image_background_background_slideshow_gallery\":[],\"st_arrow_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_arrow_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_arrow_normal_background_background_slideshow_gallery\":[],\"st_arrow_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_arrow_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_arrow_hover_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6af47964\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"a8aa058\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"51430c72\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2a718d72\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65a7f5cd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"362ff194\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_title_hover_color_responsive\":\"globals\\/colors?id=secondary\",\"st_readmore_hover_color_responsive\":\"globals\\/colors?id=secondary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#646974\",\"st_excerpt_color_responsive\":\"#646974\",\"st_title_normal_color_responsive\":\"#272B36\",\"st_thumbnail_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_title_hover_color_responsive\":\"#FA8D25\",\"st_readmore_normal_color_responsive\":\"#FA8D25\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\",\"sg_content_readmore_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_content_comment_icon\":{\"value\":\"fas fa-comment\",\"library\":\"fa-solid\"},\"sg_content_meta_author_icon\":{\"value\":\"fas fa-user\",\"library\":\"fa-solid\"},\"sg_content_meta_date_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"pagination_prev_icon\":{\"value\":\"jki jki-angle-left-solid\",\"library\":\"jkiticon\"},\"pagination_next_icon\":{\"value\":\"jki jki-angle-right-solid\",\"library\":\"jkiticon\"},\"pagination_icon\":{\"value\":\"\",\"library\":\"\"},\"st_wrapper_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_wrapper_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_wrapper_background_background_slideshow_gallery\":[],\"st_post_item_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_post_item_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_post_item_background_background_slideshow_gallery\":[],\"st_thumbnail_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_thumbnail_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_thumbnail_background_background_slideshow_gallery\":[],\"st_thumbnail_background_overlay_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_thumbnail_background_overlay_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_thumbnail_background_overlay_background_slideshow_gallery\":[],\"st_thumbnail_container_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_thumbnail_container_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_thumbnail_container_background_background_slideshow_gallery\":[],\"st_content_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_background_background_slideshow_gallery\":[],\"st_category_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_category_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_category_background_background_slideshow_gallery\":[],\"st_title_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_background_background_slideshow_gallery\":[],\"st_readmore_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_readmore_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_readmore_normal_background_background_slideshow_gallery\":[],\"st_readmore_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_readmore_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_readmore_hover_background_background_slideshow_gallery\":[],\"st_preload_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_preload_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_preload_background_background_slideshow_gallery\":[],\"st_preload_dot_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_preload_dot_background_background_slideshow_gallery\":[],\"st_pagination_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_pagination_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_pagination_normal_background_background_slideshow_gallery\":[],\"st_pagination_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_pagination_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_pagination_hover_background_background_slideshow_gallery\":[],\"st_pagination_disabled_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_pagination_disabled_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_pagination_disabled_background_background_slideshow_gallery\":[],\"st_nocontent_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_nocontent_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_nocontent_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":false}],\"isInner\":false}]'),(369,79,'_elementor_edit_mode','builder'),(370,79,'_elementor_template_type','section'),(371,79,'_elementor_version','3.23.2'); INSERT INTO `victorq_postmeta` VALUES (372,79,'_elementor_data','[{\"id\":\"5049ef19\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"Eldery male gardener using scissors for bushes\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"160\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0,\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_size_tablet\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"top center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00160E\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b\":\"#00000054\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_slideshow_gallery\":[{\"id\":\"58\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-with-hedge-trimmer-e1635892441479.jpg\"},{\"id\":\"59\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/professional-gardener-at-work-XU82AHW.jpg\"},{\"id\":\"60\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-buying-new-plantsP4VGX5F.jpg\"},{\"id\":\"61\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/garden-decorative-trees-trimming-by-professional-gardener-e1635864777836.jpg\"}],\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"62dabe3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":65,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=06a34e7\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"252a27f9\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Complete For All\",\"sg_title_focused\":\" Landscape \",\"sg_title_after\":\" Service And Maintenance\",\"sg_title_html_tag\":\"h1\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=primary\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"sg_title_text\":\"Trending Stories And Another Stories\",\"sg_separator_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_background_background_slideshow_gallery\":[],\"st_title_border_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_border_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_border_color_background_slideshow_gallery\":[],\"st_focused_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_background_background_slideshow_gallery\":[],\"st_focused_gradient_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_gradient_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_gradient_color_background_slideshow_gallery\":[],\"st_subtitle_gradient_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_gradient_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_gradient_color_background_slideshow_gallery\":[],\"st_subtitle_border_left_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_left_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_left_background_background_slideshow_gallery\":[],\"st_subtitle_border_right_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_right_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_right_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"48f391c7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5f6e716c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"74f4f2b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37.85499999999999687361196265555918216705322265625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":48,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"397b2421\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"typography_typography\":\"globals\\/typography?id=0a50947\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"71989139\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":62.14500000000000312638803734444081783294677734375,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"flex-start\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":52,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"740b34dc\",\"elType\":\"widget\",\"settings\":{\"sg_video_button_title\":\"Play Video\",\"sg_video_button_icon\":{\"value\":\"jki jki-play-button-light\",\"library\":\"jkiticon\"},\"sg_video_url\":\"https:\\/\\/www.youtube.com\\/watch?v=MLpWrANjFbI\",\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_width_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_line_height_responsive\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#FFD402\",\"st_button_normal_glow_color_responsive\":\"#00694361\",\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"_element_width\":\"auto\",\"__globals__\":{\"st_button_normal_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=accent\",\"st_border_normal_border_border_color\":\"\",\"st_button_hover_text_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_glow_color_responsive\":\"\"},\"st_button_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_button_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_width_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_line_height_responsive_mobile\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"st_border_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_border_normal_border_border_color\":\"#FFD027\",\"st_button_line_height_responsive_tablet\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"st_button_normal_background_background_color\":\"#006943\",\"st_button_hover_text_color_responsive\":\"#006943\",\"st_button_hover_background_background_color\":\"#FFD402\",\"sg_video_hosted\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_video_hosted_poster\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_normal_background_background_slideshow_gallery\":[],\"st_button_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_hover_background_background_slideshow_gallery\":[],\"st_icon_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_normal_background_background_slideshow_gallery\":[],\"st_icon_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_hover_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_video_button\"},{\"id\":\"502875ca\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Intro\",\"align\":\"right\",\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"typography_typography\":\"globals\\/typography?id=0a50947\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"hide_mobile\":\"hidden-mobile\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7fa9583d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7abb693f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.00200000000000244426701101474463939666748046875,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6568360\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Greenco\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"208ad28b\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Landscaping And Garden Care Services\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"90fed70\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"584cd1e9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"370041f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6eaa6445\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"62\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-and-his-flowers.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"980\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"65ac9fe3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"42d7ecb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Public Liability Insurance\",\"_id\":\"a978734\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Environmentally Friendly\",\"_id\":\"1cd10a1\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"On Time, Every Time\",\"_id\":\"c6767db\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Beautiful Garden Designs\",\"_id\":\"d4743f4\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Modern Machinery And Tool\",\"_id\":\"535c17d\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1b015ada\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=558fe58\",\"background_color\":\"globals\\/colors?id=accent\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4081ddf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.9129999999999967030817060731351375579833984375,\"_inline_size_tablet\":100,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6ab3f09c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"63\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-topiary-job.jpg\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"860\",\"height\":\"980\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"174cdce6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"64\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden.jpg\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"-59\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"188f84cd\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"324c53d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"52957e58\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#00160E\",\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=primary\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=06a34e7\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"st_content_title_color_responsive\":\"#7F7F7F\",\"st_super_color_responsive\":\"#FFD402\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\",\"sg_setting_html_tag\":\"span\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_icon_choose\":{\"value\":\"fas fa-grip-horizontal\",\"library\":\"fa-solid\"},\"sg_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_type_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_type_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_type_background_slideshow_gallery\":[],\"st_background_overlay_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_color_background_slideshow_gallery\":[],\"st_background_overlay_hover_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_hover_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_hover_color_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"35eac620\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1b93a67f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"65\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/garden-maintenance-performed-by-pro-gardener.jpg\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4f0e1ba2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":224,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":478,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":325,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"4189797a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"40\",\"bottom\":\"80\",\"left\":\"40\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2feb9ec1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91cb5d9\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"44be581e\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Have The Perfect Solution For Your Landscape Problems\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"363ff969\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1871360\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"34e7572a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"77450002\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Variation Gardening\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"sg_setting_hover_watermark_icon\":{\"value\":\"far fa-map\",\"library\":\"fa-regular\"},\"sg_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_background_background_slideshow_gallery\":[],\"st_container_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_hover_background_background_slideshow_gallery\":[],\"st_icon_gradient_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_gradient_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_gradient_background_slideshow_gallery\":[],\"st_icon_hover_gradient_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_hover_gradient_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_hover_gradient_background_slideshow_gallery\":[],\"st_button_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_normal_background_background_slideshow_gallery\":[],\"st_button_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_hover_background_background_slideshow_gallery\":[],\"st_background_overlay_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_color_background_slideshow_gallery\":[],\"st_background_overlay_hover_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_hover_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_hover_color_background_slideshow_gallery\":[],\"st_badge_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_badge_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_badge_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"581050d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"66c3bb8a\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Expert Landscapers\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"sg_setting_hover_watermark_icon\":{\"value\":\"far fa-map\",\"library\":\"fa-regular\"},\"sg_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_background_background_slideshow_gallery\":[],\"st_container_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_hover_background_background_slideshow_gallery\":[],\"st_icon_gradient_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_gradient_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_gradient_background_slideshow_gallery\":[],\"st_icon_hover_gradient_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_hover_gradient_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_hover_gradient_background_slideshow_gallery\":[],\"st_button_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_normal_background_background_slideshow_gallery\":[],\"st_button_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_hover_background_background_slideshow_gallery\":[],\"st_background_overlay_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_color_background_slideshow_gallery\":[],\"st_background_overlay_hover_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_hover_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_hover_color_background_slideshow_gallery\":[],\"st_badge_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_badge_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_badge_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5a4b53f3\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"57ea0ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7f0c3110\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Affordable Price\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-save-money-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"sg_setting_hover_watermark_icon\":{\"value\":\"far fa-map\",\"library\":\"fa-regular\"},\"sg_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_background_background_slideshow_gallery\":[],\"st_container_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_hover_background_background_slideshow_gallery\":[],\"st_icon_gradient_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_gradient_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_gradient_background_slideshow_gallery\":[],\"st_icon_hover_gradient_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_hover_gradient_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_hover_gradient_background_slideshow_gallery\":[],\"st_button_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_normal_background_background_slideshow_gallery\":[],\"st_button_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_hover_background_background_slideshow_gallery\":[],\"st_background_overlay_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_color_background_slideshow_gallery\":[],\"st_background_overlay_hover_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_hover_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_hover_color_background_slideshow_gallery\":[],\"st_badge_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_badge_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_badge_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"1dbceeef\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2a61f9fe\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Free Consultation\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-Consultancy-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"sg_setting_hover_watermark_icon\":{\"value\":\"far fa-map\",\"library\":\"fa-regular\"},\"sg_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_background_background_slideshow_gallery\":[],\"st_container_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_hover_background_background_slideshow_gallery\":[],\"st_icon_gradient_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_gradient_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_gradient_background_slideshow_gallery\":[],\"st_icon_hover_gradient_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_hover_gradient_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_hover_gradient_background_slideshow_gallery\":[],\"st_button_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_normal_background_background_slideshow_gallery\":[],\"st_button_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_hover_background_background_slideshow_gallery\":[],\"st_background_overlay_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_color_background_slideshow_gallery\":[],\"st_background_overlay_hover_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_hover_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_hover_color_background_slideshow_gallery\":[],\"st_badge_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_badge_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_badge_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"15150978\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"44cde829\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"518af483\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"16695004\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find The Best Service For Your Garden\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e6e2741\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1c43445a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"55535738\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"66\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/men-watering-garden-plants.jpg\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"780fecf4\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3f41846c\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6340bcec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"16a0f016\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Watering Garden\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"sg_separator_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_background_background_slideshow_gallery\":[],\"st_title_border_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_border_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_border_color_background_slideshow_gallery\":[],\"st_focused_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_background_background_slideshow_gallery\":[],\"st_focused_gradient_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_gradient_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_gradient_color_background_slideshow_gallery\":[],\"st_subtitle_gradient_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_gradient_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_gradient_color_background_slideshow_gallery\":[],\"st_subtitle_border_left_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_left_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_left_background_background_slideshow_gallery\":[],\"st_subtitle_border_right_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_right_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_right_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"7e521209\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2032d7fc\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"st_button_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_normal_background_background_slideshow_gallery\":[],\"st_button_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_hover_background_background_slideshow_gallery\":[],\"st_icon_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_normal_background_background_slideshow_gallery\":[],\"st_icon_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_hover_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6dbbb418\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"67\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-finishing-garden.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6ae5e35c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"a4e1019\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"20757be6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"543198f7\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Lawn Maintenance\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"sg_separator_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_background_background_slideshow_gallery\":[],\"st_title_border_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_border_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_border_color_background_slideshow_gallery\":[],\"st_focused_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_background_background_slideshow_gallery\":[],\"st_focused_gradient_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_gradient_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_gradient_color_background_slideshow_gallery\":[],\"st_subtitle_gradient_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_gradient_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_gradient_color_background_slideshow_gallery\":[],\"st_subtitle_border_left_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_left_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_left_background_background_slideshow_gallery\":[],\"st_subtitle_border_right_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_right_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_right_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"5deb6b49\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"49fcfdbc\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"st_button_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_normal_background_background_slideshow_gallery\":[],\"st_button_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_hover_background_background_slideshow_gallery\":[],\"st_icon_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_normal_background_background_slideshow_gallery\":[],\"st_icon_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_hover_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"52417e6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"58\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-with-hedge-trimmer-e1635892441479.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"abaa68a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"34485dca\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"ea9ee58\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"30e7eb21\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Cutting Leaf\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"sg_separator_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_background_background_slideshow_gallery\":[],\"st_title_border_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_border_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_border_color_background_slideshow_gallery\":[],\"st_focused_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_background_background_slideshow_gallery\":[],\"st_focused_gradient_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_gradient_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_gradient_color_background_slideshow_gallery\":[],\"st_subtitle_gradient_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_gradient_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_gradient_color_background_slideshow_gallery\":[],\"st_subtitle_border_left_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_left_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_left_background_background_slideshow_gallery\":[],\"st_subtitle_border_right_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_right_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_right_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"2155f290\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5f3afc7c\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"st_button_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_normal_background_background_slideshow_gallery\":[],\"st_button_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_hover_background_background_slideshow_gallery\":[],\"st_icon_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_normal_background_background_slideshow_gallery\":[],\"st_icon_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_hover_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7997dc60\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"360\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"160\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"140\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"background_overlay_color_b\":\"#000414\",\"background_overlay_image\":{\"id\":\"69\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/a-gardener-watering-plants-in-a-flowerbed-2RT8DWL.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"62ea67bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"601fa48d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Landscaping\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a092069\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a458e19\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need Someone To Take Care Your Garden & Lawn?\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=07ee36d\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e4b20cc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"2cf02f24\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":20,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":4,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6d004be1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.5090000000000003410605131648480892181396484375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"id\":\"70\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/happy-gardeners-with-plants-and-lawn-mower.jpg\"},\"background_position\":\"initial\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"space-between\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_color\":\"#FFFFFF00\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":9,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"50d65abe\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":219,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":183,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"207b4013\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Make Appointment & Take Care Your Garden\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=secondary\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=93191b3\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_content_title_color_hover_responsive\":\"#FFFFFF\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#FFFFFF\",\"st_icon_color_responsive\":\"#00E5CC\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#00E5CC\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"sg_setting_hover_watermark_icon\":{\"value\":\"far fa-map\",\"library\":\"fa-regular\"},\"sg_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_background_background_slideshow_gallery\":[],\"st_container_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_hover_background_background_slideshow_gallery\":[],\"st_icon_gradient_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_gradient_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_gradient_background_slideshow_gallery\":[],\"st_icon_hover_gradient_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_hover_gradient_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_hover_gradient_background_slideshow_gallery\":[],\"st_button_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_normal_background_background_slideshow_gallery\":[],\"st_button_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_hover_background_background_slideshow_gallery\":[],\"st_background_overlay_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_color_background_slideshow_gallery\":[],\"st_background_overlay_hover_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_hover_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_hover_color_background_slideshow_gallery\":[],\"st_badge_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_badge_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_badge_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":false},{\"id\":\"418276be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.4909999999999996589394868351519107818603515625,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"28ae2b94\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"260***1635696832144\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4a4c3520\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"152ee587\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"12fc721d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Process\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79208bda\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Complete Every Step Carefully\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4cd2a399\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1c3a7c23\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"13e50c41\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5a4e55ed\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-consult-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consultation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"72a2463e\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"span\",\"title_color\":\"#FFD402\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#006943\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"59c8ffd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3660fa76\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-pencil_art-light\",\"library\":\"jkiticon\"},\"title_text\":\"Design Installation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"56ed0d82\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7c7403f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"421f517a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consturction \",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"4308090b\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7fef8e2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"56187d46\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"title_text\":\"Finished Work\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"23159d8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"14032bc9\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"71\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardening-background-with-garden-tolls-A9BGNJU.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"506bd071\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"72d0f0c4\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"20\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Years of Experience\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\",\"sg_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_type_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_type_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_type_background_slideshow_gallery\":[],\"st_background_overlay_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_color_background_slideshow_gallery\":[],\"st_background_overlay_hover_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_hover_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_hover_color_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"2a05aa3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6ed592c4\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\",\"sg_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_type_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_type_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_type_background_slideshow_gallery\":[],\"st_background_overlay_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_color_background_slideshow_gallery\":[],\"st_background_overlay_hover_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_hover_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_hover_color_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"7f8d25d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"54d89ba1\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"2850\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Happy Customers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\",\"sg_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_type_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_type_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_type_background_slideshow_gallery\":[],\"st_background_overlay_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_color_background_slideshow_gallery\":[],\"st_background_overlay_hover_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_hover_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_hover_color_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"7a807212\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"44ddc54e\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"64\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Expert Landscapers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\",\"sg_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_type_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_type_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_type_background_slideshow_gallery\":[],\"st_background_overlay_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_color_background_slideshow_gallery\":[],\"st_background_overlay_hover_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_hover_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_hover_color_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19941753\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"9563981\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3fa9c388\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"645f78a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.56499999999999772626324556767940521240234375,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"677bd0fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Projects\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2ec6eb6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Project We Have Done\\n\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"68f713ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.49900000000000233058017329312860965728759765625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":40,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2d2bd810\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"f3cfd5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.0330000000000012505552149377763271331787109375,\"_inline_size_tablet\":23,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6c1e3ab2\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Projects\",\"align\":\"right\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=558fe58\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"left\",\"hover_animation\":\"float\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"205f104\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"250f70a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"685a9204\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"72\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-pruning-and-shaping-bushes-.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Cutting Leaf\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\",\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_background\":\"\",\"sg_social_normal_background_background_gradient_notice\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_gradient_notice\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\",\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_background\":\"\",\"sg_social_normal_background_background_gradient_notice\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_gradient_notice\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\",\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_background\":\"\",\"sg_social_normal_background_background_gradient_notice\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_gradient_notice\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"sg_popup_close_icon\":{\"value\":\"fas fa-times\",\"library\":\"fa-solid\"},\"st_content_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_normal_background_background_slideshow_gallery\":[],\"st_content_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_hover_background_background_slideshow_gallery\":[],\"st_image_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_background_background_slideshow_gallery\":[],\"st_image_overlay_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_overlay_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_overlay_background_background_slideshow_gallery\":[],\"st_control_modal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_control_modal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_control_modal_background_background_slideshow_gallery\":[],\"st_close_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_normal_background_background_slideshow_gallery\":[],\"st_close_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_hover_background_background_slideshow_gallery\":[],\"st_hover_content_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_hover_content_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_hover_content_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"1f710ca5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"32d4587e\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"73\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/backyard-garden.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Home Garden\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\",\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_background\":\"\",\"sg_social_normal_background_background_gradient_notice\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_gradient_notice\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\",\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_background\":\"\",\"sg_social_normal_background_background_gradient_notice\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_gradient_notice\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\",\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_background\":\"\",\"sg_social_normal_background_background_gradient_notice\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_gradient_notice\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"sg_popup_close_icon\":{\"value\":\"fas fa-times\",\"library\":\"fa-solid\"},\"st_content_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_normal_background_background_slideshow_gallery\":[],\"st_content_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_hover_background_background_slideshow_gallery\":[],\"st_image_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_background_background_slideshow_gallery\":[],\"st_image_overlay_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_overlay_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_overlay_background_background_slideshow_gallery\":[],\"st_control_modal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_control_modal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_control_modal_background_background_slideshow_gallery\":[],\"st_close_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_normal_background_background_slideshow_gallery\":[],\"st_close_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_hover_background_background_slideshow_gallery\":[],\"st_hover_content_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_hover_content_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_hover_content_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"7b7c79db\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"17b70851\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"64\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Build Backyard\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\",\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_background\":\"\",\"sg_social_normal_background_background_gradient_notice\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_gradient_notice\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\",\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_background\":\"\",\"sg_social_normal_background_background_gradient_notice\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_gradient_notice\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\",\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_background\":\"\",\"sg_social_normal_background_background_gradient_notice\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_gradient_notice\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_image_height_responsive_tablet\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"sg_popup_close_icon\":{\"value\":\"fas fa-times\",\"library\":\"fa-solid\"},\"st_content_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_normal_background_background_slideshow_gallery\":[],\"st_content_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_hover_background_background_slideshow_gallery\":[],\"st_image_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_background_background_slideshow_gallery\":[],\"st_image_overlay_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_overlay_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_overlay_background_background_slideshow_gallery\":[],\"st_control_modal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_control_modal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_control_modal_background_background_slideshow_gallery\":[],\"st_close_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_normal_background_background_slideshow_gallery\":[],\"st_close_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_hover_background_background_slideshow_gallery\":[],\"st_hover_content_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_hover_content_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_hover_content_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4ef6465\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_image\":{\"id\":\"74\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-moving-aerial-photo-Z8KDGJ9.jpg\"},\"background_overlay_color\":\"#0000007D\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6f3cbce\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4010ff95\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e310343\",\"elType\":\"widget\",\"settings\":{\"title\":\"What They Says About Us\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"af1ae57\",\"elType\":\"widget\",\"settings\":{\"sg_layout_testimonial_choose\":\"style-2\",\"sg_testimonials_image_size_imagesize_size\":\"medium\",\"sg_testimonials_list\":[{\"sg_testimonials_list_client_avatar\":{\"id\":\"75\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/3SUMAU.jpg\"},\"_id\":\"6e9b2e1\",\"sg_testimonials_list_client_name\":\"Regan Traynor\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"sg_testimonials_list_rating\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_testimonials_list_background_background_gradient_notice\":\"\",\"sg_testimonials_list_background_background_color\":\"\",\"sg_testimonials_list_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_testimonials_list_background_background_color_b\":\"#f2295b\",\"sg_testimonials_list_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_testimonials_list_background_background_gradient_type\":\"linear\",\"sg_testimonials_list_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_testimonials_list_background_background_gradient_position\":\"center center\",\"sg_testimonials_list_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_testimonials_list_background_background_position\":\"\",\"sg_testimonials_list_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_testimonials_list_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_testimonials_list_background_background_attachment\":\"\",\"sg_testimonials_list_background_background_repeat\":\"\",\"sg_testimonials_list_background_background_size\":\"\",\"sg_testimonials_list_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_testimonials_list_background_background_video_link\":\"\",\"sg_testimonials_list_background_background_video_start\":\"\",\"sg_testimonials_list_background_background_video_end\":\"\",\"sg_testimonials_list_background_background_play_once\":\"\",\"sg_testimonials_list_background_background_play_on_mobile\":\"\",\"sg_testimonials_list_background_background_privacy_mode\":\"\",\"sg_testimonials_list_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_testimonials_list_background_background_slideshow_gallery\":[],\"sg_testimonials_list_background_background_slideshow_loop\":\"yes\",\"sg_testimonials_list_background_background_slideshow_slide_duration\":5000,\"sg_testimonials_list_background_background_slideshow_slide_transition\":\"fade\",\"sg_testimonials_list_background_background_slideshow_transition_duration\":500,\"sg_testimonials_list_background_background_slideshow_background_size\":\"\",\"sg_testimonials_list_background_background_slideshow_background_position\":\"\",\"sg_testimonials_list_background_background_slideshow_lazyload\":\"\",\"sg_testimonials_list_background_background_slideshow_ken_burns\":\"\",\"sg_testimonials_list_background_background_slideshow_ken_burns_zoom_direction\":\"in\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"76\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/CASCKD8.jpg\"},\"sg_testimonials_list_client_name\":\"Maisha Dunn\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"d069a43\",\"sg_testimonials_list_rating\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_testimonials_list_background_background_gradient_notice\":\"\",\"sg_testimonials_list_background_background_color\":\"\",\"sg_testimonials_list_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_testimonials_list_background_background_color_b\":\"#f2295b\",\"sg_testimonials_list_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_testimonials_list_background_background_gradient_type\":\"linear\",\"sg_testimonials_list_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_testimonials_list_background_background_gradient_position\":\"center center\",\"sg_testimonials_list_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_testimonials_list_background_background_position\":\"\",\"sg_testimonials_list_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_testimonials_list_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_testimonials_list_background_background_attachment\":\"\",\"sg_testimonials_list_background_background_repeat\":\"\",\"sg_testimonials_list_background_background_size\":\"\",\"sg_testimonials_list_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_testimonials_list_background_background_video_link\":\"\",\"sg_testimonials_list_background_background_video_start\":\"\",\"sg_testimonials_list_background_background_video_end\":\"\",\"sg_testimonials_list_background_background_play_once\":\"\",\"sg_testimonials_list_background_background_play_on_mobile\":\"\",\"sg_testimonials_list_background_background_privacy_mode\":\"\",\"sg_testimonials_list_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_testimonials_list_background_background_slideshow_gallery\":[],\"sg_testimonials_list_background_background_slideshow_loop\":\"yes\",\"sg_testimonials_list_background_background_slideshow_slide_duration\":5000,\"sg_testimonials_list_background_background_slideshow_slide_transition\":\"fade\",\"sg_testimonials_list_background_background_slideshow_transition_duration\":500,\"sg_testimonials_list_background_background_slideshow_background_size\":\"\",\"sg_testimonials_list_background_background_slideshow_background_position\":\"\",\"sg_testimonials_list_background_background_slideshow_lazyload\":\"\",\"sg_testimonials_list_background_background_slideshow_ken_burns\":\"\",\"sg_testimonials_list_background_background_slideshow_ken_burns_zoom_direction\":\"in\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"77\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/MKLVKTE.jpg\"},\"sg_testimonials_list_client_name\":\"Reis Leonard\",\"sg_testimonials_list_designation\":\"Businessman\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"05c24f5\",\"sg_testimonials_list_rating\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_testimonials_list_background_background_gradient_notice\":\"\",\"sg_testimonials_list_background_background_color\":\"\",\"sg_testimonials_list_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_testimonials_list_background_background_color_b\":\"#f2295b\",\"sg_testimonials_list_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_testimonials_list_background_background_gradient_type\":\"linear\",\"sg_testimonials_list_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_testimonials_list_background_background_gradient_position\":\"center center\",\"sg_testimonials_list_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_testimonials_list_background_background_position\":\"\",\"sg_testimonials_list_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_testimonials_list_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_testimonials_list_background_background_attachment\":\"\",\"sg_testimonials_list_background_background_repeat\":\"\",\"sg_testimonials_list_background_background_size\":\"\",\"sg_testimonials_list_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_testimonials_list_background_background_video_link\":\"\",\"sg_testimonials_list_background_background_video_start\":\"\",\"sg_testimonials_list_background_background_video_end\":\"\",\"sg_testimonials_list_background_background_play_once\":\"\",\"sg_testimonials_list_background_background_play_on_mobile\":\"\",\"sg_testimonials_list_background_background_privacy_mode\":\"\",\"sg_testimonials_list_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_testimonials_list_background_background_slideshow_gallery\":[],\"sg_testimonials_list_background_background_slideshow_loop\":\"yes\",\"sg_testimonials_list_background_background_slideshow_slide_duration\":5000,\"sg_testimonials_list_background_background_slideshow_slide_transition\":\"fade\",\"sg_testimonials_list_background_background_slideshow_transition_duration\":500,\"sg_testimonials_list_background_background_slideshow_background_size\":\"\",\"sg_testimonials_list_background_background_slideshow_background_position\":\"\",\"sg_testimonials_list_background_background_slideshow_lazyload\":\"\",\"sg_testimonials_list_background_background_slideshow_ken_burns\":\"\",\"sg_testimonials_list_background_background_slideshow_ken_burns_zoom_direction\":\"in\"}],\"st_wrapper_alignment_responsive\":\"left\",\"st_client_name_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_description_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_client_name_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_client_designation_normal_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_client_designation_normal_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=d343bdf\",\"st_rating_color_responsive\":\"\",\"st_client_name_normal_color_responsive\":\"\",\"st_quote_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_layout_background_background_color\":\"\"},\"st_layout_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_layout_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_wrapper_fix_height\":\"\",\"sg_setting_autoplay\":\"yes\",\"sg_setting_autoplay_pause\":\"\",\"sg_setting_arrow\":\"\",\"sg_setting_arrow_position\":\"middle-edge\",\"sg_setting_dots\":\"\",\"sg_setting_quote\":\"yes\",\"sg_setting_rating\":\"\",\"st_layout_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_layout_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_slide_show_responsive\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"sg_setting_quote_icon\":{\"value\":\"jki jki-quote-light\",\"library\":\"jkiticon\"},\"sg_layout_image_position\":\"below\",\"st_layout_background_background_background\":\"classic\",\"st_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position\":\"\",\"st_quote_override_position_top_responsive\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"st_quote_override_position_left_responsive\":{\"unit\":\"px\",\"size\":442,\"sizes\":[]},\"st_client_name_normal_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_quote_normal_font_size_responsive\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"st_client_image_margin_responsive\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_rating_font_size_responsive\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"st_rating_margin_right_responsive\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_setting_slide_show_responsive_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"st_wrapper_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position_top_responsive_tablet\":{\"unit\":\"px\",\"size\":249,\"sizes\":[]},\"st_quote_override_position_top_responsive_mobile\":{\"unit\":\"px\",\"size\":193,\"sizes\":[]},\"st_quote_override_position_left_responsive_tablet\":{\"unit\":\"px\",\"size\":265,\"sizes\":[]},\"st_quote_override_position_left_responsive_mobile\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]},\"st_quote_normal_font_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"st_description_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_normal_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_setting_arrow_left\":{\"value\":\"fas fa-angle-left\",\"library\":\"fa-solid\"},\"sg_setting_arrow_right\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"sg_setting_rating_icon_full\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"sg_setting_rating_icon_half\":{\"value\":\"fas fa-star-half\",\"library\":\"fa-solid\"},\"st_layout_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_layout_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_layout_background_background_slideshow_gallery\":[],\"st_layout_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_layout_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_layout_hover_background_background_slideshow_gallery\":[],\"st_quote_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_quote_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_quote_normal_background_background_slideshow_gallery\":[],\"st_quote_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_quote_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_quote_hover_background_background_slideshow_gallery\":[],\"st_client_image_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_client_image_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_client_image_background_background_slideshow_gallery\":[],\"st_arrow_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_arrow_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_arrow_normal_background_background_slideshow_gallery\":[],\"st_arrow_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_arrow_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_arrow_hover_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6af47964\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"a8aa058\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"51430c72\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2a718d72\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65a7f5cd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"362ff194\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_title_hover_color_responsive\":\"globals\\/colors?id=secondary\",\"st_readmore_hover_color_responsive\":\"globals\\/colors?id=secondary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#646974\",\"st_excerpt_color_responsive\":\"#646974\",\"st_title_normal_color_responsive\":\"#272B36\",\"st_thumbnail_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_title_hover_color_responsive\":\"#FA8D25\",\"st_readmore_normal_color_responsive\":\"#FA8D25\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\",\"sg_content_readmore_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_content_comment_icon\":{\"value\":\"fas fa-comment\",\"library\":\"fa-solid\"},\"sg_content_meta_author_icon\":{\"value\":\"fas fa-user\",\"library\":\"fa-solid\"},\"sg_content_meta_date_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"pagination_prev_icon\":{\"value\":\"jki jki-angle-left-solid\",\"library\":\"jkiticon\"},\"pagination_next_icon\":{\"value\":\"jki jki-angle-right-solid\",\"library\":\"jkiticon\"},\"pagination_icon\":{\"value\":\"\",\"library\":\"\"},\"st_wrapper_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_wrapper_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_wrapper_background_background_slideshow_gallery\":[],\"st_post_item_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_post_item_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_post_item_background_background_slideshow_gallery\":[],\"st_thumbnail_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_thumbnail_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_thumbnail_background_background_slideshow_gallery\":[],\"st_thumbnail_background_overlay_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_thumbnail_background_overlay_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_thumbnail_background_overlay_background_slideshow_gallery\":[],\"st_thumbnail_container_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_thumbnail_container_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_thumbnail_container_background_background_slideshow_gallery\":[],\"st_content_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_background_background_slideshow_gallery\":[],\"st_category_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_category_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_category_background_background_slideshow_gallery\":[],\"st_title_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_background_background_slideshow_gallery\":[],\"st_readmore_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_readmore_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_readmore_normal_background_background_slideshow_gallery\":[],\"st_readmore_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_readmore_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_readmore_hover_background_background_slideshow_gallery\":[],\"st_preload_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_preload_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_preload_background_background_slideshow_gallery\":[],\"st_preload_dot_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_preload_dot_background_background_slideshow_gallery\":[],\"st_pagination_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_pagination_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_pagination_normal_background_background_slideshow_gallery\":[],\"st_pagination_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_pagination_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_pagination_hover_background_background_slideshow_gallery\":[],\"st_pagination_disabled_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_pagination_disabled_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_pagination_disabled_background_background_slideshow_gallery\":[],\"st_nocontent_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_nocontent_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_nocontent_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":false}],\"isInner\":false}]'),(373,78,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(374,78,'_wp_page_template','elementor_header_footer'),(375,78,'envato_tk_source_kit','26'),(376,78,'envato_tk_source_index','2'),(377,80,'_elementor_edit_mode','builder'),(378,80,'_elementor_template_type','wp-page'),(379,80,'_elementor_version','3.23.2'),(380,81,'_elementor_edit_mode','builder'),(381,81,'_elementor_template_type','wp-page'),(382,81,'_elementor_version','3.23.2'),(383,24,'_wp_page_template','default'),(384,24,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(385,24,'_elementor_data','[{\"id\":\"35495243\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"Eldery male gardener using scissors for bushes\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"160\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0,\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_size_tablet\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"top center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00160E\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b\":\"#00000054\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_slideshow_gallery\":[{\"id\":154,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-02-5.jpg\"},{\"id\":156,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-04-3.jpg\"},{\"id\":157,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-01-5.jpg\"}],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"739a26d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":65,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"56\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=06a34e7\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"132d1a8e\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"For All \",\"sg_title_focused\":\" Luxury\",\"sg_title_after\":\"Cleaning And Maintenance Services\",\"sg_title_html_tag\":\"h1\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=primary\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":87.606999999999999317878973670303821563720703125}},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"7c49583a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":87.832999999999998408384271897375583648681640625}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"635cb25b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"23cf340e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37.85499999999999687361196265555918216705322265625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":48,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1c4c950d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4768b6f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":62.14500000000000312638803734444081783294677734375,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"flex-start\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":52,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"34c0badb\",\"elType\":\"widget\",\"settings\":{\"sg_video_button_title\":\"Play Video\",\"sg_video_button_icon\":{\"value\":\"jki jki-play\",\"library\":\"jkiticon\"},\"sg_video_url\":\"#\",\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_width_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_line_height_responsive\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#FFD402\",\"st_button_normal_glow_color_responsive\":\"#00694361\",\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"_element_width\":\"auto\",\"__globals__\":{\"st_button_normal_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=accent\",\"st_border_normal_border_border_color\":\"\",\"st_button_hover_text_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_glow_color_responsive\":\"\"},\"st_button_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_button_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_width_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_line_height_responsive_mobile\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"st_border_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_border_normal_border_border_color\":\"#FFD027\",\"st_button_line_height_responsive_tablet\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"st_button_normal_background_background_color\":\"#006943\",\"st_button_hover_text_color_responsive\":\"#006943\",\"st_button_hover_background_background_color\":\"#FFD402\",\"sg_video_auto_play\":\"\",\"sg_video_mute\":\"\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_video_button\"},{\"id\":\"232ec8da\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Intro\",\"align\":\"right\",\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"hide_mobile\":\"hidden-mobile\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#00160E\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49b348ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"edc2dbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.00200000000000244426701101474463939666748046875,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"4e2246bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Prestige Luxury Cleanings LLC\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"139cc45f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Lawn and Driveway Cleaning Services\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dc78e71\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"597dc67d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"26cf3840\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"3b19bda0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":167,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"980\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a46c929\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"7c4d8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Public Liability Insurance\",\"_id\":\"a978734\"},{\"text\":\"Environmentally Friendly\",\"_id\":\"1cd10a1\"},{\"text\":\"On Time, Every Time\",\"_id\":\"c6767db\"},{\"text\":\"Beautiful Garden Designs\",\"_id\":\"d4743f4\"},{\"text\":\"Modern Machinery And Tool\",\"_id\":\"535c17d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"398321ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4c7c15d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.9129999999999967030817060731351375579833984375,\"_inline_size_tablet\":100,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5683e90d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":162,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"860\",\"height\":\"980\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b6190b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":163,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"-59\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"250636f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"713aa588\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"51a71b71\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#00160E\",\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=primary\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=06a34e7\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"st_content_title_color_responsive\":\"#7F7F7F\",\"st_super_color_responsive\":\"#FFD402\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\",\"sg_setting_html_tag\":\"span\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5557874f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"73847855\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":345,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Pressure-Wash.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"b1058a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":224,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":478,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":325,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"69098afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"40\",\"bottom\":\"80\",\"left\":\"40\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"7cb7bf82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91cb5d9\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26358abf\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Have The Perfect Solution For Your Lawn and Driveway Problems\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15a36cc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42c8d36c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"7114454f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"76f24ca8\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Variation Gardening\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"138cc39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"28a78a06\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Expert Landscapers\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c5ac2bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"38fdb183\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"3ce0b95b\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Affordable Price\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-save-money-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4c80f133\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"7451fb11\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Free Consultation\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-Consultancy-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e93f2c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"39a46e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"6773b2a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"87647bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Providing Services For All Your Residential And Commercial Needs\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3d4509\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6960c5\",\"elType\":\"section\",\"settings\":{\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"20701e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"a2e2fb9\",\"elType\":\"widget\",\"settings\":{\"premium_carousel_slider_content\":[\"Service 4\",\"Service 3\",\"Service 2\",\"service 1\"],\"premium_carousel_templates_repeater\":[],\"premium_carousel_responsive_desktop\":3,\"premium_carousel_responsive_tabs\":2,\"premium_carousel_nav_options\":\"none\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"premium_carousel_autoplay_speed\":10000,\"premium_carousel_arrow_icon_prev\":\"left_arrow_chevron\",\"premium_carousel_arrow_icon_next\":\"right_arrow_chevron\",\"premium_carousel_arrow_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"premium_carousel_arrow_position\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"premium_carousel_arrows_radius_normal\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"__globals__\":{\"premium_carousel_arrow_color\":\"globals\\/colors?id=06a34e7\",\"premium_carousel_arrow_bg_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"premium-carousel-widget\"},{\"id\":\"aed5322\",\"elType\":\"section\",\"settings\":{\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"5188113\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"d9b24b7\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"View All\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_text_decoration\":\"none\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_color_responsive\":\"#3F5A29\",\"st_button_normal_background_background_color\":\"#FFD402\",\"st_button_hover_color_responsive\":\"#FFD402\",\"st_button_hover_background_background_color\":\"#3F5A29\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30164d28\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"6e6d8a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":142,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-services.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"bd233da\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6535a16\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"937e2e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"85e7aee\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Lawn Services\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"d9723d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"c908972\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37c1cce6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":143,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/driveway-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5b3e60ba\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3b291bbf\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"20b91942\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5649f719\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Driveway Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6300b69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"256ddf68\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3735f0b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":144,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/deck-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"741128a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3691562\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"3c8a0e6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5eb1b3b9\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Deck Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"25f37292\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"61c9ff8e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d41e618\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"8781ee3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":145,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/weed-control.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"bd84c7d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"14f7965\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"fb2459e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"0582197\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Weed Control \",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"f7b0fa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"0197d9e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f3de9c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":146,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/grass-feed.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"75ba950\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"23edbf4\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"ad70b3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"b1c4ac7\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Grass Feed\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6f592ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"0043a3b\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"790dd775\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"360\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"160\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"140\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"background_overlay_color_b\":\"#000414\",\"background_overlay_image\":{\"id\":186,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/a-gardener-watering-plants-in-a-flowerbed-2RT8DWL-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"a2ed5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"7e37f762\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Landscaping\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a092069\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d5099\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need Someone To Take Care Your Lawn and Driveway?\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=07ee36d\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1198756c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"66521a56\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":20,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":4,\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"1a89d099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.5090000000000003410605131648480892181396484375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"id\":362,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/9e95ba14a10415ba80a97fb9792d1b71.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"space-between\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_color\":\"#FFFFFF00\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":9,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"46b821c1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":219,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":183,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"449971a9\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Make Appointment & Take Care Your Garden\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=secondary\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=93191b3\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_content_title_color_hover_responsive\":\"#FFFFFF\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#FFFFFF\",\"st_icon_color_responsive\":\"#00E5CC\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#00E5CC\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":false},{\"id\":\"13747b6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.4909999999999996589394868351519107818603515625,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1a13f42e\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"178***1721830795182\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fde8487\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"59883b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1617542a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Process\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29c7aa96\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Complete Every Step Carefully\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ced0d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d62463d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"18cf7834\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"41f79872\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-consult-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consultation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65e1b761\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"span\",\"title_color\":\"#FFD402\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#006943\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12cdbf13\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"4175d29\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-pencil_art-light\",\"library\":\"jkiticon\"},\"title_text\":\"Design Installation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2adabf01\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b628\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"569b3221\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consturction \",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"67d6b2e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6fff79c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"53c9a76e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"title_text\":\"Finished Work\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"555aace0\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d57540b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"71\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardening-background-with-garden-tolls-A9BGNJU.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"147831a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5a53d120\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"20\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Years of Experience\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"488f4727\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"6b8f6eae\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"76666759\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"6f532f9e\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"2850\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Happy Customers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"265fd738\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5473dc22\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"64\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Expert Landscapers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b38731e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"4945f2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"627cd42c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"65e3182\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.56499999999999772626324556767940521240234375,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"43108b53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Projects\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45328989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Project We Have Done\\n\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"f382082\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.49900000000000233058017329312860965728759765625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":40,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"55ecfb57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"67afcbfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.0330000000000012505552149377763271331787109375,\"_inline_size_tablet\":23,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"4989aa04\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Projects\",\"align\":\"right\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"left\",\"hover_animation\":\"float\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"32515d84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"3f5753f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"21982cfb\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":196,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Cutting-Leaf.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Cutting Leaf\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"404dc561\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"58d29b54\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":197,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Home-Garden.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Home Garden\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"3bff1dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"3c24185a\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":195,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/build-backyard.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Build Backyard\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_image_height_responsive_tablet\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b3cb58d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"bottom center\",\"background_ypos\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_image\":{\"id\":363,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/iStock-492496468.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_color\":\"#0000007D\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"79705206\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"51c9a732\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73b2fe0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"What They Say About Us\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4876e632\",\"elType\":\"widget\",\"settings\":{\"sg_layout_testimonial_choose\":\"style-2\",\"sg_testimonials_image_size_imagesize_size\":\"medium\",\"sg_testimonials_list\":[{\"sg_testimonials_list_client_avatar\":{\"id\":\"75\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/3SUMAU.jpg\"},\"_id\":\"6e9b2e1\",\"sg_testimonials_list_client_name\":\"Regan Traynor\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"76\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/CASCKD8.jpg\"},\"sg_testimonials_list_client_name\":\"Maisha Dunn\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"d069a43\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"77\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/MKLVKTE.jpg\"},\"sg_testimonials_list_client_name\":\"Reis Leonard\",\"sg_testimonials_list_designation\":\"Businessman\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"05c24f5\"}],\"st_wrapper_alignment_responsive\":\"left\",\"st_client_name_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_description_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_client_name_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_client_designation_normal_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_client_designation_normal_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=d343bdf\",\"st_rating_color_responsive\":\"\",\"st_client_name_normal_color_responsive\":\"\",\"st_quote_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_layout_background_background_color\":\"\"},\"st_layout_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_layout_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_wrapper_fix_height\":\"\",\"sg_setting_autoplay\":\"yes\",\"sg_setting_autoplay_pause\":\"\",\"sg_setting_arrow\":\"\",\"sg_setting_arrow_position\":\"middle-edge\",\"sg_setting_dots\":\"\",\"sg_setting_quote\":\"yes\",\"sg_setting_rating\":\"\",\"st_layout_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_layout_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_slide_show_responsive\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"sg_setting_quote_icon\":{\"value\":\"jki jki-quote-light\",\"library\":\"jkiticon\"},\"sg_layout_image_position\":\"below\",\"st_layout_background_background_background\":\"classic\",\"st_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position\":\"\",\"st_quote_override_position_top_responsive\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"st_quote_override_position_left_responsive\":{\"unit\":\"px\",\"size\":442,\"sizes\":[]},\"st_client_name_normal_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_quote_normal_font_size_responsive\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"st_client_image_margin_responsive\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_rating_font_size_responsive\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"st_rating_margin_right_responsive\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_setting_slide_show_responsive_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"st_wrapper_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position_top_responsive_tablet\":{\"unit\":\"px\",\"size\":249,\"sizes\":[]},\"st_quote_override_position_top_responsive_mobile\":{\"unit\":\"px\",\"size\":193,\"sizes\":[]},\"st_quote_override_position_left_responsive_tablet\":{\"unit\":\"px\",\"size\":265,\"sizes\":[]},\"st_quote_override_position_left_responsive_mobile\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]},\"st_quote_normal_font_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"st_description_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_normal_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64afd05f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"746d276b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"30338dfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f950be4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ca735b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5d6ca3ad\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_title_hover_color_responsive\":\"globals\\/colors?id=secondary\",\"st_readmore_hover_color_responsive\":\"globals\\/colors?id=secondary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#646974\",\"st_excerpt_color_responsive\":\"#646974\",\"st_title_normal_color_responsive\":\"#272B36\",\"st_thumbnail_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_title_hover_color_responsive\":\"#FA8D25\",\"st_readmore_normal_color_responsive\":\"#FA8D25\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":false}],\"isInner\":false}]'),(386,82,'_elementor_edit_mode','builder'),(387,82,'_elementor_template_type','wp-page'),(388,82,'_elementor_version','3.23.2'),(389,82,'_wp_page_template','default'),(390,82,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(391,82,'_elementor_data','[{\"id\":\"35495243\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"Eldery male gardener using scissors for bushes\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"160\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0,\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_size_tablet\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"top center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00160E\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b\":\"#00000054\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_slideshow_gallery\":[{\"id\":\"58\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-with-hedge-trimmer-e1635892441479.jpg\"},{\"id\":\"59\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/professional-gardener-at-work-XU82AHW.jpg\"},{\"id\":\"60\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-buying-new-plantsP4VGX5F.jpg\"},{\"id\":\"61\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/garden-decorative-trees-trimming-by-professional-gardener-e1635864777836.jpg\"}]},\"elements\":[{\"id\":\"739a26d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":65,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=06a34e7\"}},\"elements\":[{\"id\":\"132d1a8e\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Complete For All\",\"sg_title_focused\":\" Landscape \",\"sg_title_after\":\" Service And Maintenance\",\"sg_title_html_tag\":\"h1\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=primary\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"7c49583a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"635cb25b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"23cf340e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37.85499999999999687361196265555918216705322265625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":48,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"1c4c950d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"typography_typography\":\"globals\\/typography?id=0a50947\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4768b6f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":62.14500000000000312638803734444081783294677734375,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"flex-start\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":52,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"34c0badb\",\"elType\":\"widget\",\"settings\":{\"sg_video_button_title\":\"Play Video\",\"sg_video_button_icon\":{\"value\":\"jki jki-play-button-light\",\"library\":\"jkiticon\"},\"sg_video_url\":\"https:\\/\\/www.youtube.com\\/watch?v=MLpWrANjFbI\",\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_width_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_line_height_responsive\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#FFD402\",\"st_button_normal_glow_color_responsive\":\"#00694361\",\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"_element_width\":\"auto\",\"__globals__\":{\"st_button_normal_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=accent\",\"st_border_normal_border_border_color\":\"\",\"st_button_hover_text_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_glow_color_responsive\":\"\"},\"st_button_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_button_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_width_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_line_height_responsive_mobile\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"st_border_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_border_normal_border_border_color\":\"#FFD027\",\"st_button_line_height_responsive_tablet\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"st_button_normal_background_background_color\":\"#006943\",\"st_button_hover_text_color_responsive\":\"#006943\",\"st_button_hover_background_background_color\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_video_button\"},{\"id\":\"232ec8da\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Intro\",\"align\":\"right\",\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"typography_typography\":\"globals\\/typography?id=0a50947\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49b348ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"edc2dbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.00200000000000244426701101474463939666748046875,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e2246bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Greenco\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"139cc45f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Landscaping And Garden Care Services\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dc78e71\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"597dc67d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"26cf3840\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b19bda0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"62\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-and-his-flowers.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"980\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a46c929\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c4d8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Public Liability Insurance\",\"_id\":\"a978734\"},{\"text\":\"Environmentally Friendly\",\"_id\":\"1cd10a1\"},{\"text\":\"On Time, Every Time\",\"_id\":\"c6767db\"},{\"text\":\"Beautiful Garden Designs\",\"_id\":\"d4743f4\"},{\"text\":\"Modern Machinery And Tool\",\"_id\":\"535c17d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"398321ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=558fe58\",\"background_color\":\"globals\\/colors?id=accent\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4c7c15d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.9129999999999967030817060731351375579833984375,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5683e90d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"63\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-topiary-job.jpg\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"860\",\"height\":\"980\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b6190b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"64\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden.jpg\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"-59\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"250636f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"713aa588\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"51a71b71\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#00160E\",\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=primary\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=06a34e7\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"st_content_title_color_responsive\":\"#7F7F7F\",\"st_super_color_responsive\":\"#FFD402\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\",\"sg_setting_html_tag\":\"span\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5557874f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"73847855\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"65\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/garden-maintenance-performed-by-pro-gardener.jpg\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"b1058a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":224,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":478,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":325,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"69098afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"40\",\"bottom\":\"80\",\"left\":\"40\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"7cb7bf82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91cb5d9\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26358abf\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Have The Perfect Solution For Your Landscape Problems\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15a36cc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42c8d36c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7114454f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76f24ca8\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Variation Gardening\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"138cc39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28a78a06\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Expert Landscapers\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c5ac2bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38fdb183\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3ce0b95b\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Affordable Price\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-save-money-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4c80f133\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7451fb11\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Free Consultation\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-Consultancy-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e93f2c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"39a46e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6773b2a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"87647bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find The Best Service For Your Garden\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e2cc66e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30164d28\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e8639b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"66\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/men-watering-garden-plants.jpg\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fa92c14\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2c434fb3\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"5abe2e18\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33425b9f\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Watering Garden\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"472ed309\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"67cb221c\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37c1cce6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"67\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-finishing-garden.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b3e60ba\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3b291bbf\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"20b91942\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5649f719\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Lawn Maintenance\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6300b69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"256ddf68\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3735f0b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"58\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-with-hedge-trimmer-e1635892441479.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"741128a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3691562\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3c8a0e6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5eb1b3b9\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Cutting Leaf\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"25f37292\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"61c9ff8e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"790dd775\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"360\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"160\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"140\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"background_overlay_color_b\":\"#000414\",\"background_overlay_image\":{\"id\":\"69\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/a-gardener-watering-plants-in-a-flowerbed-2RT8DWL.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]}},\"elements\":[{\"id\":\"a2ed5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7e37f762\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Landscaping\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a092069\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d5099\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need Someone To Take Care Your Garden & Lawn?\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=07ee36d\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1198756c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"66521a56\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":20,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":4},\"elements\":[{\"id\":\"1a89d099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.5090000000000003410605131648480892181396484375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"id\":\"70\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/happy-gardeners-with-plants-and-lawn-mower.jpg\"},\"background_position\":\"initial\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"space-between\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_color\":\"#FFFFFF00\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":9,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"46b821c1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":219,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":183,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"449971a9\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Make Appointment & Take Care Your Garden\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=secondary\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=93191b3\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_content_title_color_hover_responsive\":\"#FFFFFF\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#FFFFFF\",\"st_icon_color_responsive\":\"#00E5CC\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#00E5CC\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":false},{\"id\":\"13747b6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.4909999999999996589394868351519107818603515625,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a13f42e\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"260***1635696832144\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fde8487\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"59883b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1617542a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Process\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29c7aa96\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Complete Every Step Carefully\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ced0d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d62463d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18cf7834\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"41f79872\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-consult-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consultation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65e1b761\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"span\",\"title_color\":\"#FFD402\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#006943\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12cdbf13\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4175d29\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-pencil_art-light\",\"library\":\"jkiticon\"},\"title_text\":\"Design Installation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2adabf01\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b628\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"569b3221\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consturction \",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"67d6b2e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6fff79c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53c9a76e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"title_text\":\"Finished Work\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"555aace0\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d57540b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"71\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardening-background-with-garden-tolls-A9BGNJU.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]}},\"elements\":[{\"id\":\"147831a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"5a53d120\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"20\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Years of Experience\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"488f4727\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"6b8f6eae\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"76666759\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f532f9e\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"2850\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Happy Customers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"265fd738\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5473dc22\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"64\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Expert Landscapers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b38731e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4945f2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"627cd42c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65e3182\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.56499999999999772626324556767940521240234375},\"elements\":[{\"id\":\"43108b53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Projects\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45328989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Project We Have Done\\n\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"f382082\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.49900000000000233058017329312860965728759765625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":40,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"55ecfb57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"67afcbfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.0330000000000012505552149377763271331787109375,\"_inline_size_tablet\":23,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4989aa04\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Projects\",\"align\":\"right\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=558fe58\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"left\",\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"32515d84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"3f5753f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"21982cfb\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"72\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-pruning-and-shaping-bushes-.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Cutting Leaf\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"404dc561\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"58d29b54\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"73\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/backyard-garden.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Home Garden\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"3bff1dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"3c24185a\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"64\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Build Backyard\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_image_height_responsive_tablet\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b3cb58d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_image\":{\"id\":\"74\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-moving-aerial-photo-Z8KDGJ9.jpg\"},\"background_overlay_color\":\"#0000007D\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]}},\"elements\":[{\"id\":\"79705206\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"51c9a732\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73b2fe0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"What They Says About Us\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4876e632\",\"elType\":\"widget\",\"settings\":{\"sg_layout_testimonial_choose\":\"style-2\",\"sg_testimonials_image_size_imagesize_size\":\"medium\",\"sg_testimonials_list\":[{\"sg_testimonials_list_client_avatar\":{\"id\":\"75\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/3SUMAU.jpg\"},\"_id\":\"6e9b2e1\",\"sg_testimonials_list_client_name\":\"Regan Traynor\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"76\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/CASCKD8.jpg\"},\"sg_testimonials_list_client_name\":\"Maisha Dunn\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"d069a43\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"77\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/MKLVKTE.jpg\"},\"sg_testimonials_list_client_name\":\"Reis Leonard\",\"sg_testimonials_list_designation\":\"Businessman\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"05c24f5\"}],\"st_wrapper_alignment_responsive\":\"left\",\"st_client_name_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_description_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_client_name_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_client_designation_normal_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_client_designation_normal_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=d343bdf\",\"st_rating_color_responsive\":\"\",\"st_client_name_normal_color_responsive\":\"\",\"st_quote_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_layout_background_background_color\":\"\"},\"st_layout_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_layout_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_wrapper_fix_height\":\"\",\"sg_setting_autoplay\":\"yes\",\"sg_setting_autoplay_pause\":\"\",\"sg_setting_arrow\":\"\",\"sg_setting_arrow_position\":\"middle-edge\",\"sg_setting_dots\":\"\",\"sg_setting_quote\":\"yes\",\"sg_setting_rating\":\"\",\"st_layout_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_layout_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_slide_show_responsive\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"sg_setting_quote_icon\":{\"value\":\"jki jki-quote-light\",\"library\":\"jkiticon\"},\"sg_layout_image_position\":\"below\",\"st_layout_background_background_background\":\"classic\",\"st_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position\":\"\",\"st_quote_override_position_top_responsive\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"st_quote_override_position_left_responsive\":{\"unit\":\"px\",\"size\":442,\"sizes\":[]},\"st_client_name_normal_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_quote_normal_font_size_responsive\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"st_client_image_margin_responsive\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_rating_font_size_responsive\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"st_rating_margin_right_responsive\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_setting_slide_show_responsive_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"st_wrapper_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position_top_responsive_tablet\":{\"unit\":\"px\",\"size\":249,\"sizes\":[]},\"st_quote_override_position_top_responsive_mobile\":{\"unit\":\"px\",\"size\":193,\"sizes\":[]},\"st_quote_override_position_left_responsive_tablet\":{\"unit\":\"px\",\"size\":265,\"sizes\":[]},\"st_quote_override_position_left_responsive_mobile\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]},\"st_quote_normal_font_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"st_description_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_normal_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64afd05f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"746d276b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30338dfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f950be4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ca735b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5d6ca3ad\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_title_hover_color_responsive\":\"globals\\/colors?id=secondary\",\"st_readmore_hover_color_responsive\":\"globals\\/colors?id=secondary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#646974\",\"st_excerpt_color_responsive\":\"#646974\",\"st_title_normal_color_responsive\":\"#272B36\",\"st_thumbnail_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_title_hover_color_responsive\":\"#FA8D25\",\"st_readmore_normal_color_responsive\":\"#FA8D25\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":false}],\"isInner\":false}]'),(392,24,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(393,83,'_menu_item_type','post_type'),(394,83,'_menu_item_menu_item_parent','0'),(395,83,'_menu_item_object_id','24'),(396,83,'_menu_item_object','page'),(397,83,'_menu_item_target',''),(398,83,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(399,83,'_menu_item_xfn',''),(400,83,'_menu_item_url',''),(403,84,'_menu_item_type','custom'),(404,84,'_menu_item_menu_item_parent','0'),(405,84,'_menu_item_object_id','84'),(406,84,'_menu_item_object','custom'),(407,84,'_menu_item_target',''),(408,84,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(409,84,'_menu_item_xfn',''),(410,84,'_menu_item_url','#'),(412,85,'_menu_item_type','custom'),(413,85,'_menu_item_menu_item_parent','0'),(414,85,'_menu_item_object_id','85'),(415,85,'_menu_item_object','custom'),(416,85,'_menu_item_target',''),(417,85,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(418,85,'_menu_item_xfn',''),(419,85,'_menu_item_url','#'),(421,86,'_menu_item_type','custom'),(422,86,'_menu_item_menu_item_parent','0'),(423,86,'_menu_item_object_id','86'),(424,86,'_menu_item_object','custom'),(425,86,'_menu_item_target',''),(426,86,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(427,86,'_menu_item_xfn',''),(428,86,'_menu_item_url','#'),(430,87,'_menu_item_type','custom'),(431,87,'_menu_item_menu_item_parent','0'),(432,87,'_menu_item_object_id','87'),(433,87,'_menu_item_object','custom'),(434,87,'_menu_item_target',''),(435,87,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(436,87,'_menu_item_xfn',''),(437,87,'_menu_item_url','#'),(446,89,'_wp_page_template','default'),(447,89,'_elementor_edit_mode','builder'),(448,89,'_elementor_template_type','wp-post'),(449,89,'_elementor_version','3.23.2'),(450,89,'_elementor_data','[{\"id\":\"25324c9a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#00160E\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_overlay_image\":{\"id\":\"51\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/green-lawn-on-ground-PT9KCVE.jpg\"}},\"elements\":[{\"id\":\"2ed3ced5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"cf27f42\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"gap\":\"no\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"36e45d2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":\"33.596\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"498deddc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"52\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/logo-footer.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"529be226\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod \",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=e8dc402\",\"typography_typography\":\"globals\\/typography?id=text\"},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6dfa1147\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Jl. Raya Kuta No.70, Kuta \",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"8cfc1eb\"},{\"text\":\"support@domain.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"01dad71\"},{\"text\":\"(+021) 176 993\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"e0e44de\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"text_color\":\"globals\\/colors?id=06a34e7\",\"icon_typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":\"1\"},{\"id\":\"4dc3ac3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":\"17.193\",\"_inline_size_mobile\":\"100\",\"_inline_size_tablet\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7772d55b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Other Pages\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=8966ad4\"},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41eea4c7\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Home\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8e5ccb4\"},{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"_id\":\"b2b06d7\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2a5846b\"},{\"text\":\"Project\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"23e9052\"},{\"text\":\"Contact\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcbb08b\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=accent\",\"text_color\":\"\",\"icon_color\":\"globals\\/colors?id=accent\",\"icon_typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":\"1\"},{\"id\":\"35cfcdfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":\"14.211\",\"_inline_size_mobile\":\"100\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"13522926\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick Links\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=8966ad4\"},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bc61709\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8e5ccb4\"},{\"text\":\"Term Of Service\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"_id\":\"b2b06d7\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Disclaimer\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcbb08b\"},{\"text\":\"Credits\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2a5846b\"},{\"text\":\"FAQ\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"76de45a\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=accent\",\"text_color\":\"\",\"icon_color\":\"globals\\/colors?id=accent\",\"icon_typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":\"1\"},{\"id\":\"3e19ab1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":\"35\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"2abe676b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=8966ad4\"},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f25bdf9\",\"elType\":\"widget\",\"settings\":{\"sg_form_email_placeholder\":\"Your Email Address\",\"sg_form_email_icon_enable\":\"\",\"sg_form_button_text\":\"Send\",\"sg_form_button_icon_enable\":\"\",\"sg_form_success_message\":\"Successfully listed this email\",\"st_input_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_input_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"20\",\"bottom\":\"16\",\"left\":\"20\",\"isLinked\":false},\"st_input_border_border_border\":\"solid\",\"st_input_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_input_margin_right_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_input_placeholder_color_responsive\":\"#B5B8C4\",\"st_button_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"10\",\"bottom\":\"21\",\"left\":\"10\",\"isLinked\":false},\"st_button_width_responsive\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_input_placeholder_color_responsive\":\"\",\"st_input_placeholder_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_input_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_input_color_responsive\":\"globals\\/colors?id=primary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"st_input_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_input_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_input_width_responsive_tablet\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"st_button_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_button_width_responsive_tablet\":{\"unit\":\"px\",\"size\":105,\"sizes\":[]},\"st_button_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"30\",\"bottom\":\"19\",\"left\":\"30\",\"isLinked\":false},\"st_button_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_width_responsive_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_input_width_responsive\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"st_input_width_responsive_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"st_button_hover_background_background_background\":\"classic\",\"st_input_background_background_background\":\"classic\",\"st_input_background_background_color\":\"#FFFFFF\",\"st_button_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_input_color_responsive\":\"#0B1B69\",\"st_button_normal_color_responsive\":\"#0B1B69\",\"st_button_normal_background_background_color\":\"#FFD027\"},\"elements\":[],\"widgetType\":\"jkit_mailchimp\"},{\"id\":\"2f02530a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Get the latest news & updates\\n\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"text_color\":\"globals\\/colors?id=e8dc402\",\"typography_typography\":\"globals\\/typography?id=text\"},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2579224c\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"jki jki-facebook-f\",\"library\":\"jkiticon\"},\"_id\":\"0fb8cc7\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"4be5bc7\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"147010a\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"df2ad14\"}],\"shape\":\"circle\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"hover_animation\":\"shrink\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=secondary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_secondary_color\":\"globals\\/colors?id=accent\",\"hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"4e4c8b50\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text\":\"Divider\",\"color\":\"#A0AABA2B\",\"gap\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5f48f734\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"#C2C2C2\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"gap\":\"no\"},\"elements\":[{\"id\":\"fe8e002\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"63e6eb20\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Landscape & Gardening Template Kit by Baliniz\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f882794\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"},{\"id\":\"427e430a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"42937d5b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Copyright \\u00a9 2021 All rights reserved.\",\"align\":\"right\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f882794\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(451,89,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(452,90,'_wp_page_template','default'),(453,90,'_elementor_edit_mode','builder'),(454,90,'_elementor_template_type','wp-post'),(455,90,'_elementor_version','3.23.2'),(456,90,'_elementor_data','[{\"id\":\"25324c9a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#00160E\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_overlay_image\":{\"id\":\"51\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/green-lawn-on-ground-PT9KCVE.jpg\"}},\"elements\":[{\"id\":\"2ed3ced5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"cf27f42\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"gap\":\"no\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"36e45d2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":\"33.596\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"498deddc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"52\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/logo-footer.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"529be226\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod \",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=e8dc402\",\"typography_typography\":\"globals\\/typography?id=text\"},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6dfa1147\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Jl. Raya Kuta No.70, Kuta \",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"8cfc1eb\"},{\"text\":\"support@domain.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"01dad71\"},{\"text\":\"(+021) 176 993\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"e0e44de\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"text_color\":\"globals\\/colors?id=06a34e7\",\"icon_typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":\"1\"},{\"id\":\"4dc3ac3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":\"17.193\",\"_inline_size_mobile\":\"100\",\"_inline_size_tablet\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7772d55b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Other Pages\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=8966ad4\"},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41eea4c7\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Home\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8e5ccb4\"},{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"_id\":\"b2b06d7\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2a5846b\"},{\"text\":\"Project\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"23e9052\"},{\"text\":\"Contact\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcbb08b\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=accent\",\"text_color\":\"\",\"icon_color\":\"globals\\/colors?id=accent\",\"icon_typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":\"1\"},{\"id\":\"35cfcdfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":\"14.211\",\"_inline_size_mobile\":\"100\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"13522926\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick Links\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=8966ad4\"},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bc61709\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8e5ccb4\"},{\"text\":\"Term Of Service\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"_id\":\"b2b06d7\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Disclaimer\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcbb08b\"},{\"text\":\"Credits\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2a5846b\"},{\"text\":\"FAQ\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"76de45a\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=accent\",\"text_color\":\"\",\"icon_color\":\"globals\\/colors?id=accent\",\"icon_typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":\"1\"},{\"id\":\"3e19ab1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":\"35\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"2abe676b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=8966ad4\"},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f25bdf9\",\"elType\":\"widget\",\"settings\":{\"sg_form_email_placeholder\":\"Your Email Address\",\"sg_form_email_icon_enable\":\"\",\"sg_form_button_text\":\"Send\",\"sg_form_button_icon_enable\":\"\",\"sg_form_success_message\":\"Successfully listed this email\",\"st_input_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_input_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"20\",\"bottom\":\"16\",\"left\":\"20\",\"isLinked\":false},\"st_input_border_border_border\":\"solid\",\"st_input_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_input_margin_right_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_input_placeholder_color_responsive\":\"#B5B8C4\",\"st_button_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"10\",\"bottom\":\"21\",\"left\":\"10\",\"isLinked\":false},\"st_button_width_responsive\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_input_placeholder_color_responsive\":\"\",\"st_input_placeholder_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_input_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_input_color_responsive\":\"globals\\/colors?id=primary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"st_input_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_input_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_input_width_responsive_tablet\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"st_button_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_button_width_responsive_tablet\":{\"unit\":\"px\",\"size\":105,\"sizes\":[]},\"st_button_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"30\",\"bottom\":\"19\",\"left\":\"30\",\"isLinked\":false},\"st_button_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_width_responsive_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_input_width_responsive\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"st_input_width_responsive_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"st_button_hover_background_background_background\":\"classic\",\"st_input_background_background_background\":\"classic\",\"st_input_background_background_color\":\"#FFFFFF\",\"st_button_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_input_color_responsive\":\"#0B1B69\",\"st_button_normal_color_responsive\":\"#0B1B69\",\"st_button_normal_background_background_color\":\"#FFD027\"},\"elements\":[],\"widgetType\":\"jkit_mailchimp\"},{\"id\":\"2f02530a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Get the latest news & updates\\n\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"text_color\":\"globals\\/colors?id=e8dc402\",\"typography_typography\":\"globals\\/typography?id=text\"},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2579224c\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"jki jki-facebook-f\",\"library\":\"jkiticon\"},\"_id\":\"0fb8cc7\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"4be5bc7\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"147010a\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"df2ad14\"}],\"shape\":\"circle\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"hover_animation\":\"shrink\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=secondary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_secondary_color\":\"globals\\/colors?id=accent\",\"hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"4e4c8b50\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text\":\"Divider\",\"color\":\"#A0AABA2B\",\"gap\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5f48f734\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"#C2C2C2\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"gap\":\"no\"},\"elements\":[{\"id\":\"fe8e002\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"63e6eb20\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Landscape & Gardening Template Kit by Baliniz\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f882794\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"},{\"id\":\"427e430a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"42937d5b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Copyright \\u00a9 2021 All rights reserved.\",\"align\":\"right\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f882794\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(457,90,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(458,91,'_wp_page_template','default'),(459,91,'_elementor_edit_mode','builder'),(460,91,'_elementor_template_type','wp-post'),(461,91,'_elementor_version','3.23.2'),(462,91,'_elementor_data','[{\"id\":\"25324c9a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#00160E\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_overlay_image\":{\"id\":\"51\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/green-lawn-on-ground-PT9KCVE.jpg\"}},\"elements\":[{\"id\":\"2ed3ced5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"cf27f42\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"gap\":\"no\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"36e45d2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":\"33.596\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"498deddc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"52\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/logo-footer.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"529be226\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod \",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=e8dc402\",\"typography_typography\":\"globals\\/typography?id=text\"},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6dfa1147\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"123 Wall St Miami, FL 12345\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"8cfc1eb\"},{\"text\":\"email@email.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"01dad71\",\"link\":{\"url\":\"mailto:email@email.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+1 505 555 5555\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"e0e44de\",\"link\":{\"url\":\"tel:+1 505 555 5555\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"text_color\":\"globals\\/colors?id=06a34e7\",\"icon_typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":\"1\"},{\"id\":\"4dc3ac3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":\"17.193\",\"_inline_size_mobile\":\"100\",\"_inline_size_tablet\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7772d55b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Other Pages\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=8966ad4\"},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41eea4c7\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Home\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8e5ccb4\"},{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"_id\":\"b2b06d7\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2a5846b\"},{\"text\":\"Project\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"23e9052\"},{\"text\":\"Contact\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcbb08b\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=accent\",\"text_color\":\"\",\"icon_color\":\"globals\\/colors?id=accent\",\"icon_typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":\"1\"},{\"id\":\"35cfcdfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":\"14.211\",\"_inline_size_mobile\":\"100\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"13522926\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick Links\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=8966ad4\"},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bc61709\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8e5ccb4\"},{\"text\":\"Term Of Service\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"_id\":\"b2b06d7\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Disclaimer\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcbb08b\"},{\"text\":\"Credits\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2a5846b\"},{\"text\":\"FAQ\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"76de45a\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=accent\",\"text_color\":\"\",\"icon_color\":\"globals\\/colors?id=accent\",\"icon_typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":\"1\"},{\"id\":\"3e19ab1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":\"35\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"2abe676b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=8966ad4\"},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f25bdf9\",\"elType\":\"widget\",\"settings\":{\"sg_form_email_placeholder\":\"Your Email Address\",\"sg_form_email_icon_enable\":\"\",\"sg_form_button_text\":\"Send\",\"sg_form_button_icon_enable\":\"\",\"sg_form_success_message\":\"Successfully listed this email\",\"st_input_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_input_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"20\",\"bottom\":\"16\",\"left\":\"20\",\"isLinked\":false},\"st_input_border_border_border\":\"solid\",\"st_input_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_input_margin_right_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_input_placeholder_color_responsive\":\"#B5B8C4\",\"st_button_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"10\",\"bottom\":\"21\",\"left\":\"10\",\"isLinked\":false},\"st_button_width_responsive\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_input_placeholder_color_responsive\":\"\",\"st_input_placeholder_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_input_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_input_color_responsive\":\"globals\\/colors?id=primary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"st_input_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_input_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_input_width_responsive_tablet\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"st_button_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_button_width_responsive_tablet\":{\"unit\":\"px\",\"size\":105,\"sizes\":[]},\"st_button_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"30\",\"bottom\":\"19\",\"left\":\"30\",\"isLinked\":false},\"st_button_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_width_responsive_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_input_width_responsive\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"st_input_width_responsive_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"st_button_hover_background_background_background\":\"classic\",\"st_input_background_background_background\":\"classic\",\"st_input_background_background_color\":\"#FFFFFF\",\"st_button_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_input_color_responsive\":\"#0B1B69\",\"st_button_normal_color_responsive\":\"#0B1B69\",\"st_button_normal_background_background_color\":\"#FFD027\"},\"elements\":[],\"widgetType\":\"jkit_mailchimp\"},{\"id\":\"2f02530a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Get the latest news & updates\\n\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"text_color\":\"globals\\/colors?id=e8dc402\",\"typography_typography\":\"globals\\/typography?id=text\"},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2579224c\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"jki jki-facebook-f\",\"library\":\"jkiticon\"},\"_id\":\"0fb8cc7\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"4be5bc7\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"147010a\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"df2ad14\"}],\"shape\":\"circle\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"hover_animation\":\"shrink\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=secondary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_secondary_color\":\"globals\\/colors?id=accent\",\"hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"4e4c8b50\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text\":\"Divider\",\"color\":\"#A0AABA2B\",\"gap\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5f48f734\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"#C2C2C2\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"gap\":\"no\"},\"elements\":[{\"id\":\"fe8e002\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"63e6eb20\",\"elType\":\"widget\",\"settings\":{\"editor\":\"

\\u00a9 2024 Prestige Luxury Cleanings LLC. All rights reserved.<\\/p>\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f882794\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"},{\"id\":\"427e430a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"42937d5b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"

Design and development by Design Funnel.<\\/p>\",\"align\":\"right\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f882794\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(463,91,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(464,92,'_wp_page_template','default'),(465,92,'_elementor_edit_mode','builder'),(466,92,'_elementor_template_type','wp-post'),(467,92,'_elementor_version','3.23.2'),(468,92,'_elementor_data','[{\"id\":\"25324c9a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#00160E\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_overlay_image\":{\"id\":\"51\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/green-lawn-on-ground-PT9KCVE.jpg\"}},\"elements\":[{\"id\":\"2ed3ced5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"cf27f42\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"gap\":\"no\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"36e45d2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":\"33.596\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"498deddc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"52\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/logo-footer.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"529be226\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod \",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=e8dc402\",\"typography_typography\":\"globals\\/typography?id=text\"},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6dfa1147\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"123 Wall St Miami, FL 12345\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"8cfc1eb\"},{\"text\":\"email@email.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"01dad71\",\"link\":{\"url\":\"mailto:email@email.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+1 505 555 5555\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"e0e44de\",\"link\":{\"url\":\"tel:+1 505 555 5555\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"text_color\":\"globals\\/colors?id=06a34e7\",\"icon_typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":\"1\"},{\"id\":\"4dc3ac3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":\"17.193\",\"_inline_size_mobile\":\"100\",\"_inline_size_tablet\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7772d55b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Other Pages\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=8966ad4\"},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41eea4c7\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Home\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8e5ccb4\"},{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"_id\":\"b2b06d7\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2a5846b\"},{\"text\":\"Project\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"23e9052\"},{\"text\":\"Contact\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcbb08b\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=accent\",\"text_color\":\"\",\"icon_color\":\"globals\\/colors?id=accent\",\"icon_typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":\"1\"},{\"id\":\"35cfcdfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":\"14.211\",\"_inline_size_mobile\":\"100\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"13522926\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick Links\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=8966ad4\"},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bc61709\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8e5ccb4\"},{\"text\":\"Term Of Service\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"_id\":\"b2b06d7\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Disclaimer\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcbb08b\"},{\"text\":\"Credits\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2a5846b\"},{\"text\":\"FAQ\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"76de45a\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=accent\",\"text_color\":\"\",\"icon_color\":\"globals\\/colors?id=accent\",\"icon_typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":\"1\"},{\"id\":\"3e19ab1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":\"35\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"2abe676b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=8966ad4\"},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f25bdf9\",\"elType\":\"widget\",\"settings\":{\"sg_form_email_placeholder\":\"Your Email Address\",\"sg_form_email_icon_enable\":\"\",\"sg_form_button_text\":\"Send\",\"sg_form_button_icon_enable\":\"\",\"sg_form_success_message\":\"Successfully listed this email\",\"st_input_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_input_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"20\",\"bottom\":\"16\",\"left\":\"20\",\"isLinked\":false},\"st_input_border_border_border\":\"solid\",\"st_input_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_input_margin_right_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_input_placeholder_color_responsive\":\"#B5B8C4\",\"st_button_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"10\",\"bottom\":\"21\",\"left\":\"10\",\"isLinked\":false},\"st_button_width_responsive\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_input_placeholder_color_responsive\":\"\",\"st_input_placeholder_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_input_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_input_color_responsive\":\"globals\\/colors?id=primary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"st_input_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_input_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_input_width_responsive_tablet\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"st_button_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_button_width_responsive_tablet\":{\"unit\":\"px\",\"size\":105,\"sizes\":[]},\"st_button_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"30\",\"bottom\":\"19\",\"left\":\"30\",\"isLinked\":false},\"st_button_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_width_responsive_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_input_width_responsive\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"st_input_width_responsive_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"st_button_hover_background_background_background\":\"classic\",\"st_input_background_background_background\":\"classic\",\"st_input_background_background_color\":\"#FFFFFF\",\"st_button_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_input_color_responsive\":\"#0B1B69\",\"st_button_normal_color_responsive\":\"#0B1B69\",\"st_button_normal_background_background_color\":\"#FFD027\"},\"elements\":[],\"widgetType\":\"jkit_mailchimp\"},{\"id\":\"2f02530a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Get the latest news & updates\\n\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"text_color\":\"globals\\/colors?id=e8dc402\",\"typography_typography\":\"globals\\/typography?id=text\"},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2579224c\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"jki jki-facebook-f\",\"library\":\"jkiticon\"},\"_id\":\"0fb8cc7\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"4be5bc7\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"147010a\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"df2ad14\"}],\"shape\":\"circle\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"hover_animation\":\"shrink\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=secondary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_secondary_color\":\"globals\\/colors?id=accent\",\"hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"4e4c8b50\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text\":\"Divider\",\"color\":\"#A0AABA2B\",\"gap\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5f48f734\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"#C2C2C2\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"gap\":\"no\"},\"elements\":[{\"id\":\"fe8e002\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"63e6eb20\",\"elType\":\"widget\",\"settings\":{\"editor\":\"

\\u00a9 2024 Prestige Luxury Cleanings LLC. All rights reserved.<\\/p>\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f882794\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"},{\"id\":\"427e430a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"42937d5b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"

Design and development by Design Funnel.<\\/p>\",\"align\":\"right\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f882794\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(469,92,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(470,93,'_wp_page_template','default'),(471,93,'_elementor_edit_mode','builder'),(472,93,'_elementor_template_type','wp-post'),(473,93,'_elementor_version','3.23.2'),(474,93,'_elementor_data','[{\"id\":\"25324c9a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#00160E\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_overlay_image\":{\"id\":\"51\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/green-lawn-on-ground-PT9KCVE.jpg\"}},\"elements\":[{\"id\":\"2ed3ced5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"cf27f42\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"gap\":\"no\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"36e45d2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":\"33.596\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"498deddc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"52\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/logo-footer.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"529be226\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod \",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=e8dc402\",\"typography_typography\":\"globals\\/typography?id=text\"},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6dfa1147\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"123 Wall St Miami, FL 12345\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"8cfc1eb\"},{\"text\":\"email@email.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"01dad71\",\"link\":{\"url\":\"mailto:email@email.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+1 505 555 5555\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"e0e44de\",\"link\":{\"url\":\"tel:+1 505 555 5555\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"text_color\":\"globals\\/colors?id=06a34e7\",\"icon_typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":\"1\"},{\"id\":\"4dc3ac3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":\"17.193\",\"_inline_size_mobile\":\"100\",\"_inline_size_tablet\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7772d55b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Other Pages\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=8966ad4\"},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41eea4c7\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Home\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8e5ccb4\"},{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"_id\":\"b2b06d7\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2a5846b\"},{\"text\":\"Project\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"23e9052\"},{\"text\":\"Contact\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcbb08b\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=accent\",\"text_color\":\"\",\"icon_color\":\"globals\\/colors?id=accent\",\"icon_typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":\"1\"},{\"id\":\"35cfcdfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":\"14.211\",\"_inline_size_mobile\":\"100\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"13522926\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick Links\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=8966ad4\"},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bc61709\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8e5ccb4\"},{\"text\":\"Term Of Service\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"_id\":\"b2b06d7\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Disclaimer\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcbb08b\"},{\"text\":\"Credits\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2a5846b\"},{\"text\":\"FAQ\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"76de45a\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=accent\",\"text_color\":\"\",\"icon_color\":\"globals\\/colors?id=accent\",\"icon_typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":\"1\"},{\"id\":\"3e19ab1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":\"35\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"2abe676b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=8966ad4\"},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f25bdf9\",\"elType\":\"widget\",\"settings\":{\"sg_form_email_placeholder\":\"Your Email Address\",\"sg_form_email_icon_enable\":\"\",\"sg_form_button_text\":\"Send\",\"sg_form_button_icon_enable\":\"\",\"sg_form_success_message\":\"Successfully listed this email\",\"st_input_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_input_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"20\",\"bottom\":\"16\",\"left\":\"20\",\"isLinked\":false},\"st_input_border_border_border\":\"solid\",\"st_input_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_input_margin_right_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_input_placeholder_color_responsive\":\"#B5B8C4\",\"st_button_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"10\",\"bottom\":\"21\",\"left\":\"10\",\"isLinked\":false},\"st_button_width_responsive\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_input_placeholder_color_responsive\":\"\",\"st_input_placeholder_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_input_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_input_color_responsive\":\"globals\\/colors?id=primary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"st_input_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_input_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_input_width_responsive_tablet\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"st_button_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_button_width_responsive_tablet\":{\"unit\":\"px\",\"size\":105,\"sizes\":[]},\"st_button_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"30\",\"bottom\":\"19\",\"left\":\"30\",\"isLinked\":false},\"st_button_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_width_responsive_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_input_width_responsive\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"st_input_width_responsive_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"st_button_hover_background_background_background\":\"classic\",\"st_input_background_background_background\":\"classic\",\"st_input_background_background_color\":\"#FFFFFF\",\"st_button_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_input_color_responsive\":\"#0B1B69\",\"st_button_normal_color_responsive\":\"#0B1B69\",\"st_button_normal_background_background_color\":\"#FFD027\"},\"elements\":[],\"widgetType\":\"jkit_mailchimp\"},{\"id\":\"2f02530a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Get the latest news & updates\\n\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"text_color\":\"globals\\/colors?id=e8dc402\",\"typography_typography\":\"globals\\/typography?id=text\"},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2579224c\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"jki jki-facebook-f\",\"library\":\"jkiticon\"},\"_id\":\"0fb8cc7\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"4be5bc7\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"147010a\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"df2ad14\"}],\"shape\":\"circle\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"hover_animation\":\"shrink\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=secondary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_secondary_color\":\"globals\\/colors?id=accent\",\"hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"4e4c8b50\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text\":\"Divider\",\"color\":\"#A0AABA2B\",\"gap\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5f48f734\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"#C2C2C2\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"gap\":\"no\"},\"elements\":[{\"id\":\"fe8e002\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"63e6eb20\",\"elType\":\"widget\",\"settings\":{\"editor\":\"

\\u00a9 2024 Prestige Luxury Cleanings LLC. All rights reserved.<\\/p>\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f882794\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"},{\"id\":\"427e430a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"42937d5b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"

Design and development by Design Funnel.<\\/p>\",\"align\":\"right\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f882794\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(475,93,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(476,94,'_wp_page_template','default'),(477,94,'_elementor_edit_mode','builder'),(478,94,'_elementor_template_type','wp-post'),(479,94,'_elementor_version','3.23.2'),(480,94,'_elementor_data','[{\"id\":\"25324c9a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#00160E\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_overlay_image\":{\"id\":\"51\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/green-lawn-on-ground-PT9KCVE.jpg\"}},\"elements\":[{\"id\":\"2ed3ced5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"cf27f42\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"gap\":\"no\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"36e45d2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":\"33.596\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"498deddc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"52\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/logo-footer.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"529be226\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod \",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=e8dc402\",\"typography_typography\":\"globals\\/typography?id=text\"},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6dfa1147\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"123 Wall St Miami, FL 12345\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"8cfc1eb\"},{\"text\":\"email@email.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"01dad71\",\"link\":{\"url\":\"mailto:email@email.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+1 505 555 5555\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"e0e44de\",\"link\":{\"url\":\"tel:+1 505 555 5555\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"text_color\":\"globals\\/colors?id=06a34e7\",\"icon_typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":\"1\"},{\"id\":\"4dc3ac3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":\"17.193\",\"_inline_size_mobile\":\"100\",\"_inline_size_tablet\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7772d55b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Other Pages\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=8966ad4\"},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41eea4c7\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Home\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8e5ccb4\"},{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"_id\":\"b2b06d7\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2a5846b\"},{\"text\":\"Contact\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcbb08b\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=accent\",\"text_color\":\"\",\"icon_color\":\"globals\\/colors?id=accent\",\"icon_typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":\"1\"},{\"id\":\"35cfcdfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":\"14.211\",\"_inline_size_mobile\":\"100\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"13522926\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick Links\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=8966ad4\"},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bc61709\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8e5ccb4\"},{\"text\":\"Term Of Service\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"_id\":\"b2b06d7\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"FAQ\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"76de45a\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=accent\",\"text_color\":\"\",\"icon_color\":\"globals\\/colors?id=accent\",\"icon_typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":\"1\"},{\"id\":\"3e19ab1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":\"35\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"2abe676b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=8966ad4\"},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f25bdf9\",\"elType\":\"widget\",\"settings\":{\"sg_form_email_placeholder\":\"Your Email Address\",\"sg_form_email_icon_enable\":\"\",\"sg_form_button_text\":\"Send\",\"sg_form_button_icon_enable\":\"\",\"sg_form_success_message\":\"Successfully listed this email\",\"st_input_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_input_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"20\",\"bottom\":\"16\",\"left\":\"20\",\"isLinked\":false},\"st_input_border_border_border\":\"solid\",\"st_input_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_input_margin_right_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_input_placeholder_color_responsive\":\"#B5B8C4\",\"st_button_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"10\",\"bottom\":\"21\",\"left\":\"10\",\"isLinked\":false},\"st_button_width_responsive\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_input_placeholder_color_responsive\":\"\",\"st_input_placeholder_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_input_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_input_color_responsive\":\"globals\\/colors?id=primary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"st_input_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_input_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_input_width_responsive_tablet\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"st_button_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_button_width_responsive_tablet\":{\"unit\":\"px\",\"size\":105,\"sizes\":[]},\"st_button_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"30\",\"bottom\":\"19\",\"left\":\"30\",\"isLinked\":false},\"st_button_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_width_responsive_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_input_width_responsive\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"st_input_width_responsive_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"st_button_hover_background_background_background\":\"classic\",\"st_input_background_background_background\":\"classic\",\"st_input_background_background_color\":\"#FFFFFF\",\"st_button_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_input_color_responsive\":\"#0B1B69\",\"st_button_normal_color_responsive\":\"#0B1B69\",\"st_button_normal_background_background_color\":\"#FFD027\"},\"elements\":[],\"widgetType\":\"jkit_mailchimp\"},{\"id\":\"2f02530a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Get the latest news & updates\\n\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"text_color\":\"globals\\/colors?id=e8dc402\",\"typography_typography\":\"globals\\/typography?id=text\"},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2579224c\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"jki jki-facebook-f\",\"library\":\"jkiticon\"},\"_id\":\"0fb8cc7\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"4be5bc7\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"147010a\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"df2ad14\"}],\"shape\":\"circle\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"hover_animation\":\"shrink\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=secondary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_secondary_color\":\"globals\\/colors?id=accent\",\"hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"4e4c8b50\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text\":\"Divider\",\"color\":\"#A0AABA2B\",\"gap\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5f48f734\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"#C2C2C2\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"gap\":\"no\"},\"elements\":[{\"id\":\"fe8e002\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"63e6eb20\",\"elType\":\"widget\",\"settings\":{\"editor\":\"

\\u00a9 2024 Prestige Luxury Cleanings LLC. All rights reserved.<\\/p>\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f882794\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"},{\"id\":\"427e430a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"42937d5b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"

Design and development by Design Funnel.<\\/p>\",\"align\":\"right\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f882794\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(481,94,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(482,95,'_wp_page_template','default'),(483,95,'_elementor_edit_mode','builder'),(484,95,'_elementor_template_type','wp-post'),(485,95,'_elementor_version','3.23.2'),(486,95,'_elementor_data','[{\"id\":\"25324c9a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#00160E\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_overlay_image\":{\"id\":\"51\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/green-lawn-on-ground-PT9KCVE.jpg\"}},\"elements\":[{\"id\":\"2ed3ced5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"cf27f42\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"gap\":\"no\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"36e45d2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":\"33.596\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"498deddc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"52\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/logo-footer.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"529be226\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod \",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=e8dc402\",\"typography_typography\":\"globals\\/typography?id=text\"},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6dfa1147\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"123 Wall St Miami, FL 12345\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"8cfc1eb\"},{\"text\":\"email@email.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"01dad71\",\"link\":{\"url\":\"mailto:email@email.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+1 505 555 5555\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"e0e44de\",\"link\":{\"url\":\"tel:+1 505 555 5555\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"text_color\":\"globals\\/colors?id=06a34e7\",\"icon_typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":\"1\"},{\"id\":\"4dc3ac3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":\"17.193\",\"_inline_size_mobile\":\"100\",\"_inline_size_tablet\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7772d55b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Other Pages\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=8966ad4\"},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41eea4c7\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Home\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8e5ccb4\"},{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"_id\":\"b2b06d7\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2a5846b\"},{\"text\":\"Contact\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcbb08b\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=accent\",\"text_color\":\"\",\"icon_color\":\"globals\\/colors?id=accent\",\"icon_typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":\"1\"},{\"id\":\"35cfcdfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":\"14.211\",\"_inline_size_mobile\":\"100\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"13522926\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick Links\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=8966ad4\"},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bc61709\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8e5ccb4\"},{\"text\":\"Term Of Service\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"_id\":\"b2b06d7\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"FAQ\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"76de45a\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=accent\",\"text_color\":\"\",\"icon_color\":\"globals\\/colors?id=accent\",\"icon_typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":\"1\"},{\"id\":\"3e19ab1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":\"35\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"2abe676b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=8966ad4\"},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f25bdf9\",\"elType\":\"widget\",\"settings\":{\"sg_form_email_placeholder\":\"Your Email Address\",\"sg_form_email_icon_enable\":\"\",\"sg_form_button_text\":\"Send\",\"sg_form_button_icon_enable\":\"\",\"sg_form_success_message\":\"Successfully listed this email\",\"st_input_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_input_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"20\",\"bottom\":\"16\",\"left\":\"20\",\"isLinked\":false},\"st_input_border_border_border\":\"solid\",\"st_input_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_input_margin_right_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_input_placeholder_color_responsive\":\"#B5B8C4\",\"st_button_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"10\",\"bottom\":\"21\",\"left\":\"10\",\"isLinked\":false},\"st_button_width_responsive\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_input_placeholder_color_responsive\":\"\",\"st_input_placeholder_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_input_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_input_color_responsive\":\"globals\\/colors?id=primary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"st_input_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_input_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_input_width_responsive_tablet\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"st_button_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_button_width_responsive_tablet\":{\"unit\":\"px\",\"size\":105,\"sizes\":[]},\"st_button_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"30\",\"bottom\":\"19\",\"left\":\"30\",\"isLinked\":false},\"st_button_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_width_responsive_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_input_width_responsive\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"st_input_width_responsive_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"st_button_hover_background_background_background\":\"classic\",\"st_input_background_background_background\":\"classic\",\"st_input_background_background_color\":\"#FFFFFF\",\"st_button_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_input_color_responsive\":\"#0B1B69\",\"st_button_normal_color_responsive\":\"#0B1B69\",\"st_button_normal_background_background_color\":\"#FFD027\"},\"elements\":[],\"widgetType\":\"jkit_mailchimp\"},{\"id\":\"2f02530a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Get the latest news & updates\\n\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"text_color\":\"globals\\/colors?id=e8dc402\",\"typography_typography\":\"globals\\/typography?id=text\"},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2579224c\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"jki jki-facebook-f\",\"library\":\"jkiticon\"},\"_id\":\"0fb8cc7\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"4be5bc7\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"147010a\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"df2ad14\"}],\"shape\":\"circle\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"hover_animation\":\"shrink\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=secondary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_secondary_color\":\"globals\\/colors?id=accent\",\"hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"4e4c8b50\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text\":\"Divider\",\"color\":\"#A0AABA2B\",\"gap\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5f48f734\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"#C2C2C2\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"gap\":\"no\"},\"elements\":[{\"id\":\"fe8e002\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"63e6eb20\",\"elType\":\"widget\",\"settings\":{\"editor\":\"

\\u00a9 2024 Prestige Luxury Cleanings LLC. All rights reserved.<\\/p>\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f882794\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"},{\"id\":\"427e430a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"42937d5b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"

Design and development by Design Funnel.<\\/p>\",\"align\":\"right\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f882794\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(487,95,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(488,96,'_wp_page_template','default'),(489,96,'_elementor_edit_mode','builder'),(490,96,'_elementor_template_type','wp-post'),(491,96,'_elementor_version','3.23.2'),(492,96,'_elementor_data','[{\"id\":\"25324c9a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#00160E\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_overlay_image\":{\"id\":\"51\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/green-lawn-on-ground-PT9KCVE.jpg\"}},\"elements\":[{\"id\":\"2ed3ced5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"cf27f42\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"gap\":\"no\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"36e45d2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":\"33.596\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"498deddc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"52\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/logo-footer.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"529be226\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod \",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=e8dc402\",\"typography_typography\":\"globals\\/typography?id=text\"},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6dfa1147\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"123 Wall St Miami, FL 12345\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"8cfc1eb\"},{\"text\":\"email@email.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"01dad71\",\"link\":{\"url\":\"mailto:email@email.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+1 505 555 5555\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"e0e44de\",\"link\":{\"url\":\"tel:+1 505 555 5555\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"text_color\":\"globals\\/colors?id=06a34e7\",\"icon_typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":\"1\"},{\"id\":\"4dc3ac3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":\"17.193\",\"_inline_size_mobile\":\"100\",\"_inline_size_tablet\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7772d55b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Other Pages\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=8966ad4\"},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41eea4c7\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Home\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8e5ccb4\"},{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"_id\":\"b2b06d7\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2a5846b\"},{\"text\":\"Contact\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcbb08b\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=accent\",\"text_color\":\"\",\"icon_color\":\"globals\\/colors?id=accent\",\"icon_typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":\"1\"},{\"id\":\"35cfcdfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":\"14.211\",\"_inline_size_mobile\":\"100\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"13522926\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick Links\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=8966ad4\"},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bc61709\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8e5ccb4\"},{\"text\":\"Term Of Service\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"_id\":\"b2b06d7\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"FAQ\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"76de45a\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=accent\",\"text_color\":\"\",\"icon_color\":\"globals\\/colors?id=accent\",\"icon_typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":\"1\"},{\"id\":\"3e19ab1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":\"35\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"2abe676b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=8966ad4\"},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f25bdf9\",\"elType\":\"widget\",\"settings\":{\"sg_form_email_placeholder\":\"Your Email Address\",\"sg_form_email_icon_enable\":\"\",\"sg_form_button_text\":\"Send\",\"sg_form_button_icon_enable\":\"\",\"sg_form_success_message\":\"Successfully listed this email\",\"st_input_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_input_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"20\",\"bottom\":\"16\",\"left\":\"20\",\"isLinked\":false},\"st_input_border_border_border\":\"solid\",\"st_input_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_input_margin_right_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_input_placeholder_color_responsive\":\"#B5B8C4\",\"st_button_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"10\",\"bottom\":\"21\",\"left\":\"10\",\"isLinked\":false},\"st_button_width_responsive\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_input_placeholder_color_responsive\":\"\",\"st_input_placeholder_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_input_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_input_color_responsive\":\"globals\\/colors?id=primary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"st_input_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_input_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_input_width_responsive_tablet\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"st_button_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_button_width_responsive_tablet\":{\"unit\":\"px\",\"size\":105,\"sizes\":[]},\"st_button_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"30\",\"bottom\":\"19\",\"left\":\"30\",\"isLinked\":false},\"st_button_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_width_responsive_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_input_width_responsive\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"st_input_width_responsive_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"st_button_hover_background_background_background\":\"classic\",\"st_input_background_background_background\":\"classic\",\"st_input_background_background_color\":\"#FFFFFF\",\"st_button_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_input_color_responsive\":\"#0B1B69\",\"st_button_normal_color_responsive\":\"#0B1B69\",\"st_button_normal_background_background_color\":\"#FFD027\"},\"elements\":[],\"widgetType\":\"jkit_mailchimp\"},{\"id\":\"2f02530a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Get the latest news & updates\\n\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"text_color\":\"globals\\/colors?id=e8dc402\",\"typography_typography\":\"globals\\/typography?id=text\"},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2579224c\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"jki jki-facebook-f\",\"library\":\"jkiticon\"},\"_id\":\"0fb8cc7\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"4be5bc7\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"147010a\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"df2ad14\"}],\"shape\":\"circle\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"hover_animation\":\"shrink\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=secondary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_secondary_color\":\"globals\\/colors?id=accent\",\"hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"4e4c8b50\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text\":\"Divider\",\"color\":\"#A0AABA2B\",\"gap\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5f48f734\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"#C2C2C2\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"gap\":\"no\"},\"elements\":[{\"id\":\"fe8e002\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"63e6eb20\",\"elType\":\"widget\",\"settings\":{\"editor\":\"

\\u00a9 2024 Prestige Luxury Cleanings LLC. All rights reserved.<\\/p>\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f882794\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"},{\"id\":\"427e430a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"42937d5b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"

Design and development by Design Funnel.<\\/p>\",\"align\":\"right\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f882794\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(493,96,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(494,97,'_wp_page_template','default'),(495,97,'_elementor_edit_mode','builder'),(496,97,'_elementor_template_type','wp-post'),(497,97,'_elementor_version','3.23.2'),(498,97,'_elementor_data','[{\"id\":\"25324c9a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#00160E\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_overlay_image\":{\"id\":\"51\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/green-lawn-on-ground-PT9KCVE.jpg\"}},\"elements\":[{\"id\":\"2ed3ced5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"cf27f42\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"gap\":\"no\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"36e45d2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":\"33.596\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"498deddc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"52\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/logo-footer.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"529be226\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod \",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=e8dc402\",\"typography_typography\":\"globals\\/typography?id=text\"},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6dfa1147\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"123 Wall St Miami, FL 12345\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"8cfc1eb\"},{\"text\":\"email@email.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"01dad71\",\"link\":{\"url\":\"mailto:email@email.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+1 505 555 5555\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"e0e44de\",\"link\":{\"url\":\"tel:+1 505 555 5555\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"text_color\":\"globals\\/colors?id=06a34e7\",\"icon_typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":\"1\"},{\"id\":\"4dc3ac3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":\"17.193\",\"_inline_size_mobile\":\"100\",\"_inline_size_tablet\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7772d55b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Other Pages\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=8966ad4\"},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41eea4c7\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Home\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8e5ccb4\"},{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"_id\":\"b2b06d7\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2a5846b\"},{\"text\":\"Contact\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcbb08b\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=accent\",\"text_color\":\"\",\"icon_color\":\"globals\\/colors?id=accent\",\"icon_typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":\"1\"},{\"id\":\"35cfcdfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":\"14.211\",\"_inline_size_mobile\":\"100\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"13522926\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick Links\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=8966ad4\"},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bc61709\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8e5ccb4\"},{\"text\":\"Term Of Service\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"_id\":\"b2b06d7\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"FAQ\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"76de45a\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=accent\",\"text_color\":\"\",\"icon_color\":\"globals\\/colors?id=accent\",\"icon_typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":\"1\"},{\"id\":\"3e19ab1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":\"35\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"2abe676b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=8966ad4\"},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f25bdf9\",\"elType\":\"widget\",\"settings\":{\"sg_form_email_placeholder\":\"Your Email Address\",\"sg_form_email_icon_enable\":\"\",\"sg_form_button_text\":\"Send\",\"sg_form_button_icon_enable\":\"\",\"sg_form_success_message\":\"Successfully listed this email\",\"st_input_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_input_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"20\",\"bottom\":\"16\",\"left\":\"20\",\"isLinked\":false},\"st_input_border_border_border\":\"solid\",\"st_input_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_input_margin_right_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_input_placeholder_color_responsive\":\"#B5B8C4\",\"st_button_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"10\",\"bottom\":\"21\",\"left\":\"10\",\"isLinked\":false},\"st_button_width_responsive\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_input_placeholder_color_responsive\":\"\",\"st_input_placeholder_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_input_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_input_color_responsive\":\"globals\\/colors?id=primary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"st_input_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_input_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_input_width_responsive_tablet\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"st_button_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_button_width_responsive_tablet\":{\"unit\":\"px\",\"size\":105,\"sizes\":[]},\"st_button_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"30\",\"bottom\":\"19\",\"left\":\"30\",\"isLinked\":false},\"st_button_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_width_responsive_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_input_width_responsive\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"st_input_width_responsive_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"st_button_hover_background_background_background\":\"classic\",\"st_input_background_background_background\":\"classic\",\"st_input_background_background_color\":\"#FFFFFF\",\"st_button_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_input_color_responsive\":\"#0B1B69\",\"st_button_normal_color_responsive\":\"#0B1B69\",\"st_button_normal_background_background_color\":\"#FFD027\"},\"elements\":[],\"widgetType\":\"jkit_mailchimp\"},{\"id\":\"2f02530a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Get the latest news & updates\\n\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"text_color\":\"globals\\/colors?id=e8dc402\",\"typography_typography\":\"globals\\/typography?id=text\"},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2579224c\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"jki jki-facebook-f\",\"library\":\"jkiticon\"},\"_id\":\"0fb8cc7\"},{\"social_icon\":{\"value\":\"fab fa-x-twitter\",\"library\":\"fa-brands\"},\"_id\":\"4be5bc7\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"147010a\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"df2ad14\"}],\"shape\":\"circle\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"hover_animation\":\"shrink\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=secondary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_secondary_color\":\"globals\\/colors?id=accent\",\"hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"4e4c8b50\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text\":\"Divider\",\"color\":\"#A0AABA2B\",\"gap\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5f48f734\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"#C2C2C2\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"gap\":\"no\"},\"elements\":[{\"id\":\"fe8e002\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"63e6eb20\",\"elType\":\"widget\",\"settings\":{\"editor\":\"

\\u00a9 2024 Prestige Luxury Cleanings LLC. All rights reserved.<\\/p>\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f882794\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"},{\"id\":\"427e430a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"42937d5b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"

Design and development by Design Funnel.<\\/p>\",\"align\":\"right\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f882794\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(499,97,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(501,98,'_wp_page_template','default'),(502,98,'_elementor_edit_mode','builder'),(503,98,'_elementor_template_type','wp-post'),(504,98,'_elementor_version','3.23.2'),(505,98,'_elementor_data','[{\"id\":\"65d61e79\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"z_index\":2,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"49c5f53f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"z_index_tablet\":5},\"elements\":[{\"id\":\"7fd427a5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"a5ad795\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.315000000000001278976924368180334568023681640625,\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"4b6500b7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"43\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/logo-UDS48Q.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2eb94bb5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":58.89099999999999823785401531495153903961181640625,\"align\":\"flex-end\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":70,\"hide_mobile\":\"hidden-phone\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18bb12d6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-map-marker1-light\",\"library\":\"jkiticon\"},\"title_text\":\"Location\",\"description_text\":\"Jl. Raya Kuta No.70, Kuta \",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#EAEAEA\",\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"description_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"globals\\/typography?id=8966ad4\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"view\":\"framed\",\"icon_padding\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#006943\",\"title_color\":\"#00160E\",\"description_color\":\"#7F7F7F\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"294dea9a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-phone-call-line\",\"library\":\"jkiticon\"},\"title_text\":\"Call Us\",\"description_text\":\"(+021) 176 993\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"description_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"globals\\/typography?id=8966ad4\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"view\":\"framed\",\"icon_padding\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"5ef5f227\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":21.452000000000001733724275254644453525543212890625,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"234dd6d2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"align\":\"right\",\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=558fe58\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"hover_animation\":\"float\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1ed2d9f1\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":3,\"blur\":15,\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.06)\"},\"background_background\":\"classic\",\"z_index\":1,\"jet_sticky_section_sticky\":\"yes\",\"jet_sticky_section_sticky_z_index\":\"10\",\"jet_sticky_section_sticky_background_background\":\"classic\",\"jet_sticky_section_sticky_background_color\":\"#FFFFFF\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"z_index_tablet\":4,\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a58714b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80.3490000000000037516656448133289813995361328125,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":20,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"14c9c516\",\"elType\":\"widget\",\"settings\":{\"sg_menu_choose\":\"menu\",\"sg_mobile_menu_logo\":{\"id\":\"43\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/logo-UDS48Q.png\"},\"sg_mobile_menu_logo_size_imagesize_size\":\"full\",\"sg_mobile_menu_icon\":{\"value\":\"jki jki-bars-solid\",\"library\":\"jkiticon\"},\"st_menu_wrapper_height_responsive\":{\"unit\":\"px\",\"size\":74,\"sizes\":[]},\"st_menu_wrapper_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"},\"st_submenu_item_indicator_margin_responsive\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_submenu_panel_padding_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_panel_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_background_background_background\":\"classic\",\"st_submenu_panel_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_position_responsive_tablet\":\"left\",\"st_hamburger_menu_icon_background_background_background\":\"classic\",\"st_hamburger_menu_icon_background_background_color\":\"#FFFFFF00\",\"st_hamburger_menu_icon_border_border_border\":\"solid\",\"st_hamburger_menu_icon_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_hamburger_menu_close_background_background_background\":\"classic\",\"st_hamburger_menu_close_border_border_border\":\"solid\",\"st_hamburger_menu_close_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"st_menu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_menu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_color_responsive\":\"\",\"st_submenu_panel_background_background_color\":\"\",\"st_submenu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_submenu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_wrapper_mobile_color_tablet_responsive_tablet\":\"\",\"st_menu_item_text_normal_color_responsive_tablet\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_item_text_active_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_submenu_item_indicator_color_responsive_tablet\":\"\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_icon_color_hover_responsive_tablet\":\"\",\"st_hamburger_menu_close_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_close_color_hover_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_wrapper_background_background_color\":\"\",\"st_hamburger_menu_close_background_background_color\":\"globals\\/colors?id=secondary\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_border_border_color\":\"\",\"st_hamburger_menu_close_background_hover_background_color\":\"globals\\/colors?id=accent\"},\"st_submenu_panel_box_shadow_box_shadow_box_shadow_type\":\"yes\",\"st_submenu_panel_box_shadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_submenu_item_indicator_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_submenu_item_indicator_border_border_border\":\"solid\",\"st_submenu_item_indicator_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_submenu_panel_background_background_color\":\"#FFFFFF\",\"st_hamburger_menu_icon_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_icon_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_close_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_hamburger_menu_close_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_hamburger_menu_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_menu_item_text_normal_color_responsive_tablet\":\"#6EC1E4\",\"st_menu_item_text_hover_color_responsive_tablet\":\"#54595F\",\"st_menu_item_text_active_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_close_background_background_color\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"#54595F\",\"st_hamburger_menu_position_responsive_mobile\":\"left\",\"st_hamburger_menu_close_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_hamburger_menu_close_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"st_mobile_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"st_menu_item_text_hover_color_responsive\":\"#54595F\",\"st_menu_item_text_active_color_responsive\":\"#54595F\",\"st_mobile_menu_object_fit_responsive_tablet\":\"cover\",\"st_mobile_menu_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_hamburger_menu_close_background_hover_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_nav_menu\"}],\"isInner\":\"\"},{\"id\":\"5e047152\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":19.650999999999999801048033987171947956085205078125,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":30,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":80},\"elements\":[{\"id\":\"63d6d3ed\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"jki jki-facebook-f\",\"library\":\"jkiticon\"},\"_id\":\"7c320e0\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"3c2d02e\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"03c5d88\"},{\"_id\":\"6498fcd\",\"social_icon\":{\"value\":\"jki jki-instagram-1-light\",\"library\":\"jkiticon\"}}],\"shape\":\"circle\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=secondary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"icon_secondary_color\":\"globals\\/colors?id=accent\"},\"align_tablet\":\"right\",\"hover_animation\":\"shrink\",\"hover_primary_color\":\"#006943\",\"hover_secondary_color\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(506,98,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(508,99,'_wp_page_template','default'),(509,99,'_elementor_edit_mode','builder'),(510,99,'_elementor_template_type','wp-post'),(511,99,'_elementor_version','3.23.2'),(512,99,'_elementor_data','[{\"id\":\"65d61e79\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"z_index\":2,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"49c5f53f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"z_index_tablet\":5},\"elements\":[{\"id\":\"7fd427a5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"a5ad795\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.315000000000001278976924368180334568023681640625,\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"4b6500b7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"43\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/logo-UDS48Q.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2eb94bb5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":58.89099999999999823785401531495153903961181640625,\"align\":\"flex-end\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":70,\"hide_mobile\":\"hidden-phone\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18bb12d6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-map-marker1-light\",\"library\":\"jkiticon\"},\"title_text\":\"Location\",\"description_text\":\"Jl. Raya Kuta No.70, Kuta \",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#EAEAEA\",\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"description_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"globals\\/typography?id=8966ad4\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"view\":\"framed\",\"icon_padding\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#006943\",\"title_color\":\"#00160E\",\"description_color\":\"#7F7F7F\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"294dea9a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-phone-call-line\",\"library\":\"jkiticon\"},\"title_text\":\"Call Us\",\"description_text\":\"(+021) 176 993\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"description_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"globals\\/typography?id=8966ad4\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"view\":\"framed\",\"icon_padding\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"5ef5f227\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":21.452000000000001733724275254644453525543212890625,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"234dd6d2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"align\":\"right\",\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=558fe58\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"hover_animation\":\"float\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1ed2d9f1\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":3,\"blur\":15,\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.06)\"},\"background_background\":\"classic\",\"z_index\":1,\"jet_sticky_section_sticky\":\"yes\",\"jet_sticky_section_sticky_z_index\":\"10\",\"jet_sticky_section_sticky_background_background\":\"classic\",\"jet_sticky_section_sticky_background_color\":\"#FFFFFF\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"z_index_tablet\":4,\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a58714b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80.3490000000000037516656448133289813995361328125,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":20,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"14c9c516\",\"elType\":\"widget\",\"settings\":{\"sg_menu_choose\":\"menu\",\"sg_mobile_menu_logo\":{\"id\":\"43\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/logo-UDS48Q.png\"},\"sg_mobile_menu_logo_size_imagesize_size\":\"full\",\"sg_mobile_menu_icon\":{\"value\":\"jki jki-bars-solid\",\"library\":\"jkiticon\"},\"st_menu_wrapper_height_responsive\":{\"unit\":\"px\",\"size\":74,\"sizes\":[]},\"st_menu_wrapper_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"},\"st_submenu_item_indicator_margin_responsive\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_submenu_panel_padding_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_panel_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_background_background_background\":\"classic\",\"st_submenu_panel_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_position_responsive_tablet\":\"left\",\"st_hamburger_menu_icon_background_background_background\":\"classic\",\"st_hamburger_menu_icon_background_background_color\":\"#FFFFFF00\",\"st_hamburger_menu_icon_border_border_border\":\"solid\",\"st_hamburger_menu_icon_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_hamburger_menu_close_background_background_background\":\"classic\",\"st_hamburger_menu_close_border_border_border\":\"solid\",\"st_hamburger_menu_close_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"st_menu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_menu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_color_responsive\":\"\",\"st_submenu_panel_background_background_color\":\"\",\"st_submenu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_submenu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_wrapper_mobile_color_tablet_responsive_tablet\":\"\",\"st_menu_item_text_normal_color_responsive_tablet\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_item_text_active_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_submenu_item_indicator_color_responsive_tablet\":\"\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_icon_color_hover_responsive_tablet\":\"\",\"st_hamburger_menu_close_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_close_color_hover_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_wrapper_background_background_color\":\"\",\"st_hamburger_menu_close_background_background_color\":\"globals\\/colors?id=secondary\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_border_border_color\":\"\",\"st_hamburger_menu_close_background_hover_background_color\":\"globals\\/colors?id=accent\"},\"st_submenu_panel_box_shadow_box_shadow_box_shadow_type\":\"yes\",\"st_submenu_panel_box_shadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_submenu_item_indicator_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_submenu_item_indicator_border_border_border\":\"solid\",\"st_submenu_item_indicator_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_submenu_panel_background_background_color\":\"#FFFFFF\",\"st_hamburger_menu_icon_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_icon_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_close_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_hamburger_menu_close_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_hamburger_menu_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_menu_item_text_normal_color_responsive_tablet\":\"#6EC1E4\",\"st_menu_item_text_hover_color_responsive_tablet\":\"#54595F\",\"st_menu_item_text_active_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_close_background_background_color\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"#54595F\",\"st_hamburger_menu_position_responsive_mobile\":\"left\",\"st_hamburger_menu_close_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_hamburger_menu_close_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"st_mobile_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"st_menu_item_text_hover_color_responsive\":\"#54595F\",\"st_menu_item_text_active_color_responsive\":\"#54595F\",\"st_mobile_menu_object_fit_responsive_tablet\":\"cover\",\"st_mobile_menu_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_hamburger_menu_close_background_hover_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_nav_menu\"}],\"isInner\":\"\"},{\"id\":\"5e047152\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":19.650999999999999801048033987171947956085205078125,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":30,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":80},\"elements\":[{\"id\":\"63d6d3ed\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"jki jki-facebook-f\",\"library\":\"jkiticon\"},\"_id\":\"7c320e0\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"3c2d02e\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"03c5d88\"},{\"_id\":\"6498fcd\",\"social_icon\":{\"value\":\"jki jki-instagram-1-light\",\"library\":\"jkiticon\"}}],\"shape\":\"circle\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=secondary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"icon_secondary_color\":\"globals\\/colors?id=accent\"},\"align_tablet\":\"right\",\"hover_animation\":\"shrink\",\"hover_primary_color\":\"#006943\",\"hover_secondary_color\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(513,99,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(515,100,'_wp_page_template','default'),(516,100,'_elementor_edit_mode','builder'),(517,100,'_elementor_template_type','wp-post'),(518,100,'_elementor_version','3.23.2'); INSERT INTO `victorq_postmeta` VALUES (519,100,'_elementor_data','[{\"id\":\"65d61e79\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"z_index\":2,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"49c5f53f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"z_index_tablet\":5},\"elements\":[{\"id\":\"7fd427a5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"a5ad795\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.315000000000001278976924368180334568023681640625,\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"4b6500b7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"43\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/logo-UDS48Q.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2eb94bb5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":58.89099999999999823785401531495153903961181640625,\"align\":\"flex-end\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":70,\"hide_mobile\":\"hidden-phone\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18bb12d6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-map-marker1-light\",\"library\":\"jkiticon\"},\"title_text\":\"Location\",\"description_text\":\"123 Wall St\\nMiami, FL 12345\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#EAEAEA\",\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"description_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"globals\\/typography?id=8966ad4\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"view\":\"framed\",\"icon_padding\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#006943\",\"title_color\":\"#00160E\",\"description_color\":\"#7F7F7F\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"294dea9a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-phone-call-line\",\"library\":\"jkiticon\"},\"title_text\":\"Call Us\",\"description_text\":\"+1 505 555 5555\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"description_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"globals\\/typography?id=8966ad4\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"view\":\"framed\",\"icon_padding\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"5ef5f227\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":21.452000000000001733724275254644453525543212890625,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"234dd6d2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"align\":\"right\",\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=558fe58\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"hover_animation\":\"float\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1ed2d9f1\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":3,\"blur\":15,\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.06)\"},\"background_background\":\"classic\",\"z_index\":1,\"jet_sticky_section_sticky\":\"yes\",\"jet_sticky_section_sticky_z_index\":\"10\",\"jet_sticky_section_sticky_background_background\":\"classic\",\"jet_sticky_section_sticky_background_color\":\"#FFFFFF\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"z_index_tablet\":4,\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a58714b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80.3490000000000037516656448133289813995361328125,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":20,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"14c9c516\",\"elType\":\"widget\",\"settings\":{\"sg_menu_choose\":\"menu\",\"sg_mobile_menu_logo\":{\"id\":\"43\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/logo-UDS48Q.png\"},\"sg_mobile_menu_logo_size_imagesize_size\":\"full\",\"sg_mobile_menu_icon\":{\"value\":\"jki jki-bars-solid\",\"library\":\"jkiticon\"},\"st_menu_wrapper_height_responsive\":{\"unit\":\"px\",\"size\":74,\"sizes\":[]},\"st_menu_wrapper_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"},\"st_submenu_item_indicator_margin_responsive\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_submenu_panel_padding_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_panel_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_background_background_background\":\"classic\",\"st_submenu_panel_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_position_responsive_tablet\":\"left\",\"st_hamburger_menu_icon_background_background_background\":\"classic\",\"st_hamburger_menu_icon_background_background_color\":\"#FFFFFF00\",\"st_hamburger_menu_icon_border_border_border\":\"solid\",\"st_hamburger_menu_icon_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_hamburger_menu_close_background_background_background\":\"classic\",\"st_hamburger_menu_close_border_border_border\":\"solid\",\"st_hamburger_menu_close_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"st_menu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_menu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_color_responsive\":\"\",\"st_submenu_panel_background_background_color\":\"\",\"st_submenu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_submenu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_wrapper_mobile_color_tablet_responsive_tablet\":\"\",\"st_menu_item_text_normal_color_responsive_tablet\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_item_text_active_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_submenu_item_indicator_color_responsive_tablet\":\"\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_icon_color_hover_responsive_tablet\":\"\",\"st_hamburger_menu_close_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_close_color_hover_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_wrapper_background_background_color\":\"\",\"st_hamburger_menu_close_background_background_color\":\"globals\\/colors?id=secondary\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_border_border_color\":\"\",\"st_hamburger_menu_close_background_hover_background_color\":\"globals\\/colors?id=accent\"},\"st_submenu_panel_box_shadow_box_shadow_box_shadow_type\":\"yes\",\"st_submenu_panel_box_shadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_submenu_item_indicator_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_submenu_item_indicator_border_border_border\":\"solid\",\"st_submenu_item_indicator_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_submenu_panel_background_background_color\":\"#FFFFFF\",\"st_hamburger_menu_icon_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_icon_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_close_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_hamburger_menu_close_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_hamburger_menu_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_menu_item_text_normal_color_responsive_tablet\":\"#6EC1E4\",\"st_menu_item_text_hover_color_responsive_tablet\":\"#54595F\",\"st_menu_item_text_active_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_close_background_background_color\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"#54595F\",\"st_hamburger_menu_position_responsive_mobile\":\"left\",\"st_hamburger_menu_close_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_hamburger_menu_close_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"st_mobile_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"st_menu_item_text_hover_color_responsive\":\"#54595F\",\"st_menu_item_text_active_color_responsive\":\"#54595F\",\"st_mobile_menu_object_fit_responsive_tablet\":\"cover\",\"st_mobile_menu_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_hamburger_menu_close_background_hover_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_nav_menu\"}],\"isInner\":\"\"},{\"id\":\"5e047152\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":19.650999999999999801048033987171947956085205078125,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":30,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":80},\"elements\":[{\"id\":\"63d6d3ed\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"jki jki-facebook-f\",\"library\":\"jkiticon\"},\"_id\":\"7c320e0\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"3c2d02e\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"03c5d88\"},{\"_id\":\"6498fcd\",\"social_icon\":{\"value\":\"jki jki-instagram-1-light\",\"library\":\"jkiticon\"}}],\"shape\":\"circle\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=secondary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"icon_secondary_color\":\"globals\\/colors?id=accent\"},\"align_tablet\":\"right\",\"hover_animation\":\"shrink\",\"hover_primary_color\":\"#006943\",\"hover_secondary_color\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(520,100,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(522,101,'_wp_page_template','default'),(523,101,'_elementor_edit_mode','builder'),(524,101,'_elementor_template_type','wp-post'),(525,101,'_elementor_version','3.23.2'),(526,101,'_elementor_data','[{\"id\":\"65d61e79\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"z_index\":2,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"49c5f53f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"z_index_tablet\":5},\"elements\":[{\"id\":\"7fd427a5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"a5ad795\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.315000000000001278976924368180334568023681640625,\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"4b6500b7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"43\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/logo-UDS48Q.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2eb94bb5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":58.89099999999999823785401531495153903961181640625,\"align\":\"flex-end\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":70,\"hide_mobile\":\"hidden-phone\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18bb12d6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-map-marker1-light\",\"library\":\"jkiticon\"},\"title_text\":\"Location\",\"description_text\":\"123 Wall St\\nMiami, FL 12345\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#EAEAEA\",\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"description_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"globals\\/typography?id=8966ad4\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"view\":\"framed\",\"icon_padding\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#006943\",\"title_color\":\"#00160E\",\"description_color\":\"#7F7F7F\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"294dea9a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-phone-call-line\",\"library\":\"jkiticon\"},\"title_text\":\"Call Us\",\"description_text\":\"+1 505 555 5555\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"description_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"globals\\/typography?id=8966ad4\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"view\":\"framed\",\"icon_padding\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"5ef5f227\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":21.452000000000001733724275254644453525543212890625,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"234dd6d2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"align\":\"right\",\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=558fe58\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"hover_animation\":\"float\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1ed2d9f1\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":3,\"blur\":15,\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.06)\"},\"background_background\":\"classic\",\"z_index\":1,\"jet_sticky_section_sticky\":\"yes\",\"jet_sticky_section_sticky_z_index\":\"10\",\"jet_sticky_section_sticky_background_background\":\"classic\",\"jet_sticky_section_sticky_background_color\":\"#FFFFFF\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"z_index_tablet\":4,\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a58714b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80.3490000000000037516656448133289813995361328125,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":20,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"14c9c516\",\"elType\":\"widget\",\"settings\":{\"sg_menu_choose\":\"menu\",\"sg_mobile_menu_logo\":{\"id\":\"43\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/logo-UDS48Q.png\"},\"sg_mobile_menu_logo_size_imagesize_size\":\"full\",\"sg_mobile_menu_icon\":{\"value\":\"jki jki-bars-solid\",\"library\":\"jkiticon\"},\"st_menu_wrapper_height_responsive\":{\"unit\":\"px\",\"size\":74,\"sizes\":[]},\"st_menu_wrapper_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"},\"st_submenu_item_indicator_margin_responsive\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_submenu_panel_padding_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_panel_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_background_background_background\":\"classic\",\"st_submenu_panel_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_position_responsive_tablet\":\"left\",\"st_hamburger_menu_icon_background_background_background\":\"classic\",\"st_hamburger_menu_icon_background_background_color\":\"#FFFFFF00\",\"st_hamburger_menu_icon_border_border_border\":\"solid\",\"st_hamburger_menu_icon_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_hamburger_menu_close_background_background_background\":\"classic\",\"st_hamburger_menu_close_border_border_border\":\"solid\",\"st_hamburger_menu_close_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"st_menu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_menu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_color_responsive\":\"\",\"st_submenu_panel_background_background_color\":\"\",\"st_submenu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_submenu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_wrapper_mobile_color_tablet_responsive_tablet\":\"\",\"st_menu_item_text_normal_color_responsive_tablet\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_item_text_active_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_submenu_item_indicator_color_responsive_tablet\":\"\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_icon_color_hover_responsive_tablet\":\"\",\"st_hamburger_menu_close_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_close_color_hover_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_wrapper_background_background_color\":\"\",\"st_hamburger_menu_close_background_background_color\":\"globals\\/colors?id=secondary\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_border_border_color\":\"\",\"st_hamburger_menu_close_background_hover_background_color\":\"globals\\/colors?id=accent\"},\"st_submenu_panel_box_shadow_box_shadow_box_shadow_type\":\"yes\",\"st_submenu_panel_box_shadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_submenu_item_indicator_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_submenu_item_indicator_border_border_border\":\"solid\",\"st_submenu_item_indicator_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_submenu_panel_background_background_color\":\"#FFFFFF\",\"st_hamburger_menu_icon_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_icon_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_close_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_hamburger_menu_close_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_hamburger_menu_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_menu_item_text_normal_color_responsive_tablet\":\"#6EC1E4\",\"st_menu_item_text_hover_color_responsive_tablet\":\"#54595F\",\"st_menu_item_text_active_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_close_background_background_color\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"#54595F\",\"st_hamburger_menu_position_responsive_mobile\":\"left\",\"st_hamburger_menu_close_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_hamburger_menu_close_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"st_mobile_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"st_menu_item_text_hover_color_responsive\":\"#54595F\",\"st_menu_item_text_active_color_responsive\":\"#54595F\",\"st_mobile_menu_object_fit_responsive_tablet\":\"cover\",\"st_mobile_menu_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_hamburger_menu_close_background_hover_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_nav_menu\"}],\"isInner\":\"\"},{\"id\":\"5e047152\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":19.650999999999999801048033987171947956085205078125,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":30,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":80},\"elements\":[{\"id\":\"63d6d3ed\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"jki jki-facebook-f\",\"library\":\"jkiticon\"},\"_id\":\"7c320e0\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"3c2d02e\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"03c5d88\"},{\"_id\":\"6498fcd\",\"social_icon\":{\"value\":\"jki jki-instagram-1-light\",\"library\":\"jkiticon\"}}],\"shape\":\"circle\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=secondary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"icon_secondary_color\":\"globals\\/colors?id=accent\"},\"align_tablet\":\"right\",\"hover_animation\":\"shrink\",\"hover_primary_color\":\"#006943\",\"hover_secondary_color\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(527,101,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(528,102,'_wp_page_template','default'),(529,102,'_elementor_edit_mode','builder'),(530,102,'_elementor_template_type','wp-post'),(531,102,'_elementor_version','3.23.2'),(532,102,'_elementor_data','[{\"id\":\"65d61e79\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"z_index\":2,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"49c5f53f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"z_index_tablet\":5},\"elements\":[{\"id\":\"7fd427a5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"a5ad795\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.315000000000001278976924368180334568023681640625,\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"4b6500b7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"43\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/logo-UDS48Q.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2eb94bb5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":58.89099999999999823785401531495153903961181640625,\"align\":\"flex-end\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":70,\"hide_mobile\":\"hidden-phone\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18bb12d6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-map-marker1-light\",\"library\":\"jkiticon\"},\"title_text\":\"Location\",\"description_text\":\"123 Wall St\\nMiami, FL 12345\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#EAEAEA\",\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"description_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"globals\\/typography?id=8966ad4\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"view\":\"framed\",\"icon_padding\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#006943\",\"title_color\":\"#00160E\",\"description_color\":\"#7F7F7F\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"294dea9a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-phone-call-line\",\"library\":\"jkiticon\"},\"title_text\":\"Call Us\",\"description_text\":\"+1 505 555 5555\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"description_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"globals\\/typography?id=8966ad4\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"view\":\"framed\",\"icon_padding\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"5ef5f227\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":21.452000000000001733724275254644453525543212890625,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"234dd6d2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"align\":\"right\",\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=558fe58\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"hover_animation\":\"float\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1ed2d9f1\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":3,\"blur\":15,\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.06)\"},\"background_background\":\"classic\",\"z_index\":1,\"jet_sticky_section_sticky\":\"yes\",\"jet_sticky_section_sticky_z_index\":\"10\",\"jet_sticky_section_sticky_background_background\":\"classic\",\"jet_sticky_section_sticky_background_color\":\"#FFFFFF\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"z_index_tablet\":4,\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a58714b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80.3490000000000037516656448133289813995361328125,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":20,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"14c9c516\",\"elType\":\"widget\",\"settings\":{\"sg_menu_choose\":\"menu\",\"sg_mobile_menu_logo\":{\"id\":\"43\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/logo-UDS48Q.png\"},\"sg_mobile_menu_logo_size_imagesize_size\":\"full\",\"sg_mobile_menu_icon\":{\"value\":\"jki jki-bars-solid\",\"library\":\"jkiticon\"},\"st_menu_wrapper_height_responsive\":{\"unit\":\"px\",\"size\":74,\"sizes\":[]},\"st_menu_wrapper_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"},\"st_submenu_item_indicator_margin_responsive\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_submenu_panel_padding_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_panel_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_background_background_background\":\"classic\",\"st_submenu_panel_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_position_responsive_tablet\":\"left\",\"st_hamburger_menu_icon_background_background_background\":\"classic\",\"st_hamburger_menu_icon_background_background_color\":\"#FFFFFF00\",\"st_hamburger_menu_icon_border_border_border\":\"solid\",\"st_hamburger_menu_icon_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_hamburger_menu_close_background_background_background\":\"classic\",\"st_hamburger_menu_close_border_border_border\":\"solid\",\"st_hamburger_menu_close_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"st_menu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_menu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_color_responsive\":\"\",\"st_submenu_panel_background_background_color\":\"\",\"st_submenu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_submenu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_wrapper_mobile_color_tablet_responsive_tablet\":\"\",\"st_menu_item_text_normal_color_responsive_tablet\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_item_text_active_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_submenu_item_indicator_color_responsive_tablet\":\"\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_icon_color_hover_responsive_tablet\":\"\",\"st_hamburger_menu_close_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_close_color_hover_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_wrapper_background_background_color\":\"\",\"st_hamburger_menu_close_background_background_color\":\"globals\\/colors?id=secondary\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_border_border_color\":\"\",\"st_hamburger_menu_close_background_hover_background_color\":\"globals\\/colors?id=accent\"},\"st_submenu_panel_box_shadow_box_shadow_box_shadow_type\":\"yes\",\"st_submenu_panel_box_shadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_submenu_item_indicator_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_submenu_item_indicator_border_border_border\":\"solid\",\"st_submenu_item_indicator_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_submenu_panel_background_background_color\":\"#FFFFFF\",\"st_hamburger_menu_icon_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_icon_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_close_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_hamburger_menu_close_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_hamburger_menu_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_menu_item_text_normal_color_responsive_tablet\":\"#6EC1E4\",\"st_menu_item_text_hover_color_responsive_tablet\":\"#54595F\",\"st_menu_item_text_active_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_close_background_background_color\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"#54595F\",\"st_hamburger_menu_position_responsive_mobile\":\"left\",\"st_hamburger_menu_close_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_hamburger_menu_close_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"st_mobile_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"st_menu_item_text_hover_color_responsive\":\"#54595F\",\"st_menu_item_text_active_color_responsive\":\"#54595F\",\"st_mobile_menu_object_fit_responsive_tablet\":\"cover\",\"st_mobile_menu_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_hamburger_menu_close_background_hover_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_nav_menu\"}],\"isInner\":\"\"},{\"id\":\"5e047152\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":19.650999999999999801048033987171947956085205078125,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":30,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":80},\"elements\":[{\"id\":\"63d6d3ed\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"jki jki-facebook-f\",\"library\":\"jkiticon\"},\"_id\":\"7c320e0\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"3c2d02e\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"03c5d88\"},{\"_id\":\"6498fcd\",\"social_icon\":{\"value\":\"jki jki-instagram-1-light\",\"library\":\"jkiticon\"}}],\"shape\":\"circle\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=secondary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"icon_secondary_color\":\"globals\\/colors?id=accent\"},\"align_tablet\":\"right\",\"hover_animation\":\"shrink\",\"hover_primary_color\":\"#006943\",\"hover_secondary_color\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(533,102,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(534,103,'_wp_page_template','default'),(535,103,'_elementor_edit_mode','builder'),(536,103,'_elementor_template_type','wp-post'),(537,103,'_elementor_version','3.23.2'),(538,103,'_elementor_data','[{\"id\":\"65d61e79\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"z_index\":2,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"49c5f53f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"z_index_tablet\":5},\"elements\":[{\"id\":\"7fd427a5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"a5ad795\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.315000000000001278976924368180334568023681640625,\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"4b6500b7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"43\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/logo-UDS48Q.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2eb94bb5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":58.89099999999999823785401531495153903961181640625,\"align\":\"flex-end\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":70,\"hide_mobile\":\"hidden-phone\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18bb12d6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-map-marker1-light\",\"library\":\"jkiticon\"},\"title_text\":\"Location\",\"description_text\":\"123 Wall St\\nMiami, FL 12345\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#EAEAEA\",\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"description_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"globals\\/typography?id=8966ad4\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"view\":\"framed\",\"icon_padding\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#006943\",\"title_color\":\"#00160E\",\"description_color\":\"#7F7F7F\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"294dea9a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-phone-call-line\",\"library\":\"jkiticon\"},\"title_text\":\"Call Us\",\"description_text\":\"+1 505 555 5555\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"description_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"globals\\/typography?id=8966ad4\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"view\":\"framed\",\"icon_padding\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"5ef5f227\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":21.452000000000001733724275254644453525543212890625,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"234dd6d2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"align\":\"right\",\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=558fe58\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"hover_animation\":\"float\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1ed2d9f1\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":3,\"blur\":15,\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.06)\"},\"background_background\":\"classic\",\"z_index\":1,\"jet_sticky_section_sticky\":\"yes\",\"jet_sticky_section_sticky_z_index\":\"10\",\"jet_sticky_section_sticky_background_background\":\"classic\",\"jet_sticky_section_sticky_background_color\":\"#FFFFFF\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"z_index_tablet\":4,\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a58714b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80.3490000000000037516656448133289813995361328125,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":20,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"14c9c516\",\"elType\":\"widget\",\"settings\":{\"sg_menu_choose\":\"menu\",\"sg_mobile_menu_logo\":{\"id\":\"43\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/logo-UDS48Q.png\"},\"sg_mobile_menu_logo_size_imagesize_size\":\"full\",\"sg_mobile_menu_icon\":{\"value\":\"jki jki-bars-solid\",\"library\":\"jkiticon\"},\"st_menu_wrapper_height_responsive\":{\"unit\":\"px\",\"size\":74,\"sizes\":[]},\"st_menu_wrapper_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"},\"st_submenu_item_indicator_margin_responsive\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_submenu_panel_padding_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_panel_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_background_background_background\":\"classic\",\"st_submenu_panel_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_position_responsive_tablet\":\"left\",\"st_hamburger_menu_icon_background_background_background\":\"classic\",\"st_hamburger_menu_icon_background_background_color\":\"#FFFFFF00\",\"st_hamburger_menu_icon_border_border_border\":\"solid\",\"st_hamburger_menu_icon_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_hamburger_menu_close_background_background_background\":\"classic\",\"st_hamburger_menu_close_border_border_border\":\"solid\",\"st_hamburger_menu_close_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"st_menu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_menu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_color_responsive\":\"\",\"st_submenu_panel_background_background_color\":\"\",\"st_submenu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_submenu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_wrapper_mobile_color_tablet_responsive_tablet\":\"\",\"st_menu_item_text_normal_color_responsive_tablet\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_item_text_active_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_submenu_item_indicator_color_responsive_tablet\":\"\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_icon_color_hover_responsive_tablet\":\"\",\"st_hamburger_menu_close_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_close_color_hover_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_wrapper_background_background_color\":\"\",\"st_hamburger_menu_close_background_background_color\":\"globals\\/colors?id=secondary\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_border_border_color\":\"\",\"st_hamburger_menu_close_background_hover_background_color\":\"globals\\/colors?id=accent\"},\"st_submenu_panel_box_shadow_box_shadow_box_shadow_type\":\"yes\",\"st_submenu_panel_box_shadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_submenu_item_indicator_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_submenu_item_indicator_border_border_border\":\"solid\",\"st_submenu_item_indicator_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_submenu_panel_background_background_color\":\"#FFFFFF\",\"st_hamburger_menu_icon_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_icon_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_close_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_hamburger_menu_close_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_hamburger_menu_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_menu_item_text_normal_color_responsive_tablet\":\"#6EC1E4\",\"st_menu_item_text_hover_color_responsive_tablet\":\"#54595F\",\"st_menu_item_text_active_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_close_background_background_color\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"#54595F\",\"st_hamburger_menu_position_responsive_mobile\":\"left\",\"st_hamburger_menu_close_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_hamburger_menu_close_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"st_mobile_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"st_menu_item_text_hover_color_responsive\":\"#54595F\",\"st_menu_item_text_active_color_responsive\":\"#54595F\",\"st_mobile_menu_object_fit_responsive_tablet\":\"cover\",\"st_mobile_menu_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_hamburger_menu_close_background_hover_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_nav_menu\"}],\"isInner\":\"\"},{\"id\":\"5e047152\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":19.650999999999999801048033987171947956085205078125,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":30,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":80},\"elements\":[{\"id\":\"976c2f8\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"jki jki-facebook-f\",\"library\":\"jkiticon\"},\"_id\":\"0fb8cc7\"},{\"social_icon\":{\"value\":\"fab fa-x-twitter\",\"library\":\"fa-brands\"},\"_id\":\"4be5bc7\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"147010a\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"df2ad14\"}],\"shape\":\"circle\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"hover_animation\":\"shrink\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=secondary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_secondary_color\":\"globals\\/colors?id=accent\",\"hover_primary_color\":\"globals\\/colors?id=accent\"},\"align_tablet\":\"right\",\"hover_primary_color\":\"#006943\",\"hover_secondary_color\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(539,103,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(540,104,'_elementor_edit_mode','builder'),(541,104,'_elementor_template_type','wp-page'),(542,104,'_elementor_version','3.23.2'),(543,104,'_wp_page_template','default'),(544,104,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(545,104,'_elementor_data','[{\"id\":\"35495243\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"Eldery male gardener using scissors for bushes\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"160\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0,\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_size_tablet\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"top center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00160E\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b\":\"#00000054\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_slideshow_gallery\":[{\"id\":\"58\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-with-hedge-trimmer-e1635892441479.jpg\"},{\"id\":\"59\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/professional-gardener-at-work-XU82AHW.jpg\"},{\"id\":\"60\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-buying-new-plantsP4VGX5F.jpg\"},{\"id\":\"61\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/garden-decorative-trees-trimming-by-professional-gardener-e1635864777836.jpg\"}]},\"elements\":[{\"id\":\"739a26d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":65,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=06a34e7\"}},\"elements\":[{\"id\":\"132d1a8e\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Complete For All\",\"sg_title_focused\":\" Landscape \",\"sg_title_after\":\" Service And Maintenance\",\"sg_title_html_tag\":\"h1\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=primary\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"7c49583a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"635cb25b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"23cf340e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37.85499999999999687361196265555918216705322265625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":48,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"1c4c950d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"typography_typography\":\"globals\\/typography?id=0a50947\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4768b6f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":62.14500000000000312638803734444081783294677734375,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"flex-start\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":52,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"34c0badb\",\"elType\":\"widget\",\"settings\":{\"sg_video_button_title\":\"Play Video\",\"sg_video_button_icon\":{\"value\":\"jki jki-play-button-light\",\"library\":\"jkiticon\"},\"sg_video_url\":\"https:\\/\\/www.youtube.com\\/watch?v=MLpWrANjFbI\",\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_width_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_line_height_responsive\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#FFD402\",\"st_button_normal_glow_color_responsive\":\"#00694361\",\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"_element_width\":\"auto\",\"__globals__\":{\"st_button_normal_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=accent\",\"st_border_normal_border_border_color\":\"\",\"st_button_hover_text_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_glow_color_responsive\":\"\"},\"st_button_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_button_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_width_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_line_height_responsive_mobile\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"st_border_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_border_normal_border_border_color\":\"#FFD027\",\"st_button_line_height_responsive_tablet\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"st_button_normal_background_background_color\":\"#006943\",\"st_button_hover_text_color_responsive\":\"#006943\",\"st_button_hover_background_background_color\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_video_button\"},{\"id\":\"232ec8da\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Intro\",\"align\":\"right\",\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"typography_typography\":\"globals\\/typography?id=0a50947\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49b348ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"edc2dbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.00200000000000244426701101474463939666748046875,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e2246bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Greenco\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"139cc45f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Landscaping And Garden Care Services\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dc78e71\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"597dc67d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"26cf3840\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b19bda0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"62\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-and-his-flowers.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"980\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a46c929\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c4d8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Public Liability Insurance\",\"_id\":\"a978734\"},{\"text\":\"Environmentally Friendly\",\"_id\":\"1cd10a1\"},{\"text\":\"On Time, Every Time\",\"_id\":\"c6767db\"},{\"text\":\"Beautiful Garden Designs\",\"_id\":\"d4743f4\"},{\"text\":\"Modern Machinery And Tool\",\"_id\":\"535c17d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"398321ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=558fe58\",\"background_color\":\"globals\\/colors?id=accent\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4c7c15d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.9129999999999967030817060731351375579833984375,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5683e90d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"63\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-topiary-job.jpg\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"860\",\"height\":\"980\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b6190b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"64\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden.jpg\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"-59\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"250636f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"713aa588\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"51a71b71\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#00160E\",\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=primary\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=06a34e7\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"st_content_title_color_responsive\":\"#7F7F7F\",\"st_super_color_responsive\":\"#FFD402\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\",\"sg_setting_html_tag\":\"span\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5557874f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"73847855\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"65\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/garden-maintenance-performed-by-pro-gardener.jpg\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"b1058a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":224,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":478,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":325,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"69098afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"40\",\"bottom\":\"80\",\"left\":\"40\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"7cb7bf82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91cb5d9\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26358abf\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Have The Perfect Solution For Your Landscape Problems\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15a36cc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42c8d36c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7114454f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76f24ca8\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Variation Gardening\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"138cc39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28a78a06\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Expert Landscapers\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c5ac2bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38fdb183\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3ce0b95b\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Affordable Price\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-save-money-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4c80f133\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7451fb11\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Free Consultation\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-Consultancy-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e93f2c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"39a46e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6773b2a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"87647bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find The Best Service For Your Garden\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e2cc66e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30164d28\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e8639b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"66\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/men-watering-garden-plants.jpg\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fa92c14\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2c434fb3\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"5abe2e18\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33425b9f\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Watering Garden\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"472ed309\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"67cb221c\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37c1cce6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"67\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-finishing-garden.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b3e60ba\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3b291bbf\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"20b91942\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5649f719\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Lawn Maintenance\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6300b69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"256ddf68\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3735f0b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"58\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-with-hedge-trimmer-e1635892441479.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"741128a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3691562\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3c8a0e6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5eb1b3b9\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Cutting Leaf\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"25f37292\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"61c9ff8e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"790dd775\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"360\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"160\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"140\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"background_overlay_color_b\":\"#000414\",\"background_overlay_image\":{\"id\":\"69\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/a-gardener-watering-plants-in-a-flowerbed-2RT8DWL.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]}},\"elements\":[{\"id\":\"a2ed5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7e37f762\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Landscaping\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a092069\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d5099\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need Someone To Take Care Your Garden & Lawn?\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=07ee36d\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1198756c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"66521a56\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":20,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":4},\"elements\":[{\"id\":\"1a89d099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.5090000000000003410605131648480892181396484375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"id\":\"70\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/happy-gardeners-with-plants-and-lawn-mower.jpg\"},\"background_position\":\"initial\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"space-between\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_color\":\"#FFFFFF00\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":9,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"46b821c1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":219,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":183,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"449971a9\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Make Appointment & Take Care Your Garden\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=secondary\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=93191b3\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_content_title_color_hover_responsive\":\"#FFFFFF\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#FFFFFF\",\"st_icon_color_responsive\":\"#00E5CC\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#00E5CC\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":false},{\"id\":\"13747b6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.4909999999999996589394868351519107818603515625,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a13f42e\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"260***1635696832144\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fde8487\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"59883b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1617542a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Process\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29c7aa96\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Complete Every Step Carefully\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ced0d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d62463d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18cf7834\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"41f79872\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-consult-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consultation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65e1b761\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"span\",\"title_color\":\"#FFD402\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#006943\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12cdbf13\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4175d29\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-pencil_art-light\",\"library\":\"jkiticon\"},\"title_text\":\"Design Installation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2adabf01\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b628\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"569b3221\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consturction \",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"67d6b2e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6fff79c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53c9a76e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"title_text\":\"Finished Work\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"555aace0\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d57540b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"71\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardening-background-with-garden-tolls-A9BGNJU.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]}},\"elements\":[{\"id\":\"147831a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"5a53d120\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"20\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Years of Experience\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"488f4727\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"6b8f6eae\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"76666759\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f532f9e\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"2850\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Happy Customers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"265fd738\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5473dc22\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"64\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Expert Landscapers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b38731e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4945f2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"627cd42c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65e3182\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.56499999999999772626324556767940521240234375},\"elements\":[{\"id\":\"43108b53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Projects\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45328989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Project We Have Done\\n\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"f382082\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.49900000000000233058017329312860965728759765625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":40,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"55ecfb57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"67afcbfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.0330000000000012505552149377763271331787109375,\"_inline_size_tablet\":23,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4989aa04\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Projects\",\"align\":\"right\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=558fe58\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"left\",\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"32515d84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"3f5753f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"21982cfb\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"72\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-pruning-and-shaping-bushes-.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Cutting Leaf\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"404dc561\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"58d29b54\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"73\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/backyard-garden.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Home Garden\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"3bff1dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"3c24185a\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"64\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Build Backyard\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_image_height_responsive_tablet\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b3cb58d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_image\":{\"id\":\"74\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-moving-aerial-photo-Z8KDGJ9.jpg\"},\"background_overlay_color\":\"#0000007D\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]}},\"elements\":[{\"id\":\"79705206\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"51c9a732\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73b2fe0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"What They Says About Us\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4876e632\",\"elType\":\"widget\",\"settings\":{\"sg_layout_testimonial_choose\":\"style-2\",\"sg_testimonials_image_size_imagesize_size\":\"medium\",\"sg_testimonials_list\":[{\"sg_testimonials_list_client_avatar\":{\"id\":\"75\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/3SUMAU.jpg\"},\"_id\":\"6e9b2e1\",\"sg_testimonials_list_client_name\":\"Regan Traynor\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"76\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/CASCKD8.jpg\"},\"sg_testimonials_list_client_name\":\"Maisha Dunn\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"d069a43\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"77\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/MKLVKTE.jpg\"},\"sg_testimonials_list_client_name\":\"Reis Leonard\",\"sg_testimonials_list_designation\":\"Businessman\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"05c24f5\"}],\"st_wrapper_alignment_responsive\":\"left\",\"st_client_name_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_description_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_client_name_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_client_designation_normal_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_client_designation_normal_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=d343bdf\",\"st_rating_color_responsive\":\"\",\"st_client_name_normal_color_responsive\":\"\",\"st_quote_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_layout_background_background_color\":\"\"},\"st_layout_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_layout_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_wrapper_fix_height\":\"\",\"sg_setting_autoplay\":\"yes\",\"sg_setting_autoplay_pause\":\"\",\"sg_setting_arrow\":\"\",\"sg_setting_arrow_position\":\"middle-edge\",\"sg_setting_dots\":\"\",\"sg_setting_quote\":\"yes\",\"sg_setting_rating\":\"\",\"st_layout_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_layout_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_slide_show_responsive\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"sg_setting_quote_icon\":{\"value\":\"jki jki-quote-light\",\"library\":\"jkiticon\"},\"sg_layout_image_position\":\"below\",\"st_layout_background_background_background\":\"classic\",\"st_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position\":\"\",\"st_quote_override_position_top_responsive\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"st_quote_override_position_left_responsive\":{\"unit\":\"px\",\"size\":442,\"sizes\":[]},\"st_client_name_normal_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_quote_normal_font_size_responsive\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"st_client_image_margin_responsive\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_rating_font_size_responsive\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"st_rating_margin_right_responsive\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_setting_slide_show_responsive_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"st_wrapper_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position_top_responsive_tablet\":{\"unit\":\"px\",\"size\":249,\"sizes\":[]},\"st_quote_override_position_top_responsive_mobile\":{\"unit\":\"px\",\"size\":193,\"sizes\":[]},\"st_quote_override_position_left_responsive_tablet\":{\"unit\":\"px\",\"size\":265,\"sizes\":[]},\"st_quote_override_position_left_responsive_mobile\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]},\"st_quote_normal_font_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"st_description_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_normal_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64afd05f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"746d276b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30338dfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f950be4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ca735b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5d6ca3ad\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_title_hover_color_responsive\":\"globals\\/colors?id=secondary\",\"st_readmore_hover_color_responsive\":\"globals\\/colors?id=secondary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#646974\",\"st_excerpt_color_responsive\":\"#646974\",\"st_title_normal_color_responsive\":\"#272B36\",\"st_thumbnail_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_title_hover_color_responsive\":\"#FA8D25\",\"st_readmore_normal_color_responsive\":\"#FA8D25\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":false}],\"isInner\":false}]'),(546,104,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(548,105,'_elementor_edit_mode','builder'),(549,105,'_elementor_template_type','wp-page'),(550,105,'_elementor_version','3.23.2'),(551,105,'_wp_page_template','default'),(552,105,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(553,105,'_elementor_data','[{\"id\":\"35495243\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"Eldery male gardener using scissors for bushes\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"160\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0,\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_size_tablet\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"top center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00160E\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b\":\"#00000054\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_slideshow_gallery\":[{\"id\":\"58\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-with-hedge-trimmer-e1635892441479.jpg\"},{\"id\":\"59\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/professional-gardener-at-work-XU82AHW.jpg\"},{\"id\":\"60\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-buying-new-plantsP4VGX5F.jpg\"},{\"id\":\"61\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/garden-decorative-trees-trimming-by-professional-gardener-e1635864777836.jpg\"}]},\"elements\":[{\"id\":\"739a26d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":65,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=06a34e7\"}},\"elements\":[{\"id\":\"132d1a8e\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Complete For All\",\"sg_title_focused\":\" Landscape \",\"sg_title_after\":\" Service And Maintenance\",\"sg_title_html_tag\":\"h1\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=primary\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"7c49583a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"635cb25b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"23cf340e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37.85499999999999687361196265555918216705322265625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":48,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"1c4c950d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"typography_typography\":\"globals\\/typography?id=0a50947\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4768b6f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":62.14500000000000312638803734444081783294677734375,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"flex-start\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":52,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"34c0badb\",\"elType\":\"widget\",\"settings\":{\"sg_video_button_title\":\"Play Video\",\"sg_video_button_icon\":{\"value\":\"jki jki-play-button-light\",\"library\":\"jkiticon\"},\"sg_video_url\":\"https:\\/\\/www.youtube.com\\/watch?v=MLpWrANjFbI\",\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_width_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_line_height_responsive\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#FFD402\",\"st_button_normal_glow_color_responsive\":\"#00694361\",\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"_element_width\":\"auto\",\"__globals__\":{\"st_button_normal_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=accent\",\"st_border_normal_border_border_color\":\"\",\"st_button_hover_text_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_glow_color_responsive\":\"\"},\"st_button_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_button_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_width_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_line_height_responsive_mobile\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"st_border_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_border_normal_border_border_color\":\"#FFD027\",\"st_button_line_height_responsive_tablet\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"st_button_normal_background_background_color\":\"#006943\",\"st_button_hover_text_color_responsive\":\"#006943\",\"st_button_hover_background_background_color\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_video_button\"},{\"id\":\"232ec8da\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Intro\",\"align\":\"right\",\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"typography_typography\":\"globals\\/typography?id=0a50947\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49b348ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"edc2dbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.00200000000000244426701101474463939666748046875,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e2246bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Greenco\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"139cc45f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Landscaping And Garden Care Services\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dc78e71\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"597dc67d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"26cf3840\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b19bda0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"62\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-and-his-flowers.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"980\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a46c929\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c4d8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Public Liability Insurance\",\"_id\":\"a978734\"},{\"text\":\"Environmentally Friendly\",\"_id\":\"1cd10a1\"},{\"text\":\"On Time, Every Time\",\"_id\":\"c6767db\"},{\"text\":\"Beautiful Garden Designs\",\"_id\":\"d4743f4\"},{\"text\":\"Modern Machinery And Tool\",\"_id\":\"535c17d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"398321ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=558fe58\",\"background_color\":\"globals\\/colors?id=accent\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4c7c15d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.9129999999999967030817060731351375579833984375,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5683e90d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"63\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-topiary-job.jpg\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"860\",\"height\":\"980\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b6190b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"64\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden.jpg\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"-59\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"250636f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"713aa588\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"51a71b71\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#00160E\",\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=primary\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=06a34e7\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"st_content_title_color_responsive\":\"#7F7F7F\",\"st_super_color_responsive\":\"#FFD402\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\",\"sg_setting_html_tag\":\"span\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5557874f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"73847855\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"65\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/garden-maintenance-performed-by-pro-gardener.jpg\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"b1058a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":224,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":478,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":325,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"69098afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"40\",\"bottom\":\"80\",\"left\":\"40\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"7cb7bf82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91cb5d9\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26358abf\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Have The Perfect Solution For Your Landscape Problems\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15a36cc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42c8d36c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7114454f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76f24ca8\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Variation Gardening\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"138cc39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28a78a06\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Expert Landscapers\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c5ac2bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38fdb183\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3ce0b95b\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Affordable Price\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-save-money-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4c80f133\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7451fb11\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Free Consultation\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-Consultancy-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e93f2c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"39a46e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6773b2a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"87647bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find The Best Service For Your Garden\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e2cc66e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30164d28\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e8639b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"66\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/men-watering-garden-plants.jpg\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fa92c14\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2c434fb3\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"5abe2e18\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33425b9f\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Watering Garden\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"472ed309\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"67cb221c\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37c1cce6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"67\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-finishing-garden.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b3e60ba\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3b291bbf\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"20b91942\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5649f719\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Lawn Maintenance\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6300b69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"256ddf68\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3735f0b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"58\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-with-hedge-trimmer-e1635892441479.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"741128a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3691562\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3c8a0e6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5eb1b3b9\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Cutting Leaf\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"25f37292\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"61c9ff8e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"790dd775\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"360\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"160\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"140\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"background_overlay_color_b\":\"#000414\",\"background_overlay_image\":{\"id\":\"69\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/a-gardener-watering-plants-in-a-flowerbed-2RT8DWL.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]}},\"elements\":[{\"id\":\"a2ed5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7e37f762\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Landscaping\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a092069\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d5099\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need Someone To Take Care Your Garden & Lawn?\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=07ee36d\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1198756c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"66521a56\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":20,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":4},\"elements\":[{\"id\":\"1a89d099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.5090000000000003410605131648480892181396484375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"id\":\"70\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/happy-gardeners-with-plants-and-lawn-mower.jpg\"},\"background_position\":\"initial\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"space-between\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_color\":\"#FFFFFF00\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":9,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"46b821c1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":219,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":183,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"449971a9\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Make Appointment & Take Care Your Garden\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=secondary\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=93191b3\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_content_title_color_hover_responsive\":\"#FFFFFF\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#FFFFFF\",\"st_icon_color_responsive\":\"#00E5CC\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#00E5CC\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":false},{\"id\":\"13747b6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.4909999999999996589394868351519107818603515625,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a13f42e\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"260***1635696832144\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fde8487\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"59883b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1617542a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Process\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29c7aa96\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Complete Every Step Carefully\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ced0d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d62463d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18cf7834\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"41f79872\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-consult-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consultation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65e1b761\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"span\",\"title_color\":\"#FFD402\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#006943\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12cdbf13\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4175d29\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-pencil_art-light\",\"library\":\"jkiticon\"},\"title_text\":\"Design Installation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2adabf01\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b628\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"569b3221\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consturction \",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"67d6b2e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6fff79c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53c9a76e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"title_text\":\"Finished Work\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"555aace0\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d57540b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"71\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardening-background-with-garden-tolls-A9BGNJU.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]}},\"elements\":[{\"id\":\"147831a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"5a53d120\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"20\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Years of Experience\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"488f4727\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"6b8f6eae\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"76666759\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f532f9e\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"2850\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Happy Customers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"265fd738\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5473dc22\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"64\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Expert Landscapers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b38731e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4945f2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"627cd42c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65e3182\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.56499999999999772626324556767940521240234375},\"elements\":[{\"id\":\"43108b53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Projects\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45328989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Project We Have Done\\n\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"f382082\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.49900000000000233058017329312860965728759765625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":40,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"55ecfb57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"67afcbfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.0330000000000012505552149377763271331787109375,\"_inline_size_tablet\":23,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4989aa04\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Projects\",\"align\":\"right\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=558fe58\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"left\",\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"32515d84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"3f5753f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"21982cfb\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"72\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-pruning-and-shaping-bushes-.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Cutting Leaf\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"404dc561\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"58d29b54\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"73\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/backyard-garden.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Home Garden\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"3bff1dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"3c24185a\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"64\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Build Backyard\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_image_height_responsive_tablet\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b3cb58d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_image\":{\"id\":\"74\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-moving-aerial-photo-Z8KDGJ9.jpg\"},\"background_overlay_color\":\"#0000007D\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]}},\"elements\":[{\"id\":\"79705206\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"51c9a732\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73b2fe0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"What They Says About Us\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4876e632\",\"elType\":\"widget\",\"settings\":{\"sg_layout_testimonial_choose\":\"style-2\",\"sg_testimonials_image_size_imagesize_size\":\"medium\",\"sg_testimonials_list\":[{\"sg_testimonials_list_client_avatar\":{\"id\":\"75\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/3SUMAU.jpg\"},\"_id\":\"6e9b2e1\",\"sg_testimonials_list_client_name\":\"Regan Traynor\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"76\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/CASCKD8.jpg\"},\"sg_testimonials_list_client_name\":\"Maisha Dunn\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"d069a43\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"77\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/MKLVKTE.jpg\"},\"sg_testimonials_list_client_name\":\"Reis Leonard\",\"sg_testimonials_list_designation\":\"Businessman\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"05c24f5\"}],\"st_wrapper_alignment_responsive\":\"left\",\"st_client_name_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_description_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_client_name_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_client_designation_normal_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_client_designation_normal_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=d343bdf\",\"st_rating_color_responsive\":\"\",\"st_client_name_normal_color_responsive\":\"\",\"st_quote_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_layout_background_background_color\":\"\"},\"st_layout_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_layout_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_wrapper_fix_height\":\"\",\"sg_setting_autoplay\":\"yes\",\"sg_setting_autoplay_pause\":\"\",\"sg_setting_arrow\":\"\",\"sg_setting_arrow_position\":\"middle-edge\",\"sg_setting_dots\":\"\",\"sg_setting_quote\":\"yes\",\"sg_setting_rating\":\"\",\"st_layout_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_layout_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_slide_show_responsive\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"sg_setting_quote_icon\":{\"value\":\"jki jki-quote-light\",\"library\":\"jkiticon\"},\"sg_layout_image_position\":\"below\",\"st_layout_background_background_background\":\"classic\",\"st_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position\":\"\",\"st_quote_override_position_top_responsive\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"st_quote_override_position_left_responsive\":{\"unit\":\"px\",\"size\":442,\"sizes\":[]},\"st_client_name_normal_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_quote_normal_font_size_responsive\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"st_client_image_margin_responsive\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_rating_font_size_responsive\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"st_rating_margin_right_responsive\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_setting_slide_show_responsive_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"st_wrapper_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position_top_responsive_tablet\":{\"unit\":\"px\",\"size\":249,\"sizes\":[]},\"st_quote_override_position_top_responsive_mobile\":{\"unit\":\"px\",\"size\":193,\"sizes\":[]},\"st_quote_override_position_left_responsive_tablet\":{\"unit\":\"px\",\"size\":265,\"sizes\":[]},\"st_quote_override_position_left_responsive_mobile\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]},\"st_quote_normal_font_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"st_description_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_normal_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64afd05f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"746d276b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30338dfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f950be4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ca735b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5d6ca3ad\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_title_hover_color_responsive\":\"globals\\/colors?id=secondary\",\"st_readmore_hover_color_responsive\":\"globals\\/colors?id=secondary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#646974\",\"st_excerpt_color_responsive\":\"#646974\",\"st_title_normal_color_responsive\":\"#272B36\",\"st_thumbnail_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_title_hover_color_responsive\":\"#FA8D25\",\"st_readmore_normal_color_responsive\":\"#FA8D25\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":false}],\"isInner\":false}]'),(554,105,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(556,106,'_elementor_edit_mode','builder'),(557,106,'_elementor_template_type','wp-page'),(558,106,'_elementor_version','3.23.2'),(559,106,'_wp_page_template','default'),(560,106,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(561,106,'_elementor_data','[{\"id\":\"35495243\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"Eldery male gardener using scissors for bushes\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"160\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0,\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_size_tablet\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"top center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00160E\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b\":\"#00000054\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_slideshow_gallery\":[{\"id\":\"58\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-with-hedge-trimmer-e1635892441479.jpg\"},{\"id\":\"59\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/professional-gardener-at-work-XU82AHW.jpg\"},{\"id\":\"60\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-buying-new-plantsP4VGX5F.jpg\"},{\"id\":\"61\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/garden-decorative-trees-trimming-by-professional-gardener-e1635864777836.jpg\"}]},\"elements\":[{\"id\":\"739a26d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":65,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=06a34e7\"}},\"elements\":[{\"id\":\"132d1a8e\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Complete For All\",\"sg_title_focused\":\" Landscape \",\"sg_title_after\":\" Service And Maintenance\",\"sg_title_html_tag\":\"h1\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=primary\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"7c49583a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"635cb25b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"23cf340e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37.85499999999999687361196265555918216705322265625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":48,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"1c4c950d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4768b6f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":62.14500000000000312638803734444081783294677734375,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"flex-start\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":52,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"34c0badb\",\"elType\":\"widget\",\"settings\":{\"sg_video_button_title\":\"Play Video\",\"sg_video_button_icon\":{\"value\":\"jki jki-play-button-light\",\"library\":\"jkiticon\"},\"sg_video_url\":\"https:\\/\\/www.youtube.com\\/watch?v=MLpWrANjFbI\",\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_width_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_line_height_responsive\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#FFD402\",\"st_button_normal_glow_color_responsive\":\"#00694361\",\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"_element_width\":\"auto\",\"__globals__\":{\"st_button_normal_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=accent\",\"st_border_normal_border_border_color\":\"\",\"st_button_hover_text_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_glow_color_responsive\":\"\"},\"st_button_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_button_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_width_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_line_height_responsive_mobile\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"st_border_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_border_normal_border_border_color\":\"#FFD027\",\"st_button_line_height_responsive_tablet\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"st_button_normal_background_background_color\":\"#006943\",\"st_button_hover_text_color_responsive\":\"#006943\",\"st_button_hover_background_background_color\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_video_button\"},{\"id\":\"232ec8da\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Intro\",\"align\":\"right\",\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"hide_mobile\":\"hidden-mobile\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#00160E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49b348ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"edc2dbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.00200000000000244426701101474463939666748046875,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e2246bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Greenco\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"139cc45f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Landscaping And Garden Care Services\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dc78e71\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"597dc67d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"26cf3840\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b19bda0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"62\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-and-his-flowers.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"980\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a46c929\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c4d8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Public Liability Insurance\",\"_id\":\"a978734\"},{\"text\":\"Environmentally Friendly\",\"_id\":\"1cd10a1\"},{\"text\":\"On Time, Every Time\",\"_id\":\"c6767db\"},{\"text\":\"Beautiful Garden Designs\",\"_id\":\"d4743f4\"},{\"text\":\"Modern Machinery And Tool\",\"_id\":\"535c17d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"398321ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4c7c15d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.9129999999999967030817060731351375579833984375,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5683e90d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"63\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-topiary-job.jpg\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"860\",\"height\":\"980\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b6190b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"64\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden.jpg\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"-59\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"250636f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"713aa588\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"51a71b71\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#00160E\",\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=primary\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=06a34e7\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"st_content_title_color_responsive\":\"#7F7F7F\",\"st_super_color_responsive\":\"#FFD402\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\",\"sg_setting_html_tag\":\"span\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5557874f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"73847855\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"65\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/garden-maintenance-performed-by-pro-gardener.jpg\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"b1058a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":224,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":478,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":325,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"69098afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"40\",\"bottom\":\"80\",\"left\":\"40\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"7cb7bf82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91cb5d9\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26358abf\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Have The Perfect Solution For Your Landscape Problems\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15a36cc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42c8d36c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7114454f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76f24ca8\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Variation Gardening\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"138cc39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28a78a06\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Expert Landscapers\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c5ac2bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38fdb183\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3ce0b95b\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Affordable Price\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-save-money-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4c80f133\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7451fb11\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Free Consultation\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-Consultancy-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e93f2c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"39a46e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6773b2a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"87647bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find The Best Service For Your Garden\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e2cc66e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30164d28\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e8639b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"66\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/men-watering-garden-plants.jpg\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fa92c14\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2c434fb3\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"5abe2e18\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33425b9f\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Watering Garden\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"472ed309\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"67cb221c\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37c1cce6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"67\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-finishing-garden.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b3e60ba\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3b291bbf\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"20b91942\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5649f719\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Lawn Maintenance\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6300b69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"256ddf68\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3735f0b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"58\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-with-hedge-trimmer-e1635892441479.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"741128a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3691562\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3c8a0e6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5eb1b3b9\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Cutting Leaf\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"25f37292\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"61c9ff8e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"790dd775\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"360\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"160\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"140\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"background_overlay_color_b\":\"#000414\",\"background_overlay_image\":{\"id\":\"69\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/a-gardener-watering-plants-in-a-flowerbed-2RT8DWL.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]}},\"elements\":[{\"id\":\"a2ed5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7e37f762\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Landscaping\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a092069\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d5099\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need Someone To Take Care Your Garden & Lawn?\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=07ee36d\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1198756c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"66521a56\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":20,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":4},\"elements\":[{\"id\":\"1a89d099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.5090000000000003410605131648480892181396484375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"id\":\"70\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/happy-gardeners-with-plants-and-lawn-mower.jpg\"},\"background_position\":\"initial\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"space-between\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_color\":\"#FFFFFF00\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":9,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"46b821c1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":219,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":183,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"449971a9\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Make Appointment & Take Care Your Garden\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=secondary\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=93191b3\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_content_title_color_hover_responsive\":\"#FFFFFF\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#FFFFFF\",\"st_icon_color_responsive\":\"#00E5CC\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#00E5CC\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":false},{\"id\":\"13747b6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.4909999999999996589394868351519107818603515625,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a13f42e\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"260***1635696832144\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fde8487\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"59883b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1617542a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Process\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29c7aa96\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Complete Every Step Carefully\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ced0d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d62463d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18cf7834\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"41f79872\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-consult-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consultation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65e1b761\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"span\",\"title_color\":\"#FFD402\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#006943\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12cdbf13\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4175d29\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-pencil_art-light\",\"library\":\"jkiticon\"},\"title_text\":\"Design Installation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2adabf01\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b628\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"569b3221\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consturction \",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"67d6b2e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6fff79c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53c9a76e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"title_text\":\"Finished Work\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"555aace0\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d57540b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"71\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardening-background-with-garden-tolls-A9BGNJU.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]}},\"elements\":[{\"id\":\"147831a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"5a53d120\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"20\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Years of Experience\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"488f4727\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"6b8f6eae\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"76666759\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f532f9e\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"2850\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Happy Customers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"265fd738\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5473dc22\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"64\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Expert Landscapers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b38731e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4945f2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"627cd42c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65e3182\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.56499999999999772626324556767940521240234375},\"elements\":[{\"id\":\"43108b53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Projects\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45328989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Project We Have Done\\n\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"f382082\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.49900000000000233058017329312860965728759765625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":40,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"55ecfb57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"67afcbfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.0330000000000012505552149377763271331787109375,\"_inline_size_tablet\":23,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4989aa04\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Projects\",\"align\":\"right\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"left\",\"hover_animation\":\"float\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"32515d84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"3f5753f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"21982cfb\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"72\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-pruning-and-shaping-bushes-.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Cutting Leaf\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"404dc561\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"58d29b54\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"73\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/backyard-garden.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Home Garden\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"3bff1dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"3c24185a\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"64\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Build Backyard\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_image_height_responsive_tablet\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b3cb58d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_image\":{\"id\":\"74\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-moving-aerial-photo-Z8KDGJ9.jpg\"},\"background_overlay_color\":\"#0000007D\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]}},\"elements\":[{\"id\":\"79705206\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"51c9a732\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73b2fe0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"What They Says About Us\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4876e632\",\"elType\":\"widget\",\"settings\":{\"sg_layout_testimonial_choose\":\"style-2\",\"sg_testimonials_image_size_imagesize_size\":\"medium\",\"sg_testimonials_list\":[{\"sg_testimonials_list_client_avatar\":{\"id\":\"75\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/3SUMAU.jpg\"},\"_id\":\"6e9b2e1\",\"sg_testimonials_list_client_name\":\"Regan Traynor\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"76\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/CASCKD8.jpg\"},\"sg_testimonials_list_client_name\":\"Maisha Dunn\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"d069a43\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"77\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/MKLVKTE.jpg\"},\"sg_testimonials_list_client_name\":\"Reis Leonard\",\"sg_testimonials_list_designation\":\"Businessman\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"05c24f5\"}],\"st_wrapper_alignment_responsive\":\"left\",\"st_client_name_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_description_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_client_name_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_client_designation_normal_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_client_designation_normal_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=d343bdf\",\"st_rating_color_responsive\":\"\",\"st_client_name_normal_color_responsive\":\"\",\"st_quote_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_layout_background_background_color\":\"\"},\"st_layout_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_layout_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_wrapper_fix_height\":\"\",\"sg_setting_autoplay\":\"yes\",\"sg_setting_autoplay_pause\":\"\",\"sg_setting_arrow\":\"\",\"sg_setting_arrow_position\":\"middle-edge\",\"sg_setting_dots\":\"\",\"sg_setting_quote\":\"yes\",\"sg_setting_rating\":\"\",\"st_layout_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_layout_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_slide_show_responsive\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"sg_setting_quote_icon\":{\"value\":\"jki jki-quote-light\",\"library\":\"jkiticon\"},\"sg_layout_image_position\":\"below\",\"st_layout_background_background_background\":\"classic\",\"st_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position\":\"\",\"st_quote_override_position_top_responsive\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"st_quote_override_position_left_responsive\":{\"unit\":\"px\",\"size\":442,\"sizes\":[]},\"st_client_name_normal_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_quote_normal_font_size_responsive\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"st_client_image_margin_responsive\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_rating_font_size_responsive\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"st_rating_margin_right_responsive\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_setting_slide_show_responsive_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"st_wrapper_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position_top_responsive_tablet\":{\"unit\":\"px\",\"size\":249,\"sizes\":[]},\"st_quote_override_position_top_responsive_mobile\":{\"unit\":\"px\",\"size\":193,\"sizes\":[]},\"st_quote_override_position_left_responsive_tablet\":{\"unit\":\"px\",\"size\":265,\"sizes\":[]},\"st_quote_override_position_left_responsive_mobile\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]},\"st_quote_normal_font_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"st_description_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_normal_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64afd05f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"746d276b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30338dfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f950be4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ca735b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5d6ca3ad\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_title_hover_color_responsive\":\"globals\\/colors?id=secondary\",\"st_readmore_hover_color_responsive\":\"globals\\/colors?id=secondary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#646974\",\"st_excerpt_color_responsive\":\"#646974\",\"st_title_normal_color_responsive\":\"#272B36\",\"st_thumbnail_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_title_hover_color_responsive\":\"#FA8D25\",\"st_readmore_normal_color_responsive\":\"#FA8D25\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":false}],\"isInner\":false}]'),(562,106,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(566,107,'_wp_attached_file','2024/07/Prestige-Luxury-Cleanings-LLC-logo-1.png'),(567,107,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:1024;s:4:\"file\";s:48:\"2024/07/Prestige-Luxury-Cleanings-LLC-logo-1.png\";s:8:\"filesize\";i:38082;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:48:\"Prestige-Luxury-Cleanings-LLC-logo-1-300x240.png\";s:5:\"width\";i:300;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11077;}s:5:\"large\";a:5:{s:4:\"file\";s:49:\"Prestige-Luxury-Cleanings-LLC-logo-1-1024x819.png\";s:5:\"width\";i:1024;s:6:\"height\";i:819;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:49817;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"Prestige-Luxury-Cleanings-LLC-logo-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:5984;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:48:\"Prestige-Luxury-Cleanings-LLC-logo-1-768x614.png\";s:5:\"width\";i:768;s:6:\"height\";i:614;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:34467;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(568,108,'_wp_page_template','default'),(569,108,'_elementor_edit_mode','builder'),(570,108,'_elementor_template_type','wp-post'),(571,108,'_elementor_version','3.23.2'),(572,108,'_elementor_data','[{\"id\":\"65d61e79\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"z_index\":2,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"49c5f53f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"z_index_tablet\":5},\"elements\":[{\"id\":\"7fd427a5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"a5ad795\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.315000000000001278976924368180334568023681640625,\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"4b6500b7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"43\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/logo-UDS48Q.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2eb94bb5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":58.89099999999999823785401531495153903961181640625,\"align\":\"flex-end\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":70,\"hide_mobile\":\"hidden-phone\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18bb12d6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-map-marker1-light\",\"library\":\"jkiticon\"},\"title_text\":\"Location\",\"description_text\":\"123 Wall St\\nMiami, FL 12345\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#EAEAEA\",\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"description_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"globals\\/typography?id=8966ad4\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"view\":\"framed\",\"icon_padding\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#006943\",\"title_color\":\"#00160E\",\"description_color\":\"#7F7F7F\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"294dea9a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-phone-call-line\",\"library\":\"jkiticon\"},\"title_text\":\"Call Us\",\"description_text\":\"+1 505 555 5555\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"description_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"globals\\/typography?id=8966ad4\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"view\":\"framed\",\"icon_padding\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"5ef5f227\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":21.452000000000001733724275254644453525543212890625,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"234dd6d2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"align\":\"right\",\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=558fe58\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"hover_animation\":\"float\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1ed2d9f1\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":3,\"blur\":15,\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.06)\"},\"background_background\":\"classic\",\"z_index\":1,\"jet_sticky_section_sticky\":\"yes\",\"jet_sticky_section_sticky_z_index\":\"10\",\"jet_sticky_section_sticky_background_background\":\"classic\",\"jet_sticky_section_sticky_background_color\":\"#FFFFFF\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"z_index_tablet\":4,\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a58714b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80.3490000000000037516656448133289813995361328125,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":20,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"14c9c516\",\"elType\":\"widget\",\"settings\":{\"sg_menu_choose\":\"menu\",\"sg_mobile_menu_logo\":{\"id\":\"43\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/logo-UDS48Q.png\"},\"sg_mobile_menu_logo_size_imagesize_size\":\"full\",\"sg_mobile_menu_icon\":{\"value\":\"jki jki-bars-solid\",\"library\":\"jkiticon\"},\"st_menu_wrapper_height_responsive\":{\"unit\":\"px\",\"size\":74,\"sizes\":[]},\"st_menu_wrapper_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"},\"st_submenu_item_indicator_margin_responsive\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_submenu_panel_padding_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_panel_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_background_background_background\":\"classic\",\"st_submenu_panel_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_position_responsive_tablet\":\"left\",\"st_hamburger_menu_icon_background_background_background\":\"classic\",\"st_hamburger_menu_icon_background_background_color\":\"#FFFFFF00\",\"st_hamburger_menu_icon_border_border_border\":\"solid\",\"st_hamburger_menu_icon_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_hamburger_menu_close_background_background_background\":\"classic\",\"st_hamburger_menu_close_border_border_border\":\"solid\",\"st_hamburger_menu_close_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"st_menu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_menu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_color_responsive\":\"\",\"st_submenu_panel_background_background_color\":\"\",\"st_submenu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_submenu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_wrapper_mobile_color_tablet_responsive_tablet\":\"\",\"st_menu_item_text_normal_color_responsive_tablet\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_item_text_active_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_submenu_item_indicator_color_responsive_tablet\":\"\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_icon_color_hover_responsive_tablet\":\"\",\"st_hamburger_menu_close_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_close_color_hover_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_wrapper_background_background_color\":\"\",\"st_hamburger_menu_close_background_background_color\":\"globals\\/colors?id=secondary\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_border_border_color\":\"\",\"st_hamburger_menu_close_background_hover_background_color\":\"globals\\/colors?id=accent\"},\"st_submenu_panel_box_shadow_box_shadow_box_shadow_type\":\"yes\",\"st_submenu_panel_box_shadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_submenu_item_indicator_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_submenu_item_indicator_border_border_border\":\"solid\",\"st_submenu_item_indicator_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_submenu_panel_background_background_color\":\"#FFFFFF\",\"st_hamburger_menu_icon_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_icon_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_close_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_hamburger_menu_close_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_hamburger_menu_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_menu_item_text_normal_color_responsive_tablet\":\"#6EC1E4\",\"st_menu_item_text_hover_color_responsive_tablet\":\"#54595F\",\"st_menu_item_text_active_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_close_background_background_color\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"#54595F\",\"st_hamburger_menu_position_responsive_mobile\":\"left\",\"st_hamburger_menu_close_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_hamburger_menu_close_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"st_mobile_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"st_menu_item_text_hover_color_responsive\":\"#54595F\",\"st_menu_item_text_active_color_responsive\":\"#54595F\",\"st_mobile_menu_object_fit_responsive_tablet\":\"cover\",\"st_mobile_menu_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_hamburger_menu_close_background_hover_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_nav_menu\"}],\"isInner\":\"\"},{\"id\":\"5e047152\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":19.650999999999999801048033987171947956085205078125,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":30,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":80},\"elements\":[{\"id\":\"976c2f8\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"jki jki-facebook-f\",\"library\":\"jkiticon\"},\"_id\":\"0fb8cc7\"},{\"social_icon\":{\"value\":\"fab fa-x-twitter\",\"library\":\"fa-brands\"},\"_id\":\"4be5bc7\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"147010a\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"df2ad14\"}],\"shape\":\"circle\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"hover_animation\":\"shrink\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=secondary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_secondary_color\":\"globals\\/colors?id=accent\",\"hover_primary_color\":\"globals\\/colors?id=accent\"},\"align_tablet\":\"right\",\"hover_primary_color\":\"#006943\",\"hover_secondary_color\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(573,108,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(575,109,'_wp_page_template','default'),(576,109,'_elementor_edit_mode','builder'),(577,109,'_elementor_template_type','wp-post'),(578,109,'_elementor_version','3.23.2'),(579,109,'_elementor_data','[{\"id\":\"65d61e79\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"z_index\":2,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"49c5f53f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"z_index_tablet\":5},\"elements\":[{\"id\":\"7fd427a5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"a5ad795\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.315000000000001278976924368180334568023681640625,\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"4b6500b7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"43\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/logo-UDS48Q.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2eb94bb5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":58.89099999999999823785401531495153903961181640625,\"align\":\"flex-end\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":70,\"hide_mobile\":\"hidden-phone\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18bb12d6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-map-marker1-light\",\"library\":\"jkiticon\"},\"title_text\":\"Location\",\"description_text\":\"123 Wall St\\nMiami, FL 12345\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#EAEAEA\",\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"description_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"globals\\/typography?id=8966ad4\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"view\":\"framed\",\"icon_padding\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#006943\",\"title_color\":\"#00160E\",\"description_color\":\"#7F7F7F\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"294dea9a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-phone-call-line\",\"library\":\"jkiticon\"},\"title_text\":\"Call Us\",\"description_text\":\"+1 505 555 5555\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"description_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"globals\\/typography?id=8966ad4\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"view\":\"framed\",\"icon_padding\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"5ef5f227\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":21.452000000000001733724275254644453525543212890625,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"234dd6d2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"align\":\"right\",\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=558fe58\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"hover_animation\":\"float\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1ed2d9f1\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":3,\"blur\":15,\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.06)\"},\"background_background\":\"classic\",\"z_index\":1,\"jet_sticky_section_sticky\":\"yes\",\"jet_sticky_section_sticky_z_index\":\"10\",\"jet_sticky_section_sticky_background_background\":\"classic\",\"jet_sticky_section_sticky_background_color\":\"#FFFFFF\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"z_index_tablet\":4,\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a58714b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80.3490000000000037516656448133289813995361328125,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":20,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"14c9c516\",\"elType\":\"widget\",\"settings\":{\"sg_menu_choose\":\"menu\",\"sg_mobile_menu_logo\":{\"id\":\"43\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/logo-UDS48Q.png\"},\"sg_mobile_menu_logo_size_imagesize_size\":\"full\",\"sg_mobile_menu_icon\":{\"value\":\"jki jki-bars-solid\",\"library\":\"jkiticon\"},\"st_menu_wrapper_height_responsive\":{\"unit\":\"px\",\"size\":74,\"sizes\":[]},\"st_menu_wrapper_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"},\"st_submenu_item_indicator_margin_responsive\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_submenu_panel_padding_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_panel_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_background_background_background\":\"classic\",\"st_submenu_panel_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_position_responsive_tablet\":\"left\",\"st_hamburger_menu_icon_background_background_background\":\"classic\",\"st_hamburger_menu_icon_background_background_color\":\"#FFFFFF00\",\"st_hamburger_menu_icon_border_border_border\":\"solid\",\"st_hamburger_menu_icon_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_hamburger_menu_close_background_background_background\":\"classic\",\"st_hamburger_menu_close_border_border_border\":\"solid\",\"st_hamburger_menu_close_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"st_menu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_menu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_color_responsive\":\"\",\"st_submenu_panel_background_background_color\":\"\",\"st_submenu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_submenu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_wrapper_mobile_color_tablet_responsive_tablet\":\"\",\"st_menu_item_text_normal_color_responsive_tablet\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_item_text_active_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_submenu_item_indicator_color_responsive_tablet\":\"\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_icon_color_hover_responsive_tablet\":\"\",\"st_hamburger_menu_close_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_close_color_hover_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_wrapper_background_background_color\":\"\",\"st_hamburger_menu_close_background_background_color\":\"globals\\/colors?id=secondary\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_border_border_color\":\"\",\"st_hamburger_menu_close_background_hover_background_color\":\"globals\\/colors?id=accent\"},\"st_submenu_panel_box_shadow_box_shadow_box_shadow_type\":\"yes\",\"st_submenu_panel_box_shadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_submenu_item_indicator_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_submenu_item_indicator_border_border_border\":\"solid\",\"st_submenu_item_indicator_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_submenu_panel_background_background_color\":\"#FFFFFF\",\"st_hamburger_menu_icon_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_icon_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_close_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_hamburger_menu_close_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_hamburger_menu_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_menu_item_text_normal_color_responsive_tablet\":\"#6EC1E4\",\"st_menu_item_text_hover_color_responsive_tablet\":\"#54595F\",\"st_menu_item_text_active_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_close_background_background_color\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"#54595F\",\"st_hamburger_menu_position_responsive_mobile\":\"left\",\"st_hamburger_menu_close_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_hamburger_menu_close_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"st_mobile_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"st_menu_item_text_hover_color_responsive\":\"#54595F\",\"st_menu_item_text_active_color_responsive\":\"#54595F\",\"st_mobile_menu_object_fit_responsive_tablet\":\"cover\",\"st_mobile_menu_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_hamburger_menu_close_background_hover_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_nav_menu\"}],\"isInner\":\"\"},{\"id\":\"5e047152\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":19.650999999999999801048033987171947956085205078125,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":30,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":80},\"elements\":[{\"id\":\"976c2f8\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"jki jki-facebook-f\",\"library\":\"jkiticon\"},\"_id\":\"0fb8cc7\"},{\"social_icon\":{\"value\":\"fab fa-x-twitter\",\"library\":\"fa-brands\"},\"_id\":\"4be5bc7\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"147010a\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"df2ad14\"}],\"shape\":\"circle\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"hover_animation\":\"shrink\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=secondary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_secondary_color\":\"globals\\/colors?id=accent\",\"hover_primary_color\":\"globals\\/colors?id=accent\"},\"align_tablet\":\"right\",\"hover_primary_color\":\"#006943\",\"hover_secondary_color\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(580,109,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(582,110,'_wp_page_template','default'),(583,110,'_elementor_edit_mode','builder'),(584,110,'_elementor_template_type','wp-post'),(585,110,'_elementor_version','3.23.2'),(586,110,'_elementor_data','[{\"id\":\"65d61e79\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"z_index\":2,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"49c5f53f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"z_index_tablet\":5},\"elements\":[{\"id\":\"7fd427a5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"a5ad795\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.315000000000001278976924368180334568023681640625,\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"4b6500b7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":107,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2eb94bb5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":58.89099999999999823785401531495153903961181640625,\"align\":\"flex-end\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":70,\"hide_mobile\":\"hidden-phone\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18bb12d6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-map-marker1-light\",\"library\":\"jkiticon\"},\"title_text\":\"Location\",\"description_text\":\"123 Wall St\\nMiami, FL 12345\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#EAEAEA\",\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"description_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"globals\\/typography?id=8966ad4\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"view\":\"framed\",\"icon_padding\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#006943\",\"title_color\":\"#00160E\",\"description_color\":\"#7F7F7F\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"294dea9a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-phone-call-line\",\"library\":\"jkiticon\"},\"title_text\":\"Call Us\",\"description_text\":\"+1 505 555 5555\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"description_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"globals\\/typography?id=8966ad4\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"view\":\"framed\",\"icon_padding\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"5ef5f227\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":21.452000000000001733724275254644453525543212890625,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"234dd6d2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"align\":\"right\",\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=558fe58\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"hover_animation\":\"float\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1ed2d9f1\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":3,\"blur\":15,\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.06)\"},\"background_background\":\"classic\",\"z_index\":1,\"jet_sticky_section_sticky\":\"yes\",\"jet_sticky_section_sticky_z_index\":\"10\",\"jet_sticky_section_sticky_background_background\":\"classic\",\"jet_sticky_section_sticky_background_color\":\"#FFFFFF\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"z_index_tablet\":4,\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a58714b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80.3490000000000037516656448133289813995361328125,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":20,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"14c9c516\",\"elType\":\"widget\",\"settings\":{\"sg_menu_choose\":\"menu\",\"sg_mobile_menu_logo\":{\"id\":\"43\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/logo-UDS48Q.png\"},\"sg_mobile_menu_logo_size_imagesize_size\":\"full\",\"sg_mobile_menu_icon\":{\"value\":\"jki jki-bars-solid\",\"library\":\"jkiticon\"},\"st_menu_wrapper_height_responsive\":{\"unit\":\"px\",\"size\":74,\"sizes\":[]},\"st_menu_wrapper_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"},\"st_submenu_item_indicator_margin_responsive\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_submenu_panel_padding_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_panel_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_background_background_background\":\"classic\",\"st_submenu_panel_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_position_responsive_tablet\":\"left\",\"st_hamburger_menu_icon_background_background_background\":\"classic\",\"st_hamburger_menu_icon_background_background_color\":\"#FFFFFF00\",\"st_hamburger_menu_icon_border_border_border\":\"solid\",\"st_hamburger_menu_icon_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_hamburger_menu_close_background_background_background\":\"classic\",\"st_hamburger_menu_close_border_border_border\":\"solid\",\"st_hamburger_menu_close_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"st_menu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_menu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_color_responsive\":\"\",\"st_submenu_panel_background_background_color\":\"\",\"st_submenu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_submenu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_wrapper_mobile_color_tablet_responsive_tablet\":\"\",\"st_menu_item_text_normal_color_responsive_tablet\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_item_text_active_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_submenu_item_indicator_color_responsive_tablet\":\"\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_icon_color_hover_responsive_tablet\":\"\",\"st_hamburger_menu_close_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_close_color_hover_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_wrapper_background_background_color\":\"\",\"st_hamburger_menu_close_background_background_color\":\"globals\\/colors?id=secondary\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_border_border_color\":\"\",\"st_hamburger_menu_close_background_hover_background_color\":\"globals\\/colors?id=accent\"},\"st_submenu_panel_box_shadow_box_shadow_box_shadow_type\":\"yes\",\"st_submenu_panel_box_shadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_submenu_item_indicator_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_submenu_item_indicator_border_border_border\":\"solid\",\"st_submenu_item_indicator_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_submenu_panel_background_background_color\":\"#FFFFFF\",\"st_hamburger_menu_icon_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_icon_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_close_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_hamburger_menu_close_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_hamburger_menu_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_menu_item_text_normal_color_responsive_tablet\":\"#6EC1E4\",\"st_menu_item_text_hover_color_responsive_tablet\":\"#54595F\",\"st_menu_item_text_active_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_close_background_background_color\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"#54595F\",\"st_hamburger_menu_position_responsive_mobile\":\"left\",\"st_hamburger_menu_close_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_hamburger_menu_close_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"st_mobile_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"st_menu_item_text_hover_color_responsive\":\"#54595F\",\"st_menu_item_text_active_color_responsive\":\"#54595F\",\"st_mobile_menu_object_fit_responsive_tablet\":\"cover\",\"st_mobile_menu_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_hamburger_menu_close_background_hover_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_nav_menu\"}],\"isInner\":\"\"},{\"id\":\"5e047152\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":19.650999999999999801048033987171947956085205078125,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":30,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":80},\"elements\":[{\"id\":\"976c2f8\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"jki jki-facebook-f\",\"library\":\"jkiticon\"},\"_id\":\"0fb8cc7\"},{\"social_icon\":{\"value\":\"fab fa-x-twitter\",\"library\":\"fa-brands\"},\"_id\":\"4be5bc7\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"147010a\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"df2ad14\"}],\"shape\":\"circle\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"hover_animation\":\"shrink\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=secondary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_secondary_color\":\"globals\\/colors?id=accent\",\"hover_primary_color\":\"globals\\/colors?id=accent\"},\"align_tablet\":\"right\",\"hover_primary_color\":\"#006943\",\"hover_secondary_color\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(587,110,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(589,111,'_wp_page_template','default'),(590,111,'_elementor_edit_mode','builder'),(591,111,'_elementor_template_type','wp-post'),(592,111,'_elementor_version','3.23.2'),(593,111,'_elementor_data','[{\"id\":\"65d61e79\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"z_index\":2,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"49c5f53f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"z_index_tablet\":5},\"elements\":[{\"id\":\"7fd427a5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"a5ad795\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.315000000000001278976924368180334568023681640625,\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"4b6500b7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":107,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2eb94bb5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":58.89099999999999823785401531495153903961181640625,\"align\":\"flex-end\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":70,\"hide_mobile\":\"hidden-phone\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18bb12d6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-map-marker1-light\",\"library\":\"jkiticon\"},\"title_text\":\"Location\",\"description_text\":\"123 Wall St\\nMiami, FL 12345\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#EAEAEA\",\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"description_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"globals\\/typography?id=8966ad4\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"view\":\"framed\",\"icon_padding\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#006943\",\"title_color\":\"#00160E\",\"description_color\":\"#7F7F7F\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"294dea9a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-phone-call-line\",\"library\":\"jkiticon\"},\"title_text\":\"Call Us\",\"description_text\":\"+1 505 555 5555\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"description_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"globals\\/typography?id=8966ad4\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"view\":\"framed\",\"icon_padding\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"5ef5f227\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":21.452000000000001733724275254644453525543212890625,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"234dd6d2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"align\":\"right\",\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=558fe58\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"hover_animation\":\"float\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1ed2d9f1\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":3,\"blur\":15,\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.06)\"},\"background_background\":\"classic\",\"z_index\":1,\"jet_sticky_section_sticky\":\"yes\",\"jet_sticky_section_sticky_z_index\":\"10\",\"jet_sticky_section_sticky_background_background\":\"classic\",\"jet_sticky_section_sticky_background_color\":\"#FFFFFF\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"z_index_tablet\":4,\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a58714b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80.3490000000000037516656448133289813995361328125,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":20,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"14c9c516\",\"elType\":\"widget\",\"settings\":{\"sg_menu_choose\":\"menu\",\"sg_mobile_menu_logo\":{\"id\":\"43\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/logo-UDS48Q.png\"},\"sg_mobile_menu_logo_size_imagesize_size\":\"full\",\"sg_mobile_menu_icon\":{\"value\":\"jki jki-bars-solid\",\"library\":\"jkiticon\"},\"st_menu_wrapper_height_responsive\":{\"unit\":\"px\",\"size\":74,\"sizes\":[]},\"st_menu_wrapper_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"},\"st_submenu_item_indicator_margin_responsive\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_submenu_panel_padding_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_panel_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_background_background_background\":\"classic\",\"st_submenu_panel_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_position_responsive_tablet\":\"left\",\"st_hamburger_menu_icon_background_background_background\":\"classic\",\"st_hamburger_menu_icon_background_background_color\":\"#FFFFFF00\",\"st_hamburger_menu_icon_border_border_border\":\"solid\",\"st_hamburger_menu_icon_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_hamburger_menu_close_background_background_background\":\"classic\",\"st_hamburger_menu_close_border_border_border\":\"solid\",\"st_hamburger_menu_close_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"st_menu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_menu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_color_responsive\":\"\",\"st_submenu_panel_background_background_color\":\"\",\"st_submenu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_submenu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_wrapper_mobile_color_tablet_responsive_tablet\":\"\",\"st_menu_item_text_normal_color_responsive_tablet\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_item_text_active_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_submenu_item_indicator_color_responsive_tablet\":\"\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_icon_color_hover_responsive_tablet\":\"\",\"st_hamburger_menu_close_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_close_color_hover_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_wrapper_background_background_color\":\"\",\"st_hamburger_menu_close_background_background_color\":\"globals\\/colors?id=secondary\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_border_border_color\":\"\",\"st_hamburger_menu_close_background_hover_background_color\":\"globals\\/colors?id=accent\"},\"st_submenu_panel_box_shadow_box_shadow_box_shadow_type\":\"yes\",\"st_submenu_panel_box_shadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_submenu_item_indicator_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_submenu_item_indicator_border_border_border\":\"solid\",\"st_submenu_item_indicator_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_submenu_panel_background_background_color\":\"#FFFFFF\",\"st_hamburger_menu_icon_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_icon_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_close_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_hamburger_menu_close_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_hamburger_menu_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_menu_item_text_normal_color_responsive_tablet\":\"#6EC1E4\",\"st_menu_item_text_hover_color_responsive_tablet\":\"#54595F\",\"st_menu_item_text_active_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_close_background_background_color\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"#54595F\",\"st_hamburger_menu_position_responsive_mobile\":\"left\",\"st_hamburger_menu_close_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_hamburger_menu_close_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"st_mobile_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"st_menu_item_text_hover_color_responsive\":\"#54595F\",\"st_menu_item_text_active_color_responsive\":\"#54595F\",\"st_mobile_menu_object_fit_responsive_tablet\":\"cover\",\"st_mobile_menu_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_hamburger_menu_close_background_hover_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_nav_menu\"}],\"isInner\":\"\"},{\"id\":\"5e047152\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":19.650999999999999801048033987171947956085205078125,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":30,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":80},\"elements\":[{\"id\":\"976c2f8\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"jki jki-facebook-f\",\"library\":\"jkiticon\"},\"_id\":\"0fb8cc7\"},{\"social_icon\":{\"value\":\"fab fa-x-twitter\",\"library\":\"fa-brands\"},\"_id\":\"4be5bc7\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"147010a\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"df2ad14\"}],\"shape\":\"circle\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"hover_animation\":\"shrink\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=secondary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_secondary_color\":\"globals\\/colors?id=accent\",\"hover_primary_color\":\"globals\\/colors?id=accent\"},\"align_tablet\":\"right\",\"hover_primary_color\":\"#006943\",\"hover_secondary_color\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(594,111,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(595,112,'_wp_page_template','default'),(596,112,'_elementor_edit_mode','builder'),(597,112,'_elementor_template_type','wp-post'),(598,112,'_elementor_version','3.23.2'),(599,112,'_elementor_data','[{\"id\":\"65d61e79\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"z_index\":2,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"49c5f53f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"z_index_tablet\":5},\"elements\":[{\"id\":\"7fd427a5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"a5ad795\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.315000000000001278976924368180334568023681640625,\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"4b6500b7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":107,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2eb94bb5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":58.89099999999999823785401531495153903961181640625,\"align\":\"flex-end\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":70,\"hide_mobile\":\"hidden-phone\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18bb12d6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-map-marker1-light\",\"library\":\"jkiticon\"},\"title_text\":\"Location\",\"description_text\":\"123 Wall St\\nMiami, FL 12345\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#EAEAEA\",\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"description_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"globals\\/typography?id=8966ad4\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"view\":\"framed\",\"icon_padding\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#006943\",\"title_color\":\"#00160E\",\"description_color\":\"#7F7F7F\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"294dea9a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-phone-call-line\",\"library\":\"jkiticon\"},\"title_text\":\"Call Us\",\"description_text\":\"+1 505 555 5555\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"description_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"globals\\/typography?id=8966ad4\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"view\":\"framed\",\"icon_padding\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"5ef5f227\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":21.452000000000001733724275254644453525543212890625,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"234dd6d2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"align\":\"right\",\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=558fe58\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"hover_animation\":\"float\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1ed2d9f1\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":3,\"blur\":15,\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.06)\"},\"background_background\":\"classic\",\"z_index\":1,\"jet_sticky_section_sticky\":\"yes\",\"jet_sticky_section_sticky_z_index\":\"10\",\"jet_sticky_section_sticky_background_background\":\"classic\",\"jet_sticky_section_sticky_background_color\":\"#FFFFFF\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"z_index_tablet\":4,\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a58714b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80.3490000000000037516656448133289813995361328125,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":20,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"14c9c516\",\"elType\":\"widget\",\"settings\":{\"sg_menu_choose\":\"menu\",\"sg_mobile_menu_logo\":{\"id\":\"43\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/logo-UDS48Q.png\"},\"sg_mobile_menu_logo_size_imagesize_size\":\"full\",\"sg_mobile_menu_icon\":{\"value\":\"jki jki-bars-solid\",\"library\":\"jkiticon\"},\"st_menu_wrapper_height_responsive\":{\"unit\":\"px\",\"size\":74,\"sizes\":[]},\"st_menu_wrapper_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"},\"st_submenu_item_indicator_margin_responsive\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_submenu_panel_padding_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_panel_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_background_background_background\":\"classic\",\"st_submenu_panel_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_position_responsive_tablet\":\"left\",\"st_hamburger_menu_icon_background_background_background\":\"classic\",\"st_hamburger_menu_icon_background_background_color\":\"#FFFFFF00\",\"st_hamburger_menu_icon_border_border_border\":\"solid\",\"st_hamburger_menu_icon_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_hamburger_menu_close_background_background_background\":\"classic\",\"st_hamburger_menu_close_border_border_border\":\"solid\",\"st_hamburger_menu_close_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"st_menu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_menu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_color_responsive\":\"\",\"st_submenu_panel_background_background_color\":\"\",\"st_submenu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_submenu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_wrapper_mobile_color_tablet_responsive_tablet\":\"\",\"st_menu_item_text_normal_color_responsive_tablet\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_item_text_active_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_submenu_item_indicator_color_responsive_tablet\":\"\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_icon_color_hover_responsive_tablet\":\"\",\"st_hamburger_menu_close_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_close_color_hover_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_wrapper_background_background_color\":\"\",\"st_hamburger_menu_close_background_background_color\":\"globals\\/colors?id=secondary\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_border_border_color\":\"\",\"st_hamburger_menu_close_background_hover_background_color\":\"globals\\/colors?id=accent\"},\"st_submenu_panel_box_shadow_box_shadow_box_shadow_type\":\"yes\",\"st_submenu_panel_box_shadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_submenu_item_indicator_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_submenu_item_indicator_border_border_border\":\"solid\",\"st_submenu_item_indicator_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_submenu_panel_background_background_color\":\"#FFFFFF\",\"st_hamburger_menu_icon_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_icon_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_close_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_hamburger_menu_close_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_hamburger_menu_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_menu_item_text_normal_color_responsive_tablet\":\"#6EC1E4\",\"st_menu_item_text_hover_color_responsive_tablet\":\"#54595F\",\"st_menu_item_text_active_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_close_background_background_color\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"#54595F\",\"st_hamburger_menu_position_responsive_mobile\":\"left\",\"st_hamburger_menu_close_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_hamburger_menu_close_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"st_mobile_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"st_menu_item_text_hover_color_responsive\":\"#54595F\",\"st_menu_item_text_active_color_responsive\":\"#54595F\",\"st_mobile_menu_object_fit_responsive_tablet\":\"cover\",\"st_mobile_menu_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_hamburger_menu_close_background_hover_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_nav_menu\"}],\"isInner\":\"\"},{\"id\":\"5e047152\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":19.650999999999999801048033987171947956085205078125,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":30,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":80},\"elements\":[{\"id\":\"976c2f8\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"jki jki-facebook-f\",\"library\":\"jkiticon\"},\"_id\":\"0fb8cc7\"},{\"social_icon\":{\"value\":\"fab fa-x-twitter\",\"library\":\"fa-brands\"},\"_id\":\"4be5bc7\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"147010a\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"df2ad14\"}],\"shape\":\"circle\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"hover_animation\":\"shrink\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=secondary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_secondary_color\":\"globals\\/colors?id=accent\",\"hover_primary_color\":\"globals\\/colors?id=accent\"},\"align_tablet\":\"right\",\"hover_primary_color\":\"#006943\",\"hover_secondary_color\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(600,112,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(601,113,'_wp_page_template','default'),(602,113,'_elementor_edit_mode','builder'),(603,113,'_elementor_template_type','wp-post'),(604,113,'_elementor_version','3.23.2'),(605,113,'_elementor_data','[{\"id\":\"65d61e79\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"z_index\":2,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"49c5f53f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"z_index_tablet\":5},\"elements\":[{\"id\":\"7fd427a5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"a5ad795\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.315000000000001278976924368180334568023681640625,\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"4b6500b7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":107,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2eb94bb5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":58.89099999999999823785401531495153903961181640625,\"align\":\"flex-end\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":70,\"hide_mobile\":\"hidden-phone\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18bb12d6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-map-marker1-light\",\"library\":\"jkiticon\"},\"title_text\":\"Location\",\"description_text\":\"123 Wall St\\nMiami, FL 12345\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#EAEAEA\",\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"description_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"globals\\/typography?id=8966ad4\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"view\":\"framed\",\"icon_padding\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#006943\",\"title_color\":\"#00160E\",\"description_color\":\"#7F7F7F\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"294dea9a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-phone-call-line\",\"library\":\"jkiticon\"},\"title_text\":\"Call Us\",\"description_text\":\"+1 505 555 5555\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"description_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"globals\\/typography?id=8966ad4\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"view\":\"framed\",\"icon_padding\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"5ef5f227\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":21.452000000000001733724275254644453525543212890625,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"234dd6d2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"align\":\"right\",\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=558fe58\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"hover_animation\":\"float\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1ed2d9f1\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":3,\"blur\":15,\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.06)\"},\"background_background\":\"classic\",\"z_index\":1,\"jet_sticky_section_sticky\":\"yes\",\"jet_sticky_section_sticky_z_index\":\"10\",\"jet_sticky_section_sticky_background_background\":\"classic\",\"jet_sticky_section_sticky_background_color\":\"#FFFFFF\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"z_index_tablet\":4,\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a58714b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80.3490000000000037516656448133289813995361328125,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":20,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"14c9c516\",\"elType\":\"widget\",\"settings\":{\"sg_menu_choose\":\"menu\",\"sg_mobile_menu_logo\":{\"id\":107,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_mobile_menu_logo_size_imagesize_size\":\"full\",\"sg_mobile_menu_icon\":{\"value\":\"jki jki-bars-solid\",\"library\":\"jkiticon\"},\"st_menu_wrapper_height_responsive\":{\"unit\":\"px\",\"size\":74,\"sizes\":[]},\"st_menu_wrapper_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"},\"st_submenu_item_indicator_margin_responsive\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_submenu_panel_padding_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_panel_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_background_background_background\":\"classic\",\"st_submenu_panel_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_position_responsive_tablet\":\"left\",\"st_hamburger_menu_icon_background_background_background\":\"classic\",\"st_hamburger_menu_icon_background_background_color\":\"#FFFFFF00\",\"st_hamburger_menu_icon_border_border_border\":\"solid\",\"st_hamburger_menu_icon_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_hamburger_menu_close_background_background_background\":\"classic\",\"st_hamburger_menu_close_border_border_border\":\"solid\",\"st_hamburger_menu_close_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"st_menu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_menu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_color_responsive\":\"\",\"st_submenu_panel_background_background_color\":\"\",\"st_submenu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_submenu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_wrapper_mobile_color_tablet_responsive_tablet\":\"\",\"st_menu_item_text_normal_color_responsive_tablet\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_item_text_active_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_submenu_item_indicator_color_responsive_tablet\":\"\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_icon_color_hover_responsive_tablet\":\"\",\"st_hamburger_menu_close_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_close_color_hover_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_wrapper_background_background_color\":\"\",\"st_hamburger_menu_close_background_background_color\":\"globals\\/colors?id=secondary\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_border_border_color\":\"\",\"st_hamburger_menu_close_background_hover_background_color\":\"globals\\/colors?id=accent\"},\"st_submenu_panel_box_shadow_box_shadow_box_shadow_type\":\"yes\",\"st_submenu_panel_box_shadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_submenu_item_indicator_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_submenu_item_indicator_border_border_border\":\"solid\",\"st_submenu_item_indicator_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_submenu_panel_background_background_color\":\"#FFFFFF\",\"st_hamburger_menu_icon_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_icon_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_close_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_hamburger_menu_close_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_hamburger_menu_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_menu_item_text_normal_color_responsive_tablet\":\"#6EC1E4\",\"st_menu_item_text_hover_color_responsive_tablet\":\"#54595F\",\"st_menu_item_text_active_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_close_background_background_color\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"#54595F\",\"st_hamburger_menu_position_responsive_mobile\":\"left\",\"st_hamburger_menu_close_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_hamburger_menu_close_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"st_mobile_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"st_menu_item_text_hover_color_responsive\":\"#54595F\",\"st_menu_item_text_active_color_responsive\":\"#54595F\",\"st_mobile_menu_object_fit_responsive_tablet\":\"cover\",\"st_mobile_menu_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_hamburger_menu_close_background_hover_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_nav_menu\"}],\"isInner\":\"\"},{\"id\":\"5e047152\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":19.650999999999999801048033987171947956085205078125,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":30,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":80},\"elements\":[{\"id\":\"976c2f8\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"jki jki-facebook-f\",\"library\":\"jkiticon\"},\"_id\":\"0fb8cc7\"},{\"social_icon\":{\"value\":\"fab fa-x-twitter\",\"library\":\"fa-brands\"},\"_id\":\"4be5bc7\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"147010a\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"df2ad14\"}],\"shape\":\"circle\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"hover_animation\":\"shrink\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=secondary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_secondary_color\":\"globals\\/colors?id=accent\",\"hover_primary_color\":\"globals\\/colors?id=accent\"},\"align_tablet\":\"right\",\"hover_primary_color\":\"#006943\",\"hover_secondary_color\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(606,113,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(615,115,'_wp_attached_file','2024/07/Prestige-Luxury-Cleanings-LLC-logo-02.png'),(616,115,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:1024;s:4:\"file\";s:49:\"2024/07/Prestige-Luxury-Cleanings-LLC-logo-02.png\";s:8:\"filesize\";i:36140;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:49:\"Prestige-Luxury-Cleanings-LLC-logo-02-300x240.png\";s:5:\"width\";i:300;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10864;}s:5:\"large\";a:5:{s:4:\"file\";s:50:\"Prestige-Luxury-Cleanings-LLC-logo-02-1024x819.png\";s:5:\"width\";i:1024;s:6:\"height\";i:819;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:48776;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:49:\"Prestige-Luxury-Cleanings-LLC-logo-02-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5839;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:49:\"Prestige-Luxury-Cleanings-LLC-logo-02-768x614.png\";s:5:\"width\";i:768;s:6:\"height\";i:614;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:33502;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(618,116,'_wp_page_template','default'),(619,116,'_elementor_edit_mode','builder'),(620,116,'_elementor_template_type','wp-post'),(621,116,'_elementor_version','3.23.2'),(622,116,'_elementor_data','[{\"id\":\"25324c9a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#00160E\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_overlay_image\":{\"id\":\"51\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/green-lawn-on-ground-PT9KCVE.jpg\"}},\"elements\":[{\"id\":\"2ed3ced5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"cf27f42\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"gap\":\"no\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"36e45d2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":\"33.596\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"498deddc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"52\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/logo-footer.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"529be226\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod \",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=e8dc402\",\"typography_typography\":\"globals\\/typography?id=text\"},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6dfa1147\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"123 Wall St Miami, FL 12345\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"8cfc1eb\"},{\"text\":\"email@email.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"01dad71\",\"link\":{\"url\":\"mailto:email@email.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+1 505 555 5555\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"e0e44de\",\"link\":{\"url\":\"tel:+1 505 555 5555\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"text_color\":\"globals\\/colors?id=06a34e7\",\"icon_typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":\"1\"},{\"id\":\"4dc3ac3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":\"17.193\",\"_inline_size_mobile\":\"100\",\"_inline_size_tablet\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7772d55b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Other Pages\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=8966ad4\"},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41eea4c7\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Home\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8e5ccb4\"},{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"_id\":\"b2b06d7\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2a5846b\"},{\"text\":\"Contact\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcbb08b\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=accent\",\"text_color\":\"\",\"icon_color\":\"globals\\/colors?id=accent\",\"icon_typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":\"1\"},{\"id\":\"35cfcdfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":\"14.211\",\"_inline_size_mobile\":\"100\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"13522926\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick Links\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=8966ad4\"},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bc61709\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8e5ccb4\"},{\"text\":\"Term Of Service\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"_id\":\"b2b06d7\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"FAQ\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"76de45a\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=accent\",\"text_color\":\"\",\"icon_color\":\"globals\\/colors?id=accent\",\"icon_typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":\"1\"},{\"id\":\"3e19ab1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":\"35\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"2abe676b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=8966ad4\"},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f25bdf9\",\"elType\":\"widget\",\"settings\":{\"sg_form_email_placeholder\":\"Your Email Address\",\"sg_form_email_icon_enable\":\"\",\"sg_form_button_text\":\"Send\",\"sg_form_button_icon_enable\":\"\",\"sg_form_success_message\":\"Successfully listed this email\",\"st_input_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_input_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"20\",\"bottom\":\"16\",\"left\":\"20\",\"isLinked\":false},\"st_input_border_border_border\":\"solid\",\"st_input_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_input_margin_right_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_input_placeholder_color_responsive\":\"#B5B8C4\",\"st_button_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"10\",\"bottom\":\"21\",\"left\":\"10\",\"isLinked\":false},\"st_button_width_responsive\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_input_placeholder_color_responsive\":\"\",\"st_input_placeholder_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_input_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_input_color_responsive\":\"globals\\/colors?id=primary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"st_input_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_input_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_input_width_responsive_tablet\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"st_button_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_button_width_responsive_tablet\":{\"unit\":\"px\",\"size\":105,\"sizes\":[]},\"st_button_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"30\",\"bottom\":\"19\",\"left\":\"30\",\"isLinked\":false},\"st_button_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_width_responsive_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_input_width_responsive\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"st_input_width_responsive_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"st_button_hover_background_background_background\":\"classic\",\"st_input_background_background_background\":\"classic\",\"st_input_background_background_color\":\"#FFFFFF\",\"st_button_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_input_color_responsive\":\"#0B1B69\",\"st_button_normal_color_responsive\":\"#0B1B69\",\"st_button_normal_background_background_color\":\"#FFD027\"},\"elements\":[],\"widgetType\":\"jkit_mailchimp\"},{\"id\":\"2f02530a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Get the latest news & updates\\n\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"text_color\":\"globals\\/colors?id=e8dc402\",\"typography_typography\":\"globals\\/typography?id=text\"},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2579224c\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"jki jki-facebook-f\",\"library\":\"jkiticon\"},\"_id\":\"0fb8cc7\"},{\"social_icon\":{\"value\":\"fab fa-x-twitter\",\"library\":\"fa-brands\"},\"_id\":\"4be5bc7\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"147010a\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"df2ad14\"}],\"shape\":\"circle\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"hover_animation\":\"shrink\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=secondary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_secondary_color\":\"globals\\/colors?id=accent\",\"hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"4e4c8b50\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text\":\"Divider\",\"color\":\"#A0AABA2B\",\"gap\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5f48f734\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"#C2C2C2\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"gap\":\"no\"},\"elements\":[{\"id\":\"fe8e002\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"63e6eb20\",\"elType\":\"widget\",\"settings\":{\"editor\":\"

\\u00a9 2024 Prestige Luxury Cleanings LLC. All rights reserved.<\\/p>\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f882794\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"},{\"id\":\"427e430a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"42937d5b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"

Design and development by Design Funnel.<\\/p>\",\"align\":\"right\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f882794\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(623,116,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(625,117,'_wp_page_template','default'),(626,117,'_elementor_edit_mode','builder'),(627,117,'_elementor_template_type','wp-post'),(628,117,'_elementor_version','3.23.2'),(629,117,'_elementor_data','[{\"id\":\"25324c9a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#00160E\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_overlay_image\":{\"id\":\"51\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/green-lawn-on-ground-PT9KCVE.jpg\"}},\"elements\":[{\"id\":\"2ed3ced5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"cf27f42\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"gap\":\"no\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"36e45d2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":\"33.596\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"498deddc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"52\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/logo-footer.png\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"529be226\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod \",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=e8dc402\",\"typography_typography\":\"globals\\/typography?id=text\"},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6dfa1147\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"123 Wall St Miami, FL 12345\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"8cfc1eb\"},{\"text\":\"email@email.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"01dad71\",\"link\":{\"url\":\"mailto:email@email.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+1 505 555 5555\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"e0e44de\",\"link\":{\"url\":\"tel:+1 505 555 5555\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"text_color\":\"globals\\/colors?id=06a34e7\",\"icon_typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":\"1\"},{\"id\":\"4dc3ac3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":\"17.193\",\"_inline_size_mobile\":\"100\",\"_inline_size_tablet\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7772d55b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Other Pages\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=8966ad4\"},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41eea4c7\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Home\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8e5ccb4\"},{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"_id\":\"b2b06d7\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2a5846b\"},{\"text\":\"Contact\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcbb08b\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=accent\",\"text_color\":\"\",\"icon_color\":\"globals\\/colors?id=accent\",\"icon_typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":\"1\"},{\"id\":\"35cfcdfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":\"14.211\",\"_inline_size_mobile\":\"100\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"13522926\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick Links\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=8966ad4\"},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bc61709\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8e5ccb4\"},{\"text\":\"Term Of Service\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"_id\":\"b2b06d7\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"FAQ\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"76de45a\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=accent\",\"text_color\":\"\",\"icon_color\":\"globals\\/colors?id=accent\",\"icon_typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":\"1\"},{\"id\":\"3e19ab1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":\"35\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"2abe676b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=8966ad4\"},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f25bdf9\",\"elType\":\"widget\",\"settings\":{\"sg_form_email_placeholder\":\"Your Email Address\",\"sg_form_email_icon_enable\":\"\",\"sg_form_button_text\":\"Send\",\"sg_form_button_icon_enable\":\"\",\"sg_form_success_message\":\"Successfully listed this email\",\"st_input_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_input_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"20\",\"bottom\":\"16\",\"left\":\"20\",\"isLinked\":false},\"st_input_border_border_border\":\"solid\",\"st_input_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_input_margin_right_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_input_placeholder_color_responsive\":\"#B5B8C4\",\"st_button_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"10\",\"bottom\":\"21\",\"left\":\"10\",\"isLinked\":false},\"st_button_width_responsive\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_input_placeholder_color_responsive\":\"\",\"st_input_placeholder_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_input_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_input_color_responsive\":\"globals\\/colors?id=primary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"st_input_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_input_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_input_width_responsive_tablet\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"st_button_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_button_width_responsive_tablet\":{\"unit\":\"px\",\"size\":105,\"sizes\":[]},\"st_button_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"30\",\"bottom\":\"19\",\"left\":\"30\",\"isLinked\":false},\"st_button_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_width_responsive_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_input_width_responsive\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"st_input_width_responsive_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"st_button_hover_background_background_background\":\"classic\",\"st_input_background_background_background\":\"classic\",\"st_input_background_background_color\":\"#FFFFFF\",\"st_button_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_input_color_responsive\":\"#0B1B69\",\"st_button_normal_color_responsive\":\"#0B1B69\",\"st_button_normal_background_background_color\":\"#FFD027\"},\"elements\":[],\"widgetType\":\"jkit_mailchimp\"},{\"id\":\"2f02530a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Get the latest news & updates\\n\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"text_color\":\"globals\\/colors?id=e8dc402\",\"typography_typography\":\"globals\\/typography?id=text\"},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2579224c\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"jki jki-facebook-f\",\"library\":\"jkiticon\"},\"_id\":\"0fb8cc7\"},{\"social_icon\":{\"value\":\"fab fa-x-twitter\",\"library\":\"fa-brands\"},\"_id\":\"4be5bc7\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"147010a\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"df2ad14\"}],\"shape\":\"circle\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"hover_animation\":\"shrink\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=secondary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_secondary_color\":\"globals\\/colors?id=accent\",\"hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"4e4c8b50\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text\":\"Divider\",\"color\":\"#A0AABA2B\",\"gap\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5f48f734\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"#C2C2C2\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"gap\":\"no\"},\"elements\":[{\"id\":\"fe8e002\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"63e6eb20\",\"elType\":\"widget\",\"settings\":{\"editor\":\"

\\u00a9 2024 Prestige Luxury Cleanings LLC. All rights reserved.<\\/p>\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f882794\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"},{\"id\":\"427e430a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"42937d5b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"

Design and development by Design Funnel.<\\/p>\",\"align\":\"right\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f882794\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(630,117,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(632,118,'_wp_page_template','default'),(633,118,'_elementor_edit_mode','builder'),(634,118,'_elementor_template_type','wp-post'),(635,118,'_elementor_version','3.23.2'),(636,118,'_elementor_data','[{\"id\":\"25324c9a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#00160E\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_overlay_image\":{\"id\":\"51\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/green-lawn-on-ground-PT9KCVE.jpg\"}},\"elements\":[{\"id\":\"2ed3ced5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"cf27f42\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"gap\":\"no\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"36e45d2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":\"33.596\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"498deddc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":115,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-02.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"529be226\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod \",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=e8dc402\",\"typography_typography\":\"globals\\/typography?id=text\"},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6dfa1147\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"123 Wall St Miami, FL 12345\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"8cfc1eb\"},{\"text\":\"email@email.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"01dad71\",\"link\":{\"url\":\"mailto:email@email.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+1 505 555 5555\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"e0e44de\",\"link\":{\"url\":\"tel:+1 505 555 5555\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"text_color\":\"globals\\/colors?id=06a34e7\",\"icon_typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":\"1\"},{\"id\":\"4dc3ac3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":\"17.193\",\"_inline_size_mobile\":\"100\",\"_inline_size_tablet\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7772d55b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Other Pages\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=8966ad4\"},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41eea4c7\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Home\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8e5ccb4\"},{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"_id\":\"b2b06d7\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2a5846b\"},{\"text\":\"Contact\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcbb08b\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=accent\",\"text_color\":\"\",\"icon_color\":\"globals\\/colors?id=accent\",\"icon_typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":\"1\"},{\"id\":\"35cfcdfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":\"14.211\",\"_inline_size_mobile\":\"100\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"13522926\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick Links\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=8966ad4\"},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bc61709\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8e5ccb4\"},{\"text\":\"Term Of Service\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"_id\":\"b2b06d7\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"FAQ\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"76de45a\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=accent\",\"text_color\":\"\",\"icon_color\":\"globals\\/colors?id=accent\",\"icon_typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":\"1\"},{\"id\":\"3e19ab1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":\"35\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"2abe676b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=8966ad4\"},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f25bdf9\",\"elType\":\"widget\",\"settings\":{\"sg_form_email_placeholder\":\"Your Email Address\",\"sg_form_email_icon_enable\":\"\",\"sg_form_button_text\":\"Send\",\"sg_form_button_icon_enable\":\"\",\"sg_form_success_message\":\"Successfully listed this email\",\"st_input_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_input_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"20\",\"bottom\":\"16\",\"left\":\"20\",\"isLinked\":false},\"st_input_border_border_border\":\"solid\",\"st_input_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_input_margin_right_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_input_placeholder_color_responsive\":\"#B5B8C4\",\"st_button_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"10\",\"bottom\":\"21\",\"left\":\"10\",\"isLinked\":false},\"st_button_width_responsive\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_input_placeholder_color_responsive\":\"\",\"st_input_placeholder_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_input_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_input_color_responsive\":\"globals\\/colors?id=primary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"st_input_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_input_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_input_width_responsive_tablet\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"st_button_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_button_width_responsive_tablet\":{\"unit\":\"px\",\"size\":105,\"sizes\":[]},\"st_button_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"30\",\"bottom\":\"19\",\"left\":\"30\",\"isLinked\":false},\"st_button_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_width_responsive_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_input_width_responsive\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"st_input_width_responsive_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"st_button_hover_background_background_background\":\"classic\",\"st_input_background_background_background\":\"classic\",\"st_input_background_background_color\":\"#FFFFFF\",\"st_button_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_input_color_responsive\":\"#0B1B69\",\"st_button_normal_color_responsive\":\"#0B1B69\",\"st_button_normal_background_background_color\":\"#FFD027\"},\"elements\":[],\"widgetType\":\"jkit_mailchimp\"},{\"id\":\"2f02530a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Get the latest news & updates\\n\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"text_color\":\"globals\\/colors?id=e8dc402\",\"typography_typography\":\"globals\\/typography?id=text\"},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2579224c\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"jki jki-facebook-f\",\"library\":\"jkiticon\"},\"_id\":\"0fb8cc7\"},{\"social_icon\":{\"value\":\"fab fa-x-twitter\",\"library\":\"fa-brands\"},\"_id\":\"4be5bc7\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"147010a\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"df2ad14\"}],\"shape\":\"circle\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"hover_animation\":\"shrink\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=secondary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_secondary_color\":\"globals\\/colors?id=accent\",\"hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"4e4c8b50\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text\":\"Divider\",\"color\":\"#A0AABA2B\",\"gap\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5f48f734\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"#C2C2C2\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"gap\":\"no\"},\"elements\":[{\"id\":\"fe8e002\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"63e6eb20\",\"elType\":\"widget\",\"settings\":{\"editor\":\"

\\u00a9 2024 Prestige Luxury Cleanings LLC. All rights reserved.<\\/p>\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f882794\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"},{\"id\":\"427e430a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"42937d5b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"

Design and development by Design Funnel.<\\/p>\",\"align\":\"right\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f882794\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(637,118,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(640,119,'_elementor_edit_mode','builder'),(641,119,'_elementor_template_type','wp-page'),(642,119,'_elementor_version','3.23.2'),(643,119,'_wp_page_template','default'),(644,119,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(645,119,'_elementor_data','[{\"id\":\"35495243\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"Eldery male gardener using scissors for bushes\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"160\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0,\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_size_tablet\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"top center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00160E\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b\":\"#00000054\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_slideshow_gallery\":[{\"id\":\"58\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-with-hedge-trimmer-e1635892441479.jpg\"},{\"id\":\"59\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/professional-gardener-at-work-XU82AHW.jpg\"},{\"id\":\"60\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-buying-new-plantsP4VGX5F.jpg\"},{\"id\":\"61\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/garden-decorative-trees-trimming-by-professional-gardener-e1635864777836.jpg\"}]},\"elements\":[{\"id\":\"739a26d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":65,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=06a34e7\"}},\"elements\":[{\"id\":\"132d1a8e\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Complete For All\",\"sg_title_focused\":\" Landscape \",\"sg_title_after\":\" Service And Maintenance\",\"sg_title_html_tag\":\"h1\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=primary\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"7c49583a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"635cb25b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"23cf340e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37.85499999999999687361196265555918216705322265625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":48,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"1c4c950d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4768b6f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":62.14500000000000312638803734444081783294677734375,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"flex-start\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":52,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"34c0badb\",\"elType\":\"widget\",\"settings\":{\"sg_video_button_title\":\"Play Video\",\"sg_video_button_icon\":{\"value\":\"jki jki-play-button-light\",\"library\":\"jkiticon\"},\"sg_video_url\":\"https:\\/\\/www.youtube.com\\/watch?v=MLpWrANjFbI\",\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_width_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_line_height_responsive\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#FFD402\",\"st_button_normal_glow_color_responsive\":\"#00694361\",\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"_element_width\":\"auto\",\"__globals__\":{\"st_button_normal_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=accent\",\"st_border_normal_border_border_color\":\"\",\"st_button_hover_text_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_glow_color_responsive\":\"\"},\"st_button_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_button_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_width_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_line_height_responsive_mobile\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"st_border_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_border_normal_border_border_color\":\"#FFD027\",\"st_button_line_height_responsive_tablet\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"st_button_normal_background_background_color\":\"#006943\",\"st_button_hover_text_color_responsive\":\"#006943\",\"st_button_hover_background_background_color\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_video_button\"},{\"id\":\"232ec8da\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Intro\",\"align\":\"right\",\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"hide_mobile\":\"hidden-mobile\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#00160E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49b348ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"edc2dbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.00200000000000244426701101474463939666748046875,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e2246bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Greenco\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"139cc45f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Landscaping And Garden Care Services\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dc78e71\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"597dc67d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"26cf3840\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b19bda0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"62\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-and-his-flowers.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"980\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a46c929\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c4d8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Public Liability Insurance\",\"_id\":\"a978734\"},{\"text\":\"Environmentally Friendly\",\"_id\":\"1cd10a1\"},{\"text\":\"On Time, Every Time\",\"_id\":\"c6767db\"},{\"text\":\"Beautiful Garden Designs\",\"_id\":\"d4743f4\"},{\"text\":\"Modern Machinery And Tool\",\"_id\":\"535c17d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"398321ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4c7c15d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.9129999999999967030817060731351375579833984375,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5683e90d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"63\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-topiary-job.jpg\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"860\",\"height\":\"980\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b6190b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"64\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden.jpg\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"-59\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"250636f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"713aa588\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"51a71b71\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#00160E\",\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=primary\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=06a34e7\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"st_content_title_color_responsive\":\"#7F7F7F\",\"st_super_color_responsive\":\"#FFD402\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\",\"sg_setting_html_tag\":\"span\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5557874f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"73847855\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"65\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/garden-maintenance-performed-by-pro-gardener.jpg\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"b1058a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":224,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":478,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":325,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"69098afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"40\",\"bottom\":\"80\",\"left\":\"40\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"7cb7bf82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91cb5d9\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26358abf\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Have The Perfect Solution For Your Landscape Problems\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15a36cc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42c8d36c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7114454f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76f24ca8\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Variation Gardening\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"138cc39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28a78a06\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Expert Landscapers\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c5ac2bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38fdb183\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3ce0b95b\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Affordable Price\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-save-money-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4c80f133\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7451fb11\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Free Consultation\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-Consultancy-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e93f2c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"39a46e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6773b2a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"87647bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find The Best Service For Your Garden\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e2cc66e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30164d28\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e8639b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"66\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/men-watering-garden-plants.jpg\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fa92c14\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2c434fb3\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"5abe2e18\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33425b9f\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Watering Garden\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"472ed309\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"67cb221c\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37c1cce6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"67\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-finishing-garden.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b3e60ba\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3b291bbf\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"20b91942\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5649f719\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Lawn Maintenance\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6300b69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"256ddf68\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3735f0b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"58\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-with-hedge-trimmer-e1635892441479.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"741128a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3691562\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3c8a0e6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5eb1b3b9\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Cutting Leaf\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"25f37292\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"61c9ff8e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"790dd775\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"360\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"160\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"140\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"background_overlay_color_b\":\"#000414\",\"background_overlay_image\":{\"id\":\"69\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/a-gardener-watering-plants-in-a-flowerbed-2RT8DWL.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]}},\"elements\":[{\"id\":\"a2ed5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7e37f762\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Landscaping\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a092069\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d5099\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need Someone To Take Care Your Garden & Lawn?\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=07ee36d\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1198756c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"66521a56\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":20,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":4},\"elements\":[{\"id\":\"1a89d099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.5090000000000003410605131648480892181396484375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"id\":\"70\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/happy-gardeners-with-plants-and-lawn-mower.jpg\"},\"background_position\":\"initial\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"space-between\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_color\":\"#FFFFFF00\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":9,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"46b821c1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":219,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":183,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"449971a9\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Make Appointment & Take Care Your Garden\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=secondary\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=93191b3\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_content_title_color_hover_responsive\":\"#FFFFFF\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#FFFFFF\",\"st_icon_color_responsive\":\"#00E5CC\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#00E5CC\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":false},{\"id\":\"13747b6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.4909999999999996589394868351519107818603515625,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a13f42e\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"260***1635696832144\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fde8487\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"59883b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1617542a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Process\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29c7aa96\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Complete Every Step Carefully\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ced0d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d62463d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18cf7834\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"41f79872\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-consult-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consultation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65e1b761\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"span\",\"title_color\":\"#FFD402\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#006943\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12cdbf13\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4175d29\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-pencil_art-light\",\"library\":\"jkiticon\"},\"title_text\":\"Design Installation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2adabf01\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b628\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"569b3221\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consturction \",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"67d6b2e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6fff79c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53c9a76e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"title_text\":\"Finished Work\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"555aace0\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d57540b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"71\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardening-background-with-garden-tolls-A9BGNJU.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]}},\"elements\":[{\"id\":\"147831a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"5a53d120\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"20\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Years of Experience\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"488f4727\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"6b8f6eae\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"76666759\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f532f9e\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"2850\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Happy Customers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"265fd738\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5473dc22\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"64\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Expert Landscapers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b38731e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4945f2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"627cd42c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65e3182\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.56499999999999772626324556767940521240234375},\"elements\":[{\"id\":\"43108b53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Projects\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45328989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Project We Have Done\\n\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"f382082\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.49900000000000233058017329312860965728759765625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":40,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"55ecfb57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"67afcbfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.0330000000000012505552149377763271331787109375,\"_inline_size_tablet\":23,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4989aa04\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Projects\",\"align\":\"right\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"left\",\"hover_animation\":\"float\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"32515d84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"3f5753f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"21982cfb\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"72\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-pruning-and-shaping-bushes-.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Cutting Leaf\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"404dc561\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"58d29b54\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"73\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/backyard-garden.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Home Garden\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"3bff1dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"3c24185a\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"64\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Build Backyard\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_image_height_responsive_tablet\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b3cb58d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_image\":{\"id\":\"74\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-moving-aerial-photo-Z8KDGJ9.jpg\"},\"background_overlay_color\":\"#0000007D\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]}},\"elements\":[{\"id\":\"79705206\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"51c9a732\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73b2fe0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"What They Says About Us\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4876e632\",\"elType\":\"widget\",\"settings\":{\"sg_layout_testimonial_choose\":\"style-2\",\"sg_testimonials_image_size_imagesize_size\":\"medium\",\"sg_testimonials_list\":[{\"sg_testimonials_list_client_avatar\":{\"id\":\"75\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/3SUMAU.jpg\"},\"_id\":\"6e9b2e1\",\"sg_testimonials_list_client_name\":\"Regan Traynor\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"76\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/CASCKD8.jpg\"},\"sg_testimonials_list_client_name\":\"Maisha Dunn\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"d069a43\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"77\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/MKLVKTE.jpg\"},\"sg_testimonials_list_client_name\":\"Reis Leonard\",\"sg_testimonials_list_designation\":\"Businessman\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"05c24f5\"}],\"st_wrapper_alignment_responsive\":\"left\",\"st_client_name_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_description_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_client_name_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_client_designation_normal_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_client_designation_normal_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=d343bdf\",\"st_rating_color_responsive\":\"\",\"st_client_name_normal_color_responsive\":\"\",\"st_quote_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_layout_background_background_color\":\"\"},\"st_layout_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_layout_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_wrapper_fix_height\":\"\",\"sg_setting_autoplay\":\"yes\",\"sg_setting_autoplay_pause\":\"\",\"sg_setting_arrow\":\"\",\"sg_setting_arrow_position\":\"middle-edge\",\"sg_setting_dots\":\"\",\"sg_setting_quote\":\"yes\",\"sg_setting_rating\":\"\",\"st_layout_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_layout_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_slide_show_responsive\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"sg_setting_quote_icon\":{\"value\":\"jki jki-quote-light\",\"library\":\"jkiticon\"},\"sg_layout_image_position\":\"below\",\"st_layout_background_background_background\":\"classic\",\"st_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position\":\"\",\"st_quote_override_position_top_responsive\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"st_quote_override_position_left_responsive\":{\"unit\":\"px\",\"size\":442,\"sizes\":[]},\"st_client_name_normal_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_quote_normal_font_size_responsive\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"st_client_image_margin_responsive\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_rating_font_size_responsive\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"st_rating_margin_right_responsive\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_setting_slide_show_responsive_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"st_wrapper_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position_top_responsive_tablet\":{\"unit\":\"px\",\"size\":249,\"sizes\":[]},\"st_quote_override_position_top_responsive_mobile\":{\"unit\":\"px\",\"size\":193,\"sizes\":[]},\"st_quote_override_position_left_responsive_tablet\":{\"unit\":\"px\",\"size\":265,\"sizes\":[]},\"st_quote_override_position_left_responsive_mobile\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]},\"st_quote_normal_font_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"st_description_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_normal_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64afd05f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"746d276b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30338dfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f950be4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ca735b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5d6ca3ad\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_title_hover_color_responsive\":\"globals\\/colors?id=secondary\",\"st_readmore_hover_color_responsive\":\"globals\\/colors?id=secondary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#646974\",\"st_excerpt_color_responsive\":\"#646974\",\"st_title_normal_color_responsive\":\"#272B36\",\"st_thumbnail_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_title_hover_color_responsive\":\"#FA8D25\",\"st_readmore_normal_color_responsive\":\"#FA8D25\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":false}],\"isInner\":false}]'),(646,119,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(648,120,'_elementor_edit_mode','builder'),(649,120,'_elementor_template_type','wp-page'),(650,120,'_elementor_version','3.23.2'),(651,120,'_wp_page_template','default'),(652,120,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'); INSERT INTO `victorq_postmeta` VALUES (653,120,'_elementor_data','[{\"id\":\"35495243\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"Eldery male gardener using scissors for bushes\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"160\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0,\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_size_tablet\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"top center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00160E\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b\":\"#00000054\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_slideshow_gallery\":[{\"id\":\"58\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-with-hedge-trimmer-e1635892441479.jpg\"},{\"id\":\"59\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/professional-gardener-at-work-XU82AHW.jpg\"},{\"id\":\"60\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-buying-new-plantsP4VGX5F.jpg\"},{\"id\":\"61\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/garden-decorative-trees-trimming-by-professional-gardener-e1635864777836.jpg\"}]},\"elements\":[{\"id\":\"739a26d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":65,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=06a34e7\"}},\"elements\":[{\"id\":\"132d1a8e\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Complete For All\",\"sg_title_focused\":\" Landscape \",\"sg_title_after\":\" Service And Maintenance\",\"sg_title_html_tag\":\"h1\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=primary\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"7c49583a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"635cb25b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"23cf340e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37.85499999999999687361196265555918216705322265625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":48,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"1c4c950d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4768b6f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":62.14500000000000312638803734444081783294677734375,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"flex-start\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":52,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"34c0badb\",\"elType\":\"widget\",\"settings\":{\"sg_video_button_title\":\"Play Video\",\"sg_video_button_icon\":{\"value\":\"jki jki-play-button-light\",\"library\":\"jkiticon\"},\"sg_video_url\":\"https:\\/\\/www.youtube.com\\/watch?v=MLpWrANjFbI\",\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_width_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_line_height_responsive\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#FFD402\",\"st_button_normal_glow_color_responsive\":\"#00694361\",\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"_element_width\":\"auto\",\"__globals__\":{\"st_button_normal_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=accent\",\"st_border_normal_border_border_color\":\"\",\"st_button_hover_text_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_glow_color_responsive\":\"\"},\"st_button_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_button_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_width_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_line_height_responsive_mobile\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"st_border_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_border_normal_border_border_color\":\"#FFD027\",\"st_button_line_height_responsive_tablet\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"st_button_normal_background_background_color\":\"#006943\",\"st_button_hover_text_color_responsive\":\"#006943\",\"st_button_hover_background_background_color\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_video_button\"},{\"id\":\"232ec8da\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Intro\",\"align\":\"right\",\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"hide_mobile\":\"hidden-mobile\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#00160E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49b348ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"edc2dbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.00200000000000244426701101474463939666748046875,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e2246bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Greenco\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"139cc45f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Landscaping And Garden Care Services\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dc78e71\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"597dc67d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"26cf3840\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b19bda0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"62\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-and-his-flowers.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"980\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a46c929\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c4d8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Public Liability Insurance\",\"_id\":\"a978734\"},{\"text\":\"Environmentally Friendly\",\"_id\":\"1cd10a1\"},{\"text\":\"On Time, Every Time\",\"_id\":\"c6767db\"},{\"text\":\"Beautiful Garden Designs\",\"_id\":\"d4743f4\"},{\"text\":\"Modern Machinery And Tool\",\"_id\":\"535c17d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"398321ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4c7c15d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.9129999999999967030817060731351375579833984375,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5683e90d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"63\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-topiary-job.jpg\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"860\",\"height\":\"980\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b6190b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"64\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden.jpg\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"-59\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"250636f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"713aa588\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"51a71b71\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#00160E\",\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=primary\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=06a34e7\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"st_content_title_color_responsive\":\"#7F7F7F\",\"st_super_color_responsive\":\"#FFD402\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\",\"sg_setting_html_tag\":\"span\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5557874f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"73847855\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"65\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/garden-maintenance-performed-by-pro-gardener.jpg\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"b1058a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":224,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":478,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":325,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"69098afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"40\",\"bottom\":\"80\",\"left\":\"40\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"7cb7bf82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91cb5d9\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26358abf\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Have The Perfect Solution For Your Landscape Problems\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15a36cc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42c8d36c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7114454f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76f24ca8\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Variation Gardening\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"138cc39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28a78a06\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Expert Landscapers\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c5ac2bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38fdb183\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3ce0b95b\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Affordable Price\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-save-money-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4c80f133\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7451fb11\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Free Consultation\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-Consultancy-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e93f2c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"39a46e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6773b2a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"87647bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find The Best Service For Your Garden\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e2cc66e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30164d28\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e8639b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"66\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/men-watering-garden-plants.jpg\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fa92c14\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2c434fb3\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"5abe2e18\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33425b9f\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Watering Garden\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"472ed309\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"67cb221c\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37c1cce6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"67\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-finishing-garden.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b3e60ba\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3b291bbf\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"20b91942\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5649f719\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Lawn Maintenance\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6300b69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"256ddf68\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3735f0b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"58\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-with-hedge-trimmer-e1635892441479.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"741128a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3691562\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3c8a0e6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5eb1b3b9\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Cutting Leaf\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"25f37292\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"61c9ff8e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"790dd775\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"360\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"160\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"140\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"background_overlay_color_b\":\"#000414\",\"background_overlay_image\":{\"id\":\"69\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/a-gardener-watering-plants-in-a-flowerbed-2RT8DWL.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]}},\"elements\":[{\"id\":\"a2ed5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7e37f762\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Landscaping\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a092069\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d5099\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need Someone To Take Care Your Garden & Lawn?\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=07ee36d\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1198756c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"66521a56\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":20,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":4},\"elements\":[{\"id\":\"1a89d099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.5090000000000003410605131648480892181396484375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"id\":\"70\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/happy-gardeners-with-plants-and-lawn-mower.jpg\"},\"background_position\":\"initial\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"space-between\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_color\":\"#FFFFFF00\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":9,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"46b821c1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":219,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":183,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"449971a9\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Make Appointment & Take Care Your Garden\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=secondary\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=93191b3\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_content_title_color_hover_responsive\":\"#FFFFFF\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#FFFFFF\",\"st_icon_color_responsive\":\"#00E5CC\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#00E5CC\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":false},{\"id\":\"13747b6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.4909999999999996589394868351519107818603515625,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a13f42e\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"260***1635696832144\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fde8487\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"59883b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1617542a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Process\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29c7aa96\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Complete Every Step Carefully\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ced0d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d62463d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18cf7834\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"41f79872\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-consult-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consultation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65e1b761\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"span\",\"title_color\":\"#FFD402\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#006943\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12cdbf13\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4175d29\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-pencil_art-light\",\"library\":\"jkiticon\"},\"title_text\":\"Design Installation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2adabf01\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b628\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"569b3221\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consturction \",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"67d6b2e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6fff79c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53c9a76e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"title_text\":\"Finished Work\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"555aace0\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d57540b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"71\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardening-background-with-garden-tolls-A9BGNJU.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]}},\"elements\":[{\"id\":\"147831a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"5a53d120\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"20\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Years of Experience\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"488f4727\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"6b8f6eae\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"76666759\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f532f9e\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"2850\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Happy Customers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"265fd738\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5473dc22\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"64\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Expert Landscapers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b38731e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4945f2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"627cd42c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65e3182\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.56499999999999772626324556767940521240234375},\"elements\":[{\"id\":\"43108b53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Projects\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45328989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Project We Have Done\\n\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"f382082\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.49900000000000233058017329312860965728759765625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":40,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"55ecfb57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"67afcbfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.0330000000000012505552149377763271331787109375,\"_inline_size_tablet\":23,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4989aa04\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Projects\",\"align\":\"right\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"left\",\"hover_animation\":\"float\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"32515d84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"3f5753f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"21982cfb\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"72\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-pruning-and-shaping-bushes-.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Cutting Leaf\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"404dc561\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"58d29b54\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"73\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/backyard-garden.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Home Garden\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"3bff1dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"3c24185a\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"64\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Build Backyard\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_image_height_responsive_tablet\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b3cb58d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_image\":{\"id\":\"74\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-moving-aerial-photo-Z8KDGJ9.jpg\"},\"background_overlay_color\":\"#0000007D\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]}},\"elements\":[{\"id\":\"79705206\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"51c9a732\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73b2fe0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"What They Says About Us\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4876e632\",\"elType\":\"widget\",\"settings\":{\"sg_layout_testimonial_choose\":\"style-2\",\"sg_testimonials_image_size_imagesize_size\":\"medium\",\"sg_testimonials_list\":[{\"sg_testimonials_list_client_avatar\":{\"id\":\"75\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/3SUMAU.jpg\"},\"_id\":\"6e9b2e1\",\"sg_testimonials_list_client_name\":\"Regan Traynor\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"76\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/CASCKD8.jpg\"},\"sg_testimonials_list_client_name\":\"Maisha Dunn\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"d069a43\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"77\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/MKLVKTE.jpg\"},\"sg_testimonials_list_client_name\":\"Reis Leonard\",\"sg_testimonials_list_designation\":\"Businessman\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"05c24f5\"}],\"st_wrapper_alignment_responsive\":\"left\",\"st_client_name_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_description_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_client_name_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_client_designation_normal_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_client_designation_normal_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=d343bdf\",\"st_rating_color_responsive\":\"\",\"st_client_name_normal_color_responsive\":\"\",\"st_quote_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_layout_background_background_color\":\"\"},\"st_layout_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_layout_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_wrapper_fix_height\":\"\",\"sg_setting_autoplay\":\"yes\",\"sg_setting_autoplay_pause\":\"\",\"sg_setting_arrow\":\"\",\"sg_setting_arrow_position\":\"middle-edge\",\"sg_setting_dots\":\"\",\"sg_setting_quote\":\"yes\",\"sg_setting_rating\":\"\",\"st_layout_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_layout_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_slide_show_responsive\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"sg_setting_quote_icon\":{\"value\":\"jki jki-quote-light\",\"library\":\"jkiticon\"},\"sg_layout_image_position\":\"below\",\"st_layout_background_background_background\":\"classic\",\"st_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position\":\"\",\"st_quote_override_position_top_responsive\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"st_quote_override_position_left_responsive\":{\"unit\":\"px\",\"size\":442,\"sizes\":[]},\"st_client_name_normal_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_quote_normal_font_size_responsive\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"st_client_image_margin_responsive\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_rating_font_size_responsive\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"st_rating_margin_right_responsive\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_setting_slide_show_responsive_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"st_wrapper_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position_top_responsive_tablet\":{\"unit\":\"px\",\"size\":249,\"sizes\":[]},\"st_quote_override_position_top_responsive_mobile\":{\"unit\":\"px\",\"size\":193,\"sizes\":[]},\"st_quote_override_position_left_responsive_tablet\":{\"unit\":\"px\",\"size\":265,\"sizes\":[]},\"st_quote_override_position_left_responsive_mobile\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]},\"st_quote_normal_font_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"st_description_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_normal_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64afd05f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"746d276b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30338dfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f950be4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ca735b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5d6ca3ad\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_title_hover_color_responsive\":\"globals\\/colors?id=secondary\",\"st_readmore_hover_color_responsive\":\"globals\\/colors?id=secondary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#646974\",\"st_excerpt_color_responsive\":\"#646974\",\"st_title_normal_color_responsive\":\"#272B36\",\"st_thumbnail_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_title_hover_color_responsive\":\"#FA8D25\",\"st_readmore_normal_color_responsive\":\"#FA8D25\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":false}],\"isInner\":false}]'),(654,120,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(656,121,'_elementor_edit_mode','builder'),(657,121,'_elementor_template_type','wp-page'),(658,121,'_elementor_version','3.23.2'),(659,121,'_wp_page_template','default'),(660,121,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(661,121,'_elementor_data','[{\"id\":\"35495243\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"Eldery male gardener using scissors for bushes\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"160\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0,\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_size_tablet\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"top center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00160E\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b\":\"#00000054\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_slideshow_gallery\":[{\"id\":\"58\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-with-hedge-trimmer-e1635892441479.jpg\"},{\"id\":\"59\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/professional-gardener-at-work-XU82AHW.jpg\"},{\"id\":\"60\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-buying-new-plantsP4VGX5F.jpg\"},{\"id\":\"61\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/garden-decorative-trees-trimming-by-professional-gardener-e1635864777836.jpg\"}]},\"elements\":[{\"id\":\"739a26d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":65,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=06a34e7\"}},\"elements\":[{\"id\":\"132d1a8e\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Complete For All\",\"sg_title_focused\":\" Landscape \",\"sg_title_after\":\" Service And Maintenance\",\"sg_title_html_tag\":\"h1\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=primary\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"7c49583a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"635cb25b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"23cf340e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37.85499999999999687361196265555918216705322265625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":48,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"1c4c950d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4768b6f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":62.14500000000000312638803734444081783294677734375,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"flex-start\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":52,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"34c0badb\",\"elType\":\"widget\",\"settings\":{\"sg_video_button_title\":\"Play Video\",\"sg_video_button_icon\":{\"value\":\"jki jki-play-button-light\",\"library\":\"jkiticon\"},\"sg_video_url\":\"https:\\/\\/www.youtube.com\\/watch?v=MLpWrANjFbI\",\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_width_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_line_height_responsive\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#FFD402\",\"st_button_normal_glow_color_responsive\":\"#00694361\",\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"_element_width\":\"auto\",\"__globals__\":{\"st_button_normal_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=accent\",\"st_border_normal_border_border_color\":\"\",\"st_button_hover_text_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_glow_color_responsive\":\"\"},\"st_button_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_button_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_width_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_line_height_responsive_mobile\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"st_border_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_border_normal_border_border_color\":\"#FFD027\",\"st_button_line_height_responsive_tablet\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"st_button_normal_background_background_color\":\"#006943\",\"st_button_hover_text_color_responsive\":\"#006943\",\"st_button_hover_background_background_color\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_video_button\"},{\"id\":\"232ec8da\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Intro\",\"align\":\"right\",\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"hide_mobile\":\"hidden-mobile\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#00160E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49b348ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"edc2dbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.00200000000000244426701101474463939666748046875,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e2246bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Greenco\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"139cc45f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Landscaping And Garden Care Services\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dc78e71\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"597dc67d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"26cf3840\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b19bda0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"62\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-and-his-flowers.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"980\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a46c929\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c4d8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Public Liability Insurance\",\"_id\":\"a978734\"},{\"text\":\"Environmentally Friendly\",\"_id\":\"1cd10a1\"},{\"text\":\"On Time, Every Time\",\"_id\":\"c6767db\"},{\"text\":\"Beautiful Garden Designs\",\"_id\":\"d4743f4\"},{\"text\":\"Modern Machinery And Tool\",\"_id\":\"535c17d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"398321ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4c7c15d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.9129999999999967030817060731351375579833984375,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5683e90d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"63\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-topiary-job.jpg\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"860\",\"height\":\"980\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b6190b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"64\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden.jpg\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"-59\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"250636f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"713aa588\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"51a71b71\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#00160E\",\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=primary\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=06a34e7\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"st_content_title_color_responsive\":\"#7F7F7F\",\"st_super_color_responsive\":\"#FFD402\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\",\"sg_setting_html_tag\":\"span\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5557874f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"73847855\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"65\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/garden-maintenance-performed-by-pro-gardener.jpg\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"b1058a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":224,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":478,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":325,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"69098afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"40\",\"bottom\":\"80\",\"left\":\"40\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"7cb7bf82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91cb5d9\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26358abf\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Have The Perfect Solution For Your Landscape Problems\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15a36cc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42c8d36c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7114454f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76f24ca8\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Variation Gardening\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"138cc39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28a78a06\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Expert Landscapers\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c5ac2bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38fdb183\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3ce0b95b\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Affordable Price\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-save-money-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4c80f133\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7451fb11\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Free Consultation\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-Consultancy-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e93f2c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"39a46e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6773b2a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"87647bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find The Best Service For Your Garden\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e2cc66e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30164d28\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e8639b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"66\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/men-watering-garden-plants.jpg\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fa92c14\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2c434fb3\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"5abe2e18\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33425b9f\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Watering Garden\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"472ed309\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"67cb221c\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37c1cce6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"67\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-finishing-garden.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b3e60ba\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3b291bbf\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"20b91942\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5649f719\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Lawn Maintenance\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6300b69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"256ddf68\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3735f0b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"58\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-with-hedge-trimmer-e1635892441479.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"741128a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3691562\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3c8a0e6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5eb1b3b9\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Cutting Leaf\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"25f37292\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"61c9ff8e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"790dd775\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"360\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"160\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"140\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"background_overlay_color_b\":\"#000414\",\"background_overlay_image\":{\"id\":\"69\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/a-gardener-watering-plants-in-a-flowerbed-2RT8DWL.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]}},\"elements\":[{\"id\":\"a2ed5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7e37f762\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Landscaping\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a092069\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d5099\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need Someone To Take Care Your Garden & Lawn?\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=07ee36d\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1198756c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"66521a56\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":20,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":4},\"elements\":[{\"id\":\"1a89d099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.5090000000000003410605131648480892181396484375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"id\":\"70\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/happy-gardeners-with-plants-and-lawn-mower.jpg\"},\"background_position\":\"initial\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"space-between\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_color\":\"#FFFFFF00\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":9,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"46b821c1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":219,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":183,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"449971a9\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Make Appointment & Take Care Your Garden\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=secondary\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=93191b3\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_content_title_color_hover_responsive\":\"#FFFFFF\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#FFFFFF\",\"st_icon_color_responsive\":\"#00E5CC\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#00E5CC\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":false},{\"id\":\"13747b6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.4909999999999996589394868351519107818603515625,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a13f42e\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"260***1635696832144\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fde8487\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"59883b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1617542a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Process\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29c7aa96\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Complete Every Step Carefully\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ced0d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d62463d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18cf7834\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"41f79872\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-consult-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consultation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65e1b761\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"span\",\"title_color\":\"#FFD402\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#006943\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12cdbf13\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4175d29\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-pencil_art-light\",\"library\":\"jkiticon\"},\"title_text\":\"Design Installation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2adabf01\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b628\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"569b3221\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consturction \",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"67d6b2e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6fff79c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53c9a76e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"title_text\":\"Finished Work\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"555aace0\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d57540b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"71\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardening-background-with-garden-tolls-A9BGNJU.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]}},\"elements\":[{\"id\":\"147831a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"5a53d120\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"20\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Years of Experience\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"488f4727\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"6b8f6eae\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"76666759\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f532f9e\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"2850\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Happy Customers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"265fd738\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5473dc22\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"64\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Expert Landscapers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b38731e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4945f2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"627cd42c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65e3182\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.56499999999999772626324556767940521240234375},\"elements\":[{\"id\":\"43108b53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Projects\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45328989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Project We Have Done\\n\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"f382082\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.49900000000000233058017329312860965728759765625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":40,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"55ecfb57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"67afcbfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.0330000000000012505552149377763271331787109375,\"_inline_size_tablet\":23,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4989aa04\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Projects\",\"align\":\"right\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"left\",\"hover_animation\":\"float\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"32515d84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"3f5753f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"21982cfb\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"72\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-pruning-and-shaping-bushes-.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Cutting Leaf\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"404dc561\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"58d29b54\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"73\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/backyard-garden.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Home Garden\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"3bff1dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"3c24185a\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"64\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Build Backyard\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_image_height_responsive_tablet\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b3cb58d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_image\":{\"id\":\"74\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-moving-aerial-photo-Z8KDGJ9.jpg\"},\"background_overlay_color\":\"#0000007D\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]}},\"elements\":[{\"id\":\"79705206\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"51c9a732\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73b2fe0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"What They Says About Us\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4876e632\",\"elType\":\"widget\",\"settings\":{\"sg_layout_testimonial_choose\":\"style-2\",\"sg_testimonials_image_size_imagesize_size\":\"medium\",\"sg_testimonials_list\":[{\"sg_testimonials_list_client_avatar\":{\"id\":\"75\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/3SUMAU.jpg\"},\"_id\":\"6e9b2e1\",\"sg_testimonials_list_client_name\":\"Regan Traynor\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"76\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/CASCKD8.jpg\"},\"sg_testimonials_list_client_name\":\"Maisha Dunn\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"d069a43\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"77\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/MKLVKTE.jpg\"},\"sg_testimonials_list_client_name\":\"Reis Leonard\",\"sg_testimonials_list_designation\":\"Businessman\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"05c24f5\"}],\"st_wrapper_alignment_responsive\":\"left\",\"st_client_name_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_description_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_client_name_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_client_designation_normal_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_client_designation_normal_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=d343bdf\",\"st_rating_color_responsive\":\"\",\"st_client_name_normal_color_responsive\":\"\",\"st_quote_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_layout_background_background_color\":\"\"},\"st_layout_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_layout_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_wrapper_fix_height\":\"\",\"sg_setting_autoplay\":\"yes\",\"sg_setting_autoplay_pause\":\"\",\"sg_setting_arrow\":\"\",\"sg_setting_arrow_position\":\"middle-edge\",\"sg_setting_dots\":\"\",\"sg_setting_quote\":\"yes\",\"sg_setting_rating\":\"\",\"st_layout_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_layout_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_slide_show_responsive\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"sg_setting_quote_icon\":{\"value\":\"jki jki-quote-light\",\"library\":\"jkiticon\"},\"sg_layout_image_position\":\"below\",\"st_layout_background_background_background\":\"classic\",\"st_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position\":\"\",\"st_quote_override_position_top_responsive\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"st_quote_override_position_left_responsive\":{\"unit\":\"px\",\"size\":442,\"sizes\":[]},\"st_client_name_normal_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_quote_normal_font_size_responsive\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"st_client_image_margin_responsive\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_rating_font_size_responsive\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"st_rating_margin_right_responsive\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_setting_slide_show_responsive_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"st_wrapper_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position_top_responsive_tablet\":{\"unit\":\"px\",\"size\":249,\"sizes\":[]},\"st_quote_override_position_top_responsive_mobile\":{\"unit\":\"px\",\"size\":193,\"sizes\":[]},\"st_quote_override_position_left_responsive_tablet\":{\"unit\":\"px\",\"size\":265,\"sizes\":[]},\"st_quote_override_position_left_responsive_mobile\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]},\"st_quote_normal_font_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"st_description_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_normal_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64afd05f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"746d276b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30338dfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f950be4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ca735b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5d6ca3ad\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_title_hover_color_responsive\":\"globals\\/colors?id=secondary\",\"st_readmore_hover_color_responsive\":\"globals\\/colors?id=secondary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#646974\",\"st_excerpt_color_responsive\":\"#646974\",\"st_title_normal_color_responsive\":\"#272B36\",\"st_thumbnail_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_title_hover_color_responsive\":\"#FA8D25\",\"st_readmore_normal_color_responsive\":\"#FA8D25\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":false}],\"isInner\":false}]'),(662,121,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(665,35,'_edit_lock','1721822692:1'),(666,35,'_elementor_css','a:6:{s:4:\"time\";i:1721822666;s:5:\"fonts\";a:2:{i:0;s:5:\"Inter\";i:2;s:5:\"Heebo\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(670,122,'_elementor_edit_mode','builder'),(671,122,'_elementor_template_type','wp-page'),(672,122,'_elementor_version','3.23.2'),(673,122,'_wp_page_template','default'),(674,122,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(675,122,'_elementor_data','[{\"id\":\"35495243\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"Eldery male gardener using scissors for bushes\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"160\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0,\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_size_tablet\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"top center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00160E\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b\":\"#00000054\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_slideshow_gallery\":[{\"id\":\"58\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-with-hedge-trimmer-e1635892441479.jpg\"},{\"id\":\"59\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/professional-gardener-at-work-XU82AHW.jpg\"},{\"id\":\"60\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-buying-new-plantsP4VGX5F.jpg\"},{\"id\":\"61\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/garden-decorative-trees-trimming-by-professional-gardener-e1635864777836.jpg\"}]},\"elements\":[{\"id\":\"739a26d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":65,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=06a34e7\"}},\"elements\":[{\"id\":\"132d1a8e\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Complete For All\",\"sg_title_focused\":\" Landscape \",\"sg_title_after\":\" Service And Maintenance\",\"sg_title_html_tag\":\"h1\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=primary\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"7c49583a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"635cb25b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"23cf340e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37.85499999999999687361196265555918216705322265625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":48,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"1c4c950d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4768b6f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":62.14500000000000312638803734444081783294677734375,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"flex-start\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":52,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"34c0badb\",\"elType\":\"widget\",\"settings\":{\"sg_video_button_title\":\"Play Video\",\"sg_video_button_icon\":{\"value\":\"jki jki-play-button-light\",\"library\":\"jkiticon\"},\"sg_video_url\":\"https:\\/\\/www.youtube.com\\/watch?v=MLpWrANjFbI\",\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_width_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_line_height_responsive\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#FFD402\",\"st_button_normal_glow_color_responsive\":\"#00694361\",\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"_element_width\":\"auto\",\"__globals__\":{\"st_button_normal_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=accent\",\"st_border_normal_border_border_color\":\"\",\"st_button_hover_text_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_glow_color_responsive\":\"\"},\"st_button_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_button_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_width_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_line_height_responsive_mobile\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"st_border_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_border_normal_border_border_color\":\"#FFD027\",\"st_button_line_height_responsive_tablet\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"st_button_normal_background_background_color\":\"#006943\",\"st_button_hover_text_color_responsive\":\"#006943\",\"st_button_hover_background_background_color\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_video_button\"},{\"id\":\"232ec8da\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Intro\",\"align\":\"right\",\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"hide_mobile\":\"hidden-mobile\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#00160E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49b348ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"edc2dbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.00200000000000244426701101474463939666748046875,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e2246bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Greenco\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"139cc45f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Landscaping And Garden Care Services\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dc78e71\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"597dc67d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"26cf3840\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b19bda0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"62\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-and-his-flowers.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"980\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a46c929\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c4d8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Public Liability Insurance\",\"_id\":\"a978734\"},{\"text\":\"Environmentally Friendly\",\"_id\":\"1cd10a1\"},{\"text\":\"On Time, Every Time\",\"_id\":\"c6767db\"},{\"text\":\"Beautiful Garden Designs\",\"_id\":\"d4743f4\"},{\"text\":\"Modern Machinery And Tool\",\"_id\":\"535c17d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"398321ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4c7c15d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.9129999999999967030817060731351375579833984375,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5683e90d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"63\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-topiary-job.jpg\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"860\",\"height\":\"980\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b6190b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"64\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden.jpg\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"-59\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"250636f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"713aa588\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"51a71b71\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#00160E\",\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=primary\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=06a34e7\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"st_content_title_color_responsive\":\"#7F7F7F\",\"st_super_color_responsive\":\"#FFD402\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\",\"sg_setting_html_tag\":\"span\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5557874f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"73847855\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"65\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/garden-maintenance-performed-by-pro-gardener.jpg\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"b1058a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":224,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":478,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":325,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"69098afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"40\",\"bottom\":\"80\",\"left\":\"40\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"7cb7bf82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91cb5d9\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26358abf\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Have The Perfect Solution For Your Landscape Problems\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15a36cc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42c8d36c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7114454f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76f24ca8\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Variation Gardening\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"138cc39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28a78a06\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Expert Landscapers\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c5ac2bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38fdb183\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3ce0b95b\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Affordable Price\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-save-money-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4c80f133\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7451fb11\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Free Consultation\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-Consultancy-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e93f2c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"39a46e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6773b2a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"87647bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find The Best Service For Your Garden\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e2cc66e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30164d28\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e8639b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"66\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/men-watering-garden-plants.jpg\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fa92c14\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2c434fb3\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"5abe2e18\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33425b9f\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Watering Garden\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"472ed309\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"67cb221c\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37c1cce6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"67\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-finishing-garden.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b3e60ba\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3b291bbf\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"20b91942\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5649f719\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Lawn Maintenance\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6300b69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"256ddf68\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3735f0b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"58\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-with-hedge-trimmer-e1635892441479.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"741128a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3691562\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3c8a0e6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5eb1b3b9\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Cutting Leaf\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"25f37292\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"61c9ff8e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"790dd775\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"360\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"160\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"140\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"background_overlay_color_b\":\"#000414\",\"background_overlay_image\":{\"id\":\"69\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/a-gardener-watering-plants-in-a-flowerbed-2RT8DWL.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]}},\"elements\":[{\"id\":\"a2ed5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7e37f762\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Landscaping\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a092069\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d5099\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need Someone To Take Care Your Garden & Lawn?\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=07ee36d\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1198756c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"66521a56\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":20,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":4},\"elements\":[{\"id\":\"1a89d099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.5090000000000003410605131648480892181396484375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"id\":\"70\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/happy-gardeners-with-plants-and-lawn-mower.jpg\"},\"background_position\":\"initial\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"space-between\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_color\":\"#FFFFFF00\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":9,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"46b821c1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":219,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":183,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"449971a9\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Make Appointment & Take Care Your Garden\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=secondary\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=93191b3\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_content_title_color_hover_responsive\":\"#FFFFFF\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#FFFFFF\",\"st_icon_color_responsive\":\"#00E5CC\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#00E5CC\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":false},{\"id\":\"13747b6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.4909999999999996589394868351519107818603515625,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a13f42e\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"260***1635696832144\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fde8487\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"59883b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1617542a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Process\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29c7aa96\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Complete Every Step Carefully\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ced0d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d62463d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18cf7834\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"41f79872\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-consult-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consultation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65e1b761\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"span\",\"title_color\":\"#FFD402\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#006943\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12cdbf13\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4175d29\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-pencil_art-light\",\"library\":\"jkiticon\"},\"title_text\":\"Design Installation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2adabf01\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b628\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"569b3221\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consturction \",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"67d6b2e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6fff79c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53c9a76e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"title_text\":\"Finished Work\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"555aace0\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d57540b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"71\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardening-background-with-garden-tolls-A9BGNJU.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]}},\"elements\":[{\"id\":\"147831a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"5a53d120\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"20\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Years of Experience\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"488f4727\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"6b8f6eae\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"76666759\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f532f9e\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"2850\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Happy Customers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"265fd738\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5473dc22\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"64\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Expert Landscapers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b38731e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4945f2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"627cd42c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65e3182\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.56499999999999772626324556767940521240234375},\"elements\":[{\"id\":\"43108b53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Projects\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45328989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Project We Have Done\\n\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"f382082\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.49900000000000233058017329312860965728759765625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":40,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"55ecfb57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"67afcbfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.0330000000000012505552149377763271331787109375,\"_inline_size_tablet\":23,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4989aa04\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Projects\",\"align\":\"right\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"left\",\"hover_animation\":\"float\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"32515d84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"3f5753f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"21982cfb\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"72\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-pruning-and-shaping-bushes-.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Cutting Leaf\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"404dc561\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"58d29b54\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"73\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/backyard-garden.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Home Garden\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"3bff1dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"3c24185a\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"64\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Build Backyard\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_image_height_responsive_tablet\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b3cb58d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_image\":{\"id\":\"74\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-moving-aerial-photo-Z8KDGJ9.jpg\"},\"background_overlay_color\":\"#0000007D\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]}},\"elements\":[{\"id\":\"79705206\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"51c9a732\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73b2fe0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"What They Says About Us\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4876e632\",\"elType\":\"widget\",\"settings\":{\"sg_layout_testimonial_choose\":\"style-2\",\"sg_testimonials_image_size_imagesize_size\":\"medium\",\"sg_testimonials_list\":[{\"sg_testimonials_list_client_avatar\":{\"id\":\"75\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/3SUMAU.jpg\"},\"_id\":\"6e9b2e1\",\"sg_testimonials_list_client_name\":\"Regan Traynor\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"76\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/CASCKD8.jpg\"},\"sg_testimonials_list_client_name\":\"Maisha Dunn\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"d069a43\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"77\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/MKLVKTE.jpg\"},\"sg_testimonials_list_client_name\":\"Reis Leonard\",\"sg_testimonials_list_designation\":\"Businessman\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"05c24f5\"}],\"st_wrapper_alignment_responsive\":\"left\",\"st_client_name_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_description_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_client_name_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_client_designation_normal_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_client_designation_normal_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=d343bdf\",\"st_rating_color_responsive\":\"\",\"st_client_name_normal_color_responsive\":\"\",\"st_quote_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_layout_background_background_color\":\"\"},\"st_layout_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_layout_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_wrapper_fix_height\":\"\",\"sg_setting_autoplay\":\"yes\",\"sg_setting_autoplay_pause\":\"\",\"sg_setting_arrow\":\"\",\"sg_setting_arrow_position\":\"middle-edge\",\"sg_setting_dots\":\"\",\"sg_setting_quote\":\"yes\",\"sg_setting_rating\":\"\",\"st_layout_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_layout_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_slide_show_responsive\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"sg_setting_quote_icon\":{\"value\":\"jki jki-quote-light\",\"library\":\"jkiticon\"},\"sg_layout_image_position\":\"below\",\"st_layout_background_background_background\":\"classic\",\"st_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position\":\"\",\"st_quote_override_position_top_responsive\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"st_quote_override_position_left_responsive\":{\"unit\":\"px\",\"size\":442,\"sizes\":[]},\"st_client_name_normal_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_quote_normal_font_size_responsive\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"st_client_image_margin_responsive\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_rating_font_size_responsive\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"st_rating_margin_right_responsive\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_setting_slide_show_responsive_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"st_wrapper_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position_top_responsive_tablet\":{\"unit\":\"px\",\"size\":249,\"sizes\":[]},\"st_quote_override_position_top_responsive_mobile\":{\"unit\":\"px\",\"size\":193,\"sizes\":[]},\"st_quote_override_position_left_responsive_tablet\":{\"unit\":\"px\",\"size\":265,\"sizes\":[]},\"st_quote_override_position_left_responsive_mobile\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]},\"st_quote_normal_font_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"st_description_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_normal_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64afd05f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"746d276b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30338dfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f950be4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ca735b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5d6ca3ad\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_title_hover_color_responsive\":\"globals\\/colors?id=secondary\",\"st_readmore_hover_color_responsive\":\"globals\\/colors?id=secondary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#646974\",\"st_excerpt_color_responsive\":\"#646974\",\"st_title_normal_color_responsive\":\"#272B36\",\"st_thumbnail_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_title_hover_color_responsive\":\"#FA8D25\",\"st_readmore_normal_color_responsive\":\"#FA8D25\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":false}],\"isInner\":false}]'),(676,122,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(677,122,'_elementor_css','a:6:{s:4:\"time\";i:1721822667;s:5:\"fonts\";a:1:{i:0;s:5:\"Inter\";}s:5:\"icons\";a:3:{i:0;s:0:\"\";i:1;s:8:\"jkiticon\";i:3;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(678,123,'_elementor_edit_mode','builder'),(679,123,'_elementor_template_type','wp-page'),(680,123,'_elementor_version','3.23.2'),(681,123,'_wp_page_template','default'),(682,123,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(683,123,'_elementor_data','[{\"id\":\"35495243\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"Eldery male gardener using scissors for bushes\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"160\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0,\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_size_tablet\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"top center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00160E\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b\":\"#00000054\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_slideshow_gallery\":[{\"id\":\"58\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-with-hedge-trimmer-e1635892441479.jpg\"},{\"id\":\"59\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/professional-gardener-at-work-XU82AHW.jpg\"},{\"id\":\"60\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-buying-new-plantsP4VGX5F.jpg\"},{\"id\":\"61\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/garden-decorative-trees-trimming-by-professional-gardener-e1635864777836.jpg\"}]},\"elements\":[{\"id\":\"739a26d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":65,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=06a34e7\"}},\"elements\":[{\"id\":\"132d1a8e\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Complete For All\",\"sg_title_focused\":\" Landscape \",\"sg_title_after\":\" Service And Maintenance\",\"sg_title_html_tag\":\"h1\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=primary\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"7c49583a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"635cb25b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"23cf340e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37.85499999999999687361196265555918216705322265625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":48,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"1c4c950d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4768b6f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":62.14500000000000312638803734444081783294677734375,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"flex-start\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":52,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"34c0badb\",\"elType\":\"widget\",\"settings\":{\"sg_video_button_title\":\"Play Video\",\"sg_video_button_icon\":{\"value\":\"jki jki-play-button-light\",\"library\":\"jkiticon\"},\"sg_video_url\":\"https:\\/\\/www.youtube.com\\/watch?v=MLpWrANjFbI\",\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_width_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_line_height_responsive\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#FFD402\",\"st_button_normal_glow_color_responsive\":\"#00694361\",\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"_element_width\":\"auto\",\"__globals__\":{\"st_button_normal_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=accent\",\"st_border_normal_border_border_color\":\"\",\"st_button_hover_text_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_glow_color_responsive\":\"\"},\"st_button_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_button_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_width_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_line_height_responsive_mobile\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"st_border_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_border_normal_border_border_color\":\"#FFD027\",\"st_button_line_height_responsive_tablet\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"st_button_normal_background_background_color\":\"#006943\",\"st_button_hover_text_color_responsive\":\"#006943\",\"st_button_hover_background_background_color\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_video_button\"},{\"id\":\"232ec8da\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Intro\",\"align\":\"right\",\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"hide_mobile\":\"hidden-mobile\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#00160E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49b348ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"edc2dbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.00200000000000244426701101474463939666748046875,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e2246bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Greenco\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"139cc45f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Landscaping And Garden Care Services\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dc78e71\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"597dc67d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"26cf3840\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b19bda0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"62\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-and-his-flowers.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"980\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a46c929\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c4d8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Public Liability Insurance\",\"_id\":\"a978734\"},{\"text\":\"Environmentally Friendly\",\"_id\":\"1cd10a1\"},{\"text\":\"On Time, Every Time\",\"_id\":\"c6767db\"},{\"text\":\"Beautiful Garden Designs\",\"_id\":\"d4743f4\"},{\"text\":\"Modern Machinery And Tool\",\"_id\":\"535c17d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"398321ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4c7c15d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.9129999999999967030817060731351375579833984375,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5683e90d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"63\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-topiary-job.jpg\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"860\",\"height\":\"980\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b6190b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"64\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden.jpg\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"-59\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"250636f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"713aa588\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"51a71b71\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#00160E\",\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=primary\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=06a34e7\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"st_content_title_color_responsive\":\"#7F7F7F\",\"st_super_color_responsive\":\"#FFD402\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\",\"sg_setting_html_tag\":\"span\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5557874f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"73847855\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"65\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/garden-maintenance-performed-by-pro-gardener.jpg\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"b1058a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":224,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":478,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":325,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"69098afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"40\",\"bottom\":\"80\",\"left\":\"40\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"7cb7bf82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91cb5d9\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26358abf\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Have The Perfect Solution For Your Landscape Problems\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15a36cc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42c8d36c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7114454f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76f24ca8\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Variation Gardening\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"138cc39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28a78a06\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Expert Landscapers\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c5ac2bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38fdb183\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3ce0b95b\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Affordable Price\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-save-money-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4c80f133\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7451fb11\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Free Consultation\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-Consultancy-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e93f2c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"39a46e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6773b2a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"87647bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find The Best Service For Your Garden\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e2cc66e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30164d28\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e8639b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"66\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/men-watering-garden-plants.jpg\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fa92c14\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2c434fb3\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"5abe2e18\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33425b9f\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Watering Garden\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"472ed309\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"67cb221c\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37c1cce6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"67\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-finishing-garden.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b3e60ba\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3b291bbf\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"20b91942\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5649f719\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Lawn Maintenance\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6300b69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"256ddf68\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3735f0b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"58\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-with-hedge-trimmer-e1635892441479.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"741128a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3691562\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3c8a0e6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5eb1b3b9\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Cutting Leaf\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"25f37292\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"61c9ff8e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"790dd775\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"360\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"160\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"140\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"background_overlay_color_b\":\"#000414\",\"background_overlay_image\":{\"id\":\"69\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/a-gardener-watering-plants-in-a-flowerbed-2RT8DWL.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]}},\"elements\":[{\"id\":\"a2ed5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7e37f762\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Landscaping\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a092069\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d5099\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need Someone To Take Care Your Garden & Lawn?\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=07ee36d\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1198756c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"66521a56\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":20,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":4},\"elements\":[{\"id\":\"1a89d099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.5090000000000003410605131648480892181396484375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"id\":\"70\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/happy-gardeners-with-plants-and-lawn-mower.jpg\"},\"background_position\":\"initial\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"space-between\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_color\":\"#FFFFFF00\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":9,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"46b821c1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":219,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":183,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"449971a9\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Make Appointment & Take Care Your Garden\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=secondary\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=93191b3\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_content_title_color_hover_responsive\":\"#FFFFFF\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#FFFFFF\",\"st_icon_color_responsive\":\"#00E5CC\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#00E5CC\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":false},{\"id\":\"13747b6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.4909999999999996589394868351519107818603515625,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a13f42e\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"260***1635696832144\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fde8487\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"59883b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1617542a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Process\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29c7aa96\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Complete Every Step Carefully\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ced0d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d62463d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18cf7834\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"41f79872\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-consult-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consultation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65e1b761\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"span\",\"title_color\":\"#FFD402\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#006943\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12cdbf13\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4175d29\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-pencil_art-light\",\"library\":\"jkiticon\"},\"title_text\":\"Design Installation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2adabf01\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b628\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"569b3221\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consturction \",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"67d6b2e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6fff79c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53c9a76e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"title_text\":\"Finished Work\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"555aace0\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d57540b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"71\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardening-background-with-garden-tolls-A9BGNJU.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]}},\"elements\":[{\"id\":\"147831a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"5a53d120\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"20\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Years of Experience\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"488f4727\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"6b8f6eae\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"76666759\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f532f9e\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"2850\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Happy Customers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"265fd738\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5473dc22\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"64\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Expert Landscapers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b38731e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4945f2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"627cd42c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65e3182\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.56499999999999772626324556767940521240234375},\"elements\":[{\"id\":\"43108b53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Projects\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45328989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Project We Have Done\\n\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"f382082\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.49900000000000233058017329312860965728759765625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":40,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"55ecfb57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"67afcbfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.0330000000000012505552149377763271331787109375,\"_inline_size_tablet\":23,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4989aa04\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Projects\",\"align\":\"right\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"left\",\"hover_animation\":\"float\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"32515d84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"3f5753f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"21982cfb\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"72\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-pruning-and-shaping-bushes-.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Cutting Leaf\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"404dc561\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"58d29b54\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"73\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/backyard-garden.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Home Garden\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"3bff1dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"3c24185a\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"64\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Build Backyard\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_image_height_responsive_tablet\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b3cb58d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_image\":{\"id\":\"74\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-moving-aerial-photo-Z8KDGJ9.jpg\"},\"background_overlay_color\":\"#0000007D\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]}},\"elements\":[{\"id\":\"79705206\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"51c9a732\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73b2fe0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"What They Says About Us\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4876e632\",\"elType\":\"widget\",\"settings\":{\"sg_layout_testimonial_choose\":\"style-2\",\"sg_testimonials_image_size_imagesize_size\":\"medium\",\"sg_testimonials_list\":[{\"sg_testimonials_list_client_avatar\":{\"id\":\"75\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/3SUMAU.jpg\"},\"_id\":\"6e9b2e1\",\"sg_testimonials_list_client_name\":\"Regan Traynor\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"76\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/CASCKD8.jpg\"},\"sg_testimonials_list_client_name\":\"Maisha Dunn\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"d069a43\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"77\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/MKLVKTE.jpg\"},\"sg_testimonials_list_client_name\":\"Reis Leonard\",\"sg_testimonials_list_designation\":\"Businessman\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"05c24f5\"}],\"st_wrapper_alignment_responsive\":\"left\",\"st_client_name_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_description_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_client_name_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_client_designation_normal_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_client_designation_normal_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=d343bdf\",\"st_rating_color_responsive\":\"\",\"st_client_name_normal_color_responsive\":\"\",\"st_quote_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_layout_background_background_color\":\"\"},\"st_layout_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_layout_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_wrapper_fix_height\":\"\",\"sg_setting_autoplay\":\"yes\",\"sg_setting_autoplay_pause\":\"\",\"sg_setting_arrow\":\"\",\"sg_setting_arrow_position\":\"middle-edge\",\"sg_setting_dots\":\"\",\"sg_setting_quote\":\"yes\",\"sg_setting_rating\":\"\",\"st_layout_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_layout_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_slide_show_responsive\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"sg_setting_quote_icon\":{\"value\":\"jki jki-quote-light\",\"library\":\"jkiticon\"},\"sg_layout_image_position\":\"below\",\"st_layout_background_background_background\":\"classic\",\"st_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position\":\"\",\"st_quote_override_position_top_responsive\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"st_quote_override_position_left_responsive\":{\"unit\":\"px\",\"size\":442,\"sizes\":[]},\"st_client_name_normal_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_quote_normal_font_size_responsive\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"st_client_image_margin_responsive\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_rating_font_size_responsive\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"st_rating_margin_right_responsive\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_setting_slide_show_responsive_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"st_wrapper_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position_top_responsive_tablet\":{\"unit\":\"px\",\"size\":249,\"sizes\":[]},\"st_quote_override_position_top_responsive_mobile\":{\"unit\":\"px\",\"size\":193,\"sizes\":[]},\"st_quote_override_position_left_responsive_tablet\":{\"unit\":\"px\",\"size\":265,\"sizes\":[]},\"st_quote_override_position_left_responsive_mobile\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]},\"st_quote_normal_font_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"st_description_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_normal_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64afd05f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"746d276b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30338dfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f950be4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ca735b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5d6ca3ad\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_title_hover_color_responsive\":\"globals\\/colors?id=secondary\",\"st_readmore_hover_color_responsive\":\"globals\\/colors?id=secondary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#646974\",\"st_excerpt_color_responsive\":\"#646974\",\"st_title_normal_color_responsive\":\"#272B36\",\"st_thumbnail_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_title_hover_color_responsive\":\"#FA8D25\",\"st_readmore_normal_color_responsive\":\"#FA8D25\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":false}],\"isInner\":false}]'),(684,123,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(685,123,'_elementor_css','a:6:{s:4:\"time\";i:1721822667;s:5:\"fonts\";a:1:{i:0;s:5:\"Inter\";}s:5:\"icons\";a:3:{i:0;s:0:\"\";i:1;s:8:\"jkiticon\";i:3;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(686,124,'_elementor_edit_mode','builder'),(687,124,'_elementor_template_type','wp-page'),(688,124,'_elementor_version','3.23.2'),(689,124,'_wp_page_template','default'),(690,124,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(691,124,'_elementor_data','[{\"id\":\"35495243\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"Eldery male gardener using scissors for bushes\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"160\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0,\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_size_tablet\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"top center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00160E\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b\":\"#00000054\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_slideshow_gallery\":[{\"id\":\"58\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-with-hedge-trimmer-e1635892441479.jpg\"},{\"id\":\"59\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/professional-gardener-at-work-XU82AHW.jpg\"},{\"id\":\"60\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-buying-new-plantsP4VGX5F.jpg\"},{\"id\":\"61\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/garden-decorative-trees-trimming-by-professional-gardener-e1635864777836.jpg\"}]},\"elements\":[{\"id\":\"739a26d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":65,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=06a34e7\"}},\"elements\":[{\"id\":\"132d1a8e\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Complete For All\",\"sg_title_focused\":\" Landscape \",\"sg_title_after\":\" Service And Maintenance\",\"sg_title_html_tag\":\"h1\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=primary\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"7c49583a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"635cb25b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"23cf340e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37.85499999999999687361196265555918216705322265625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":48,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"1c4c950d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4768b6f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":62.14500000000000312638803734444081783294677734375,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"flex-start\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":52,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"34c0badb\",\"elType\":\"widget\",\"settings\":{\"sg_video_button_title\":\"Play Video\",\"sg_video_button_icon\":{\"value\":\"jki jki-play-button-light\",\"library\":\"jkiticon\"},\"sg_video_url\":\"#\",\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_width_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_line_height_responsive\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#FFD402\",\"st_button_normal_glow_color_responsive\":\"#00694361\",\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"_element_width\":\"auto\",\"__globals__\":{\"st_button_normal_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=accent\",\"st_border_normal_border_border_color\":\"\",\"st_button_hover_text_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_glow_color_responsive\":\"\"},\"st_button_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_button_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_width_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_line_height_responsive_mobile\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"st_border_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_border_normal_border_border_color\":\"#FFD027\",\"st_button_line_height_responsive_tablet\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"st_button_normal_background_background_color\":\"#006943\",\"st_button_hover_text_color_responsive\":\"#006943\",\"st_button_hover_background_background_color\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_video_button\"},{\"id\":\"232ec8da\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Intro\",\"align\":\"right\",\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"hide_mobile\":\"hidden-mobile\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#00160E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49b348ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"edc2dbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.00200000000000244426701101474463939666748046875,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e2246bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Greenco\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"139cc45f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Landscaping And Garden Care Services\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dc78e71\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"597dc67d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"26cf3840\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b19bda0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"62\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-and-his-flowers.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"980\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a46c929\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c4d8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Public Liability Insurance\",\"_id\":\"a978734\"},{\"text\":\"Environmentally Friendly\",\"_id\":\"1cd10a1\"},{\"text\":\"On Time, Every Time\",\"_id\":\"c6767db\"},{\"text\":\"Beautiful Garden Designs\",\"_id\":\"d4743f4\"},{\"text\":\"Modern Machinery And Tool\",\"_id\":\"535c17d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"398321ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4c7c15d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.9129999999999967030817060731351375579833984375,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5683e90d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"63\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-topiary-job.jpg\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"860\",\"height\":\"980\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b6190b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"64\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden.jpg\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"-59\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"250636f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"713aa588\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"51a71b71\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#00160E\",\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=primary\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=06a34e7\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"st_content_title_color_responsive\":\"#7F7F7F\",\"st_super_color_responsive\":\"#FFD402\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\",\"sg_setting_html_tag\":\"span\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5557874f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"73847855\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"65\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/garden-maintenance-performed-by-pro-gardener.jpg\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"b1058a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":224,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":478,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":325,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"69098afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"40\",\"bottom\":\"80\",\"left\":\"40\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"7cb7bf82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91cb5d9\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26358abf\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Have The Perfect Solution For Your Landscape Problems\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15a36cc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42c8d36c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7114454f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76f24ca8\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Variation Gardening\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"138cc39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28a78a06\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Expert Landscapers\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c5ac2bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38fdb183\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3ce0b95b\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Affordable Price\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-save-money-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4c80f133\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7451fb11\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Free Consultation\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-Consultancy-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e93f2c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"39a46e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6773b2a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"87647bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find The Best Service For Your Garden\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e2cc66e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30164d28\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e8639b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"66\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/men-watering-garden-plants.jpg\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fa92c14\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2c434fb3\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"5abe2e18\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33425b9f\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Watering Garden\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"472ed309\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"67cb221c\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37c1cce6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"67\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-finishing-garden.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b3e60ba\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3b291bbf\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"20b91942\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5649f719\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Lawn Maintenance\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6300b69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"256ddf68\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3735f0b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"58\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-with-hedge-trimmer-e1635892441479.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"741128a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3691562\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3c8a0e6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5eb1b3b9\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Cutting Leaf\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"25f37292\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"61c9ff8e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"790dd775\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"360\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"160\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"140\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"background_overlay_color_b\":\"#000414\",\"background_overlay_image\":{\"id\":\"69\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/a-gardener-watering-plants-in-a-flowerbed-2RT8DWL.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]}},\"elements\":[{\"id\":\"a2ed5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7e37f762\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Landscaping\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a092069\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d5099\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need Someone To Take Care Your Garden & Lawn?\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=07ee36d\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1198756c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"66521a56\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":20,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":4},\"elements\":[{\"id\":\"1a89d099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.5090000000000003410605131648480892181396484375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"id\":\"70\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/happy-gardeners-with-plants-and-lawn-mower.jpg\"},\"background_position\":\"initial\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"space-between\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_color\":\"#FFFFFF00\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":9,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"46b821c1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":219,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":183,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"449971a9\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Make Appointment & Take Care Your Garden\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=secondary\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=93191b3\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_content_title_color_hover_responsive\":\"#FFFFFF\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#FFFFFF\",\"st_icon_color_responsive\":\"#00E5CC\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#00E5CC\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":false},{\"id\":\"13747b6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.4909999999999996589394868351519107818603515625,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a13f42e\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"260***1635696832144\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fde8487\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"59883b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1617542a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Process\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29c7aa96\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Complete Every Step Carefully\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ced0d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d62463d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18cf7834\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"41f79872\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-consult-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consultation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65e1b761\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"span\",\"title_color\":\"#FFD402\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#006943\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12cdbf13\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4175d29\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-pencil_art-light\",\"library\":\"jkiticon\"},\"title_text\":\"Design Installation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2adabf01\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b628\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"569b3221\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consturction \",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"67d6b2e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6fff79c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53c9a76e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"title_text\":\"Finished Work\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"555aace0\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d57540b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"71\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardening-background-with-garden-tolls-A9BGNJU.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]}},\"elements\":[{\"id\":\"147831a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"5a53d120\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"20\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Years of Experience\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"488f4727\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"6b8f6eae\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"76666759\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f532f9e\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"2850\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Happy Customers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"265fd738\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5473dc22\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"64\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Expert Landscapers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b38731e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4945f2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"627cd42c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65e3182\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.56499999999999772626324556767940521240234375},\"elements\":[{\"id\":\"43108b53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Projects\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45328989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Project We Have Done\\n\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"f382082\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.49900000000000233058017329312860965728759765625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":40,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"55ecfb57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"67afcbfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.0330000000000012505552149377763271331787109375,\"_inline_size_tablet\":23,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4989aa04\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Projects\",\"align\":\"right\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"left\",\"hover_animation\":\"float\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"32515d84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"3f5753f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"21982cfb\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"72\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-pruning-and-shaping-bushes-.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Cutting Leaf\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"404dc561\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"58d29b54\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"73\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/backyard-garden.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Home Garden\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"3bff1dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"3c24185a\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"64\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Build Backyard\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_image_height_responsive_tablet\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b3cb58d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_image\":{\"id\":\"74\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-moving-aerial-photo-Z8KDGJ9.jpg\"},\"background_overlay_color\":\"#0000007D\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]}},\"elements\":[{\"id\":\"79705206\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"51c9a732\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73b2fe0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"What They Says About Us\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4876e632\",\"elType\":\"widget\",\"settings\":{\"sg_layout_testimonial_choose\":\"style-2\",\"sg_testimonials_image_size_imagesize_size\":\"medium\",\"sg_testimonials_list\":[{\"sg_testimonials_list_client_avatar\":{\"id\":\"75\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/3SUMAU.jpg\"},\"_id\":\"6e9b2e1\",\"sg_testimonials_list_client_name\":\"Regan Traynor\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"76\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/CASCKD8.jpg\"},\"sg_testimonials_list_client_name\":\"Maisha Dunn\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"d069a43\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"77\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/MKLVKTE.jpg\"},\"sg_testimonials_list_client_name\":\"Reis Leonard\",\"sg_testimonials_list_designation\":\"Businessman\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"05c24f5\"}],\"st_wrapper_alignment_responsive\":\"left\",\"st_client_name_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_description_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_client_name_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_client_designation_normal_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_client_designation_normal_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=d343bdf\",\"st_rating_color_responsive\":\"\",\"st_client_name_normal_color_responsive\":\"\",\"st_quote_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_layout_background_background_color\":\"\"},\"st_layout_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_layout_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_wrapper_fix_height\":\"\",\"sg_setting_autoplay\":\"yes\",\"sg_setting_autoplay_pause\":\"\",\"sg_setting_arrow\":\"\",\"sg_setting_arrow_position\":\"middle-edge\",\"sg_setting_dots\":\"\",\"sg_setting_quote\":\"yes\",\"sg_setting_rating\":\"\",\"st_layout_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_layout_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_slide_show_responsive\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"sg_setting_quote_icon\":{\"value\":\"jki jki-quote-light\",\"library\":\"jkiticon\"},\"sg_layout_image_position\":\"below\",\"st_layout_background_background_background\":\"classic\",\"st_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position\":\"\",\"st_quote_override_position_top_responsive\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"st_quote_override_position_left_responsive\":{\"unit\":\"px\",\"size\":442,\"sizes\":[]},\"st_client_name_normal_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_quote_normal_font_size_responsive\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"st_client_image_margin_responsive\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_rating_font_size_responsive\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"st_rating_margin_right_responsive\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_setting_slide_show_responsive_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"st_wrapper_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position_top_responsive_tablet\":{\"unit\":\"px\",\"size\":249,\"sizes\":[]},\"st_quote_override_position_top_responsive_mobile\":{\"unit\":\"px\",\"size\":193,\"sizes\":[]},\"st_quote_override_position_left_responsive_tablet\":{\"unit\":\"px\",\"size\":265,\"sizes\":[]},\"st_quote_override_position_left_responsive_mobile\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]},\"st_quote_normal_font_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"st_description_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_normal_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64afd05f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"746d276b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30338dfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f950be4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ca735b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5d6ca3ad\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_title_hover_color_responsive\":\"globals\\/colors?id=secondary\",\"st_readmore_hover_color_responsive\":\"globals\\/colors?id=secondary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#646974\",\"st_excerpt_color_responsive\":\"#646974\",\"st_title_normal_color_responsive\":\"#272B36\",\"st_thumbnail_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_title_hover_color_responsive\":\"#FA8D25\",\"st_readmore_normal_color_responsive\":\"#FA8D25\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":false}],\"isInner\":false}]'),(692,124,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(693,124,'_elementor_css','a:6:{s:4:\"time\";i:1721822667;s:5:\"fonts\";a:1:{i:0;s:5:\"Inter\";}s:5:\"icons\";a:3:{i:0;s:0:\"\";i:1;s:8:\"jkiticon\";i:3;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(702,126,'_elementor_edit_mode','builder'),(703,126,'_elementor_template_type','wp-page'),(704,126,'_elementor_version','3.23.2'),(705,126,'_wp_page_template','default'),(706,126,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(707,126,'_elementor_data','[{\"id\":\"35495243\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"Eldery male gardener using scissors for bushes\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"160\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0,\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_size_tablet\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"top center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00160E\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b\":\"#00000054\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_slideshow_gallery\":[{\"id\":\"58\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-with-hedge-trimmer-e1635892441479.jpg\"},{\"id\":\"59\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/professional-gardener-at-work-XU82AHW.jpg\"},{\"id\":\"60\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-buying-new-plantsP4VGX5F.jpg\"},{\"id\":\"61\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/garden-decorative-trees-trimming-by-professional-gardener-e1635864777836.jpg\"}]},\"elements\":[{\"id\":\"739a26d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":65,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=06a34e7\"}},\"elements\":[{\"id\":\"132d1a8e\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Complete For All\",\"sg_title_focused\":\" Landscape \",\"sg_title_after\":\" Service And Maintenance\",\"sg_title_html_tag\":\"h1\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=primary\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"7c49583a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"635cb25b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"23cf340e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37.85499999999999687361196265555918216705322265625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":48,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"1c4c950d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4768b6f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":62.14500000000000312638803734444081783294677734375,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"flex-start\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":52,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"34c0badb\",\"elType\":\"widget\",\"settings\":{\"sg_video_button_title\":\"Play Video\",\"sg_video_button_icon\":{\"value\":\"jki jki-play-button-light\",\"library\":\"jkiticon\"},\"sg_video_url\":\"#\",\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_width_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_line_height_responsive\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#FFD402\",\"st_button_normal_glow_color_responsive\":\"#00694361\",\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"_element_width\":\"auto\",\"__globals__\":{\"st_button_normal_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=accent\",\"st_border_normal_border_border_color\":\"\",\"st_button_hover_text_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_glow_color_responsive\":\"\"},\"st_button_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_button_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_width_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_line_height_responsive_mobile\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"st_border_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_border_normal_border_border_color\":\"#FFD027\",\"st_button_line_height_responsive_tablet\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"st_button_normal_background_background_color\":\"#006943\",\"st_button_hover_text_color_responsive\":\"#006943\",\"st_button_hover_background_background_color\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_video_button\"},{\"id\":\"232ec8da\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Intro\",\"align\":\"right\",\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"hide_mobile\":\"hidden-mobile\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#00160E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49b348ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"edc2dbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.00200000000000244426701101474463939666748046875,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e2246bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Greenco\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"139cc45f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Landscaping And Garden Care Services\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dc78e71\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"597dc67d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"26cf3840\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b19bda0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"62\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-and-his-flowers.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"980\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a46c929\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c4d8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Public Liability Insurance\",\"_id\":\"a978734\"},{\"text\":\"Environmentally Friendly\",\"_id\":\"1cd10a1\"},{\"text\":\"On Time, Every Time\",\"_id\":\"c6767db\"},{\"text\":\"Beautiful Garden Designs\",\"_id\":\"d4743f4\"},{\"text\":\"Modern Machinery And Tool\",\"_id\":\"535c17d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"398321ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4c7c15d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.9129999999999967030817060731351375579833984375,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5683e90d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"63\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-topiary-job.jpg\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"860\",\"height\":\"980\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b6190b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"64\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden.jpg\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"-59\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"250636f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"713aa588\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"51a71b71\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#00160E\",\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=primary\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=06a34e7\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"st_content_title_color_responsive\":\"#7F7F7F\",\"st_super_color_responsive\":\"#FFD402\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\",\"sg_setting_html_tag\":\"span\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5557874f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"73847855\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"65\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/garden-maintenance-performed-by-pro-gardener.jpg\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"b1058a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":224,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":478,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":325,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"69098afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"40\",\"bottom\":\"80\",\"left\":\"40\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"7cb7bf82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91cb5d9\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26358abf\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Have The Perfect Solution For Your Landscape Problems\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15a36cc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42c8d36c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7114454f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76f24ca8\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Variation Gardening\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"138cc39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28a78a06\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Expert Landscapers\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c5ac2bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38fdb183\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3ce0b95b\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Affordable Price\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-save-money-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4c80f133\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7451fb11\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Free Consultation\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-Consultancy-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e93f2c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"39a46e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6773b2a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"87647bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find The Best Service For Your Garden\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e2cc66e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30164d28\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e8639b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"66\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/men-watering-garden-plants.jpg\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fa92c14\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2c434fb3\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"5abe2e18\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33425b9f\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Watering Garden\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"472ed309\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"67cb221c\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37c1cce6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"67\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-finishing-garden.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b3e60ba\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3b291bbf\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"20b91942\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5649f719\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Lawn Maintenance\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6300b69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"256ddf68\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3735f0b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"58\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-with-hedge-trimmer-e1635892441479.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"741128a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3691562\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3c8a0e6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5eb1b3b9\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Cutting Leaf\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"25f37292\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"61c9ff8e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"790dd775\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"360\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"160\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"140\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"background_overlay_color_b\":\"#000414\",\"background_overlay_image\":{\"id\":\"69\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/a-gardener-watering-plants-in-a-flowerbed-2RT8DWL.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]}},\"elements\":[{\"id\":\"a2ed5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7e37f762\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Landscaping\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a092069\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d5099\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need Someone To Take Care Your Garden & Lawn?\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=07ee36d\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1198756c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"66521a56\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":20,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":4},\"elements\":[{\"id\":\"1a89d099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.5090000000000003410605131648480892181396484375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"id\":\"70\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/happy-gardeners-with-plants-and-lawn-mower.jpg\"},\"background_position\":\"initial\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"space-between\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_color\":\"#FFFFFF00\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":9,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"46b821c1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":219,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":183,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"449971a9\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Make Appointment & Take Care Your Garden\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=secondary\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=93191b3\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_content_title_color_hover_responsive\":\"#FFFFFF\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#FFFFFF\",\"st_icon_color_responsive\":\"#00E5CC\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#00E5CC\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":false},{\"id\":\"13747b6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.4909999999999996589394868351519107818603515625,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a13f42e\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"260***1635696832144\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fde8487\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"59883b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1617542a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Process\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29c7aa96\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Complete Every Step Carefully\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ced0d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d62463d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18cf7834\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"41f79872\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-consult-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consultation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65e1b761\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"span\",\"title_color\":\"#FFD402\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#006943\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12cdbf13\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4175d29\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-pencil_art-light\",\"library\":\"jkiticon\"},\"title_text\":\"Design Installation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2adabf01\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b628\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"569b3221\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consturction \",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"67d6b2e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6fff79c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53c9a76e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"title_text\":\"Finished Work\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"555aace0\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d57540b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"71\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardening-background-with-garden-tolls-A9BGNJU.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]}},\"elements\":[{\"id\":\"147831a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"5a53d120\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"20\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Years of Experience\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"488f4727\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"6b8f6eae\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"76666759\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f532f9e\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"2850\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Happy Customers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"265fd738\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5473dc22\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"64\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Expert Landscapers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b38731e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4945f2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"627cd42c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65e3182\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.56499999999999772626324556767940521240234375},\"elements\":[{\"id\":\"43108b53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Projects\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45328989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Project We Have Done\\n\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"f382082\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.49900000000000233058017329312860965728759765625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":40,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"55ecfb57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"67afcbfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.0330000000000012505552149377763271331787109375,\"_inline_size_tablet\":23,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4989aa04\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Projects\",\"align\":\"right\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"left\",\"hover_animation\":\"float\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"32515d84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"3f5753f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"21982cfb\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"72\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-pruning-and-shaping-bushes-.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Cutting Leaf\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"404dc561\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"58d29b54\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"73\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/backyard-garden.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Home Garden\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"3bff1dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"3c24185a\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"64\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Build Backyard\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_image_height_responsive_tablet\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b3cb58d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_image\":{\"id\":\"74\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-moving-aerial-photo-Z8KDGJ9.jpg\"},\"background_overlay_color\":\"#0000007D\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]}},\"elements\":[{\"id\":\"79705206\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"51c9a732\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73b2fe0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"What They Says About Us\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4876e632\",\"elType\":\"widget\",\"settings\":{\"sg_layout_testimonial_choose\":\"style-2\",\"sg_testimonials_image_size_imagesize_size\":\"medium\",\"sg_testimonials_list\":[{\"sg_testimonials_list_client_avatar\":{\"id\":\"75\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/3SUMAU.jpg\"},\"_id\":\"6e9b2e1\",\"sg_testimonials_list_client_name\":\"Regan Traynor\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"76\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/CASCKD8.jpg\"},\"sg_testimonials_list_client_name\":\"Maisha Dunn\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"d069a43\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"77\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/MKLVKTE.jpg\"},\"sg_testimonials_list_client_name\":\"Reis Leonard\",\"sg_testimonials_list_designation\":\"Businessman\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"05c24f5\"}],\"st_wrapper_alignment_responsive\":\"left\",\"st_client_name_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_description_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_client_name_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_client_designation_normal_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_client_designation_normal_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=d343bdf\",\"st_rating_color_responsive\":\"\",\"st_client_name_normal_color_responsive\":\"\",\"st_quote_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_layout_background_background_color\":\"\"},\"st_layout_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_layout_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_wrapper_fix_height\":\"\",\"sg_setting_autoplay\":\"yes\",\"sg_setting_autoplay_pause\":\"\",\"sg_setting_arrow\":\"\",\"sg_setting_arrow_position\":\"middle-edge\",\"sg_setting_dots\":\"\",\"sg_setting_quote\":\"yes\",\"sg_setting_rating\":\"\",\"st_layout_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_layout_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_slide_show_responsive\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"sg_setting_quote_icon\":{\"value\":\"jki jki-quote-light\",\"library\":\"jkiticon\"},\"sg_layout_image_position\":\"below\",\"st_layout_background_background_background\":\"classic\",\"st_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position\":\"\",\"st_quote_override_position_top_responsive\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"st_quote_override_position_left_responsive\":{\"unit\":\"px\",\"size\":442,\"sizes\":[]},\"st_client_name_normal_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_quote_normal_font_size_responsive\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"st_client_image_margin_responsive\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_rating_font_size_responsive\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"st_rating_margin_right_responsive\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_setting_slide_show_responsive_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"st_wrapper_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position_top_responsive_tablet\":{\"unit\":\"px\",\"size\":249,\"sizes\":[]},\"st_quote_override_position_top_responsive_mobile\":{\"unit\":\"px\",\"size\":193,\"sizes\":[]},\"st_quote_override_position_left_responsive_tablet\":{\"unit\":\"px\",\"size\":265,\"sizes\":[]},\"st_quote_override_position_left_responsive_mobile\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]},\"st_quote_normal_font_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"st_description_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_normal_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64afd05f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"746d276b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30338dfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f950be4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ca735b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5d6ca3ad\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_title_hover_color_responsive\":\"globals\\/colors?id=secondary\",\"st_readmore_hover_color_responsive\":\"globals\\/colors?id=secondary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#646974\",\"st_excerpt_color_responsive\":\"#646974\",\"st_title_normal_color_responsive\":\"#272B36\",\"st_thumbnail_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_title_hover_color_responsive\":\"#FA8D25\",\"st_readmore_normal_color_responsive\":\"#FA8D25\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":false}],\"isInner\":false}]'),(708,126,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(709,126,'_elementor_css','a:6:{s:4:\"time\";i:1721823335;s:5:\"fonts\";a:1:{i:0;s:5:\"Inter\";}s:5:\"icons\";a:3:{i:0;s:0:\"\";i:1;s:8:\"jkiticon\";i:3;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(710,127,'_elementor_edit_mode','builder'),(711,127,'_elementor_template_type','wp-page'),(712,127,'_elementor_version','3.23.2'),(713,127,'_wp_page_template','default'),(714,127,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'); INSERT INTO `victorq_postmeta` VALUES (715,127,'_elementor_data','[{\"id\":\"35495243\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"Eldery male gardener using scissors for bushes\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"160\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0,\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_size_tablet\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"top center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00160E\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b\":\"#00000054\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_slideshow_gallery\":[{\"id\":\"58\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-with-hedge-trimmer-e1635892441479.jpg\"},{\"id\":\"59\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/professional-gardener-at-work-XU82AHW.jpg\"},{\"id\":\"60\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-buying-new-plantsP4VGX5F.jpg\"},{\"id\":\"61\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/garden-decorative-trees-trimming-by-professional-gardener-e1635864777836.jpg\"}]},\"elements\":[{\"id\":\"739a26d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":65,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=06a34e7\"}},\"elements\":[{\"id\":\"132d1a8e\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Complete For All\",\"sg_title_focused\":\" Landscape \",\"sg_title_after\":\" Service And Maintenance\",\"sg_title_html_tag\":\"h1\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=primary\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"7c49583a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"635cb25b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"23cf340e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37.85499999999999687361196265555918216705322265625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":48,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"1c4c950d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4768b6f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":62.14500000000000312638803734444081783294677734375,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"flex-start\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":52,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"34c0badb\",\"elType\":\"widget\",\"settings\":{\"sg_video_button_title\":\"Play Video\",\"sg_video_button_icon\":{\"value\":\"jki jki-play-button-light\",\"library\":\"jkiticon\"},\"sg_video_url\":\"#\",\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_width_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_line_height_responsive\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#FFD402\",\"st_button_normal_glow_color_responsive\":\"#00694361\",\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"_element_width\":\"auto\",\"__globals__\":{\"st_button_normal_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=accent\",\"st_border_normal_border_border_color\":\"\",\"st_button_hover_text_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_glow_color_responsive\":\"\"},\"st_button_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_button_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_width_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_line_height_responsive_mobile\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"st_border_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_border_normal_border_border_color\":\"#FFD027\",\"st_button_line_height_responsive_tablet\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"st_button_normal_background_background_color\":\"#006943\",\"st_button_hover_text_color_responsive\":\"#006943\",\"st_button_hover_background_background_color\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_video_button\"},{\"id\":\"232ec8da\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Intro\",\"align\":\"right\",\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"hide_mobile\":\"hidden-mobile\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#00160E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49b348ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"edc2dbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.00200000000000244426701101474463939666748046875,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e2246bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Greenco\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"139cc45f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Landscaping And Garden Care Services\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dc78e71\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"597dc67d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"26cf3840\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b19bda0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"62\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-and-his-flowers.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"980\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a46c929\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c4d8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Public Liability Insurance\",\"_id\":\"a978734\"},{\"text\":\"Environmentally Friendly\",\"_id\":\"1cd10a1\"},{\"text\":\"On Time, Every Time\",\"_id\":\"c6767db\"},{\"text\":\"Beautiful Garden Designs\",\"_id\":\"d4743f4\"},{\"text\":\"Modern Machinery And Tool\",\"_id\":\"535c17d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"398321ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4c7c15d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.9129999999999967030817060731351375579833984375,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5683e90d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"63\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-topiary-job.jpg\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"860\",\"height\":\"980\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b6190b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"64\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden.jpg\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"-59\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"250636f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"713aa588\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"51a71b71\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#00160E\",\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=primary\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=06a34e7\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"st_content_title_color_responsive\":\"#7F7F7F\",\"st_super_color_responsive\":\"#FFD402\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\",\"sg_setting_html_tag\":\"span\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5557874f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"73847855\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"65\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/garden-maintenance-performed-by-pro-gardener.jpg\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"b1058a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":224,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":478,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":325,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"69098afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"40\",\"bottom\":\"80\",\"left\":\"40\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"7cb7bf82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91cb5d9\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26358abf\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Have The Perfect Solution For Your Landscape Problems\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15a36cc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42c8d36c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7114454f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76f24ca8\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Variation Gardening\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"138cc39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28a78a06\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Expert Landscapers\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c5ac2bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38fdb183\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3ce0b95b\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Affordable Price\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-save-money-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4c80f133\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7451fb11\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Free Consultation\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-Consultancy-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e93f2c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"39a46e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6773b2a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"87647bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find The Best Service For Your Garden\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e2cc66e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30164d28\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e8639b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"66\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/men-watering-garden-plants.jpg\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fa92c14\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2c434fb3\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"5abe2e18\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33425b9f\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Watering Garden\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"472ed309\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"67cb221c\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37c1cce6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"67\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-finishing-garden.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b3e60ba\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3b291bbf\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"20b91942\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5649f719\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Lawn Maintenance\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6300b69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"256ddf68\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3735f0b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"58\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-with-hedge-trimmer-e1635892441479.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"741128a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3691562\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3c8a0e6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5eb1b3b9\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Cutting Leaf\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"25f37292\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"61c9ff8e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"790dd775\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"360\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"160\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"140\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"background_overlay_color_b\":\"#000414\",\"background_overlay_image\":{\"id\":\"69\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/a-gardener-watering-plants-in-a-flowerbed-2RT8DWL.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]}},\"elements\":[{\"id\":\"a2ed5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7e37f762\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Landscaping\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a092069\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d5099\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need Someone To Take Care Your Garden & Lawn?\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=07ee36d\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1198756c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"66521a56\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":20,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":4},\"elements\":[{\"id\":\"1a89d099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.5090000000000003410605131648480892181396484375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"id\":\"70\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/happy-gardeners-with-plants-and-lawn-mower.jpg\"},\"background_position\":\"initial\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"space-between\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_color\":\"#FFFFFF00\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":9,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"46b821c1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":219,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":183,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"449971a9\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Make Appointment & Take Care Your Garden\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=secondary\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=93191b3\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_content_title_color_hover_responsive\":\"#FFFFFF\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#FFFFFF\",\"st_icon_color_responsive\":\"#00E5CC\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#00E5CC\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":false},{\"id\":\"13747b6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.4909999999999996589394868351519107818603515625,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a13f42e\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"260***1635696832144\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fde8487\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"59883b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1617542a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Process\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29c7aa96\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Complete Every Step Carefully\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ced0d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d62463d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18cf7834\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"41f79872\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-consult-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consultation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65e1b761\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"span\",\"title_color\":\"#FFD402\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#006943\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12cdbf13\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4175d29\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-pencil_art-light\",\"library\":\"jkiticon\"},\"title_text\":\"Design Installation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2adabf01\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b628\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"569b3221\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consturction \",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"67d6b2e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6fff79c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53c9a76e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"title_text\":\"Finished Work\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"555aace0\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d57540b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"71\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardening-background-with-garden-tolls-A9BGNJU.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]}},\"elements\":[{\"id\":\"147831a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"5a53d120\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"20\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Years of Experience\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"488f4727\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"6b8f6eae\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"76666759\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f532f9e\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"2850\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Happy Customers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"265fd738\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5473dc22\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"64\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Expert Landscapers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b38731e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4945f2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"627cd42c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65e3182\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.56499999999999772626324556767940521240234375},\"elements\":[{\"id\":\"43108b53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Projects\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45328989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Project We Have Done\\n\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"f382082\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.49900000000000233058017329312860965728759765625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":40,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"55ecfb57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"67afcbfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.0330000000000012505552149377763271331787109375,\"_inline_size_tablet\":23,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4989aa04\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Projects\",\"align\":\"right\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"left\",\"hover_animation\":\"float\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"32515d84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"3f5753f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"21982cfb\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"72\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-pruning-and-shaping-bushes-.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Cutting Leaf\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"404dc561\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"58d29b54\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"73\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/backyard-garden.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Home Garden\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"3bff1dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"3c24185a\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"64\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Build Backyard\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_image_height_responsive_tablet\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b3cb58d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_image\":{\"id\":\"74\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-moving-aerial-photo-Z8KDGJ9.jpg\"},\"background_overlay_color\":\"#0000007D\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]}},\"elements\":[{\"id\":\"79705206\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"51c9a732\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73b2fe0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"What They Says About Us\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4876e632\",\"elType\":\"widget\",\"settings\":{\"sg_layout_testimonial_choose\":\"style-2\",\"sg_testimonials_image_size_imagesize_size\":\"medium\",\"sg_testimonials_list\":[{\"sg_testimonials_list_client_avatar\":{\"id\":\"75\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/3SUMAU.jpg\"},\"_id\":\"6e9b2e1\",\"sg_testimonials_list_client_name\":\"Regan Traynor\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"76\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/CASCKD8.jpg\"},\"sg_testimonials_list_client_name\":\"Maisha Dunn\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"d069a43\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"77\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/MKLVKTE.jpg\"},\"sg_testimonials_list_client_name\":\"Reis Leonard\",\"sg_testimonials_list_designation\":\"Businessman\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"05c24f5\"}],\"st_wrapper_alignment_responsive\":\"left\",\"st_client_name_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_description_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_client_name_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_client_designation_normal_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_client_designation_normal_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=d343bdf\",\"st_rating_color_responsive\":\"\",\"st_client_name_normal_color_responsive\":\"\",\"st_quote_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_layout_background_background_color\":\"\"},\"st_layout_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_layout_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_wrapper_fix_height\":\"\",\"sg_setting_autoplay\":\"yes\",\"sg_setting_autoplay_pause\":\"\",\"sg_setting_arrow\":\"\",\"sg_setting_arrow_position\":\"middle-edge\",\"sg_setting_dots\":\"\",\"sg_setting_quote\":\"yes\",\"sg_setting_rating\":\"\",\"st_layout_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_layout_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_slide_show_responsive\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"sg_setting_quote_icon\":{\"value\":\"jki jki-quote-light\",\"library\":\"jkiticon\"},\"sg_layout_image_position\":\"below\",\"st_layout_background_background_background\":\"classic\",\"st_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position\":\"\",\"st_quote_override_position_top_responsive\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"st_quote_override_position_left_responsive\":{\"unit\":\"px\",\"size\":442,\"sizes\":[]},\"st_client_name_normal_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_quote_normal_font_size_responsive\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"st_client_image_margin_responsive\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_rating_font_size_responsive\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"st_rating_margin_right_responsive\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_setting_slide_show_responsive_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"st_wrapper_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position_top_responsive_tablet\":{\"unit\":\"px\",\"size\":249,\"sizes\":[]},\"st_quote_override_position_top_responsive_mobile\":{\"unit\":\"px\",\"size\":193,\"sizes\":[]},\"st_quote_override_position_left_responsive_tablet\":{\"unit\":\"px\",\"size\":265,\"sizes\":[]},\"st_quote_override_position_left_responsive_mobile\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]},\"st_quote_normal_font_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"st_description_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_normal_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64afd05f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"746d276b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30338dfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f950be4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ca735b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5d6ca3ad\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_title_hover_color_responsive\":\"globals\\/colors?id=secondary\",\"st_readmore_hover_color_responsive\":\"globals\\/colors?id=secondary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#646974\",\"st_excerpt_color_responsive\":\"#646974\",\"st_title_normal_color_responsive\":\"#272B36\",\"st_thumbnail_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_title_hover_color_responsive\":\"#FA8D25\",\"st_readmore_normal_color_responsive\":\"#FA8D25\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":false}],\"isInner\":false}]'),(716,127,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(717,127,'_elementor_css','a:6:{s:4:\"time\";i:1721823335;s:5:\"fonts\";a:1:{i:0;s:5:\"Inter\";}s:5:\"icons\";a:3:{i:0;s:0:\"\";i:1;s:8:\"jkiticon\";i:3;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(718,128,'_elementor_edit_mode','builder'),(719,128,'_elementor_template_type','wp-page'),(720,128,'_elementor_version','3.23.2'),(721,128,'_wp_page_template','default'),(722,128,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(723,128,'_elementor_data','[{\"id\":\"35495243\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"Eldery male gardener using scissors for bushes\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"160\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0,\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_size_tablet\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"top center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00160E\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b\":\"#00000054\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_slideshow_gallery\":[{\"id\":\"58\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-with-hedge-trimmer-e1635892441479.jpg\"},{\"id\":\"59\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/professional-gardener-at-work-XU82AHW.jpg\"},{\"id\":\"60\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-buying-new-plantsP4VGX5F.jpg\"},{\"id\":\"61\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/garden-decorative-trees-trimming-by-professional-gardener-e1635864777836.jpg\"}]},\"elements\":[{\"id\":\"739a26d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":65,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=06a34e7\"}},\"elements\":[{\"id\":\"132d1a8e\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Complete For All\",\"sg_title_focused\":\" Landscape \",\"sg_title_after\":\" Service And Maintenance\",\"sg_title_html_tag\":\"h1\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=primary\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"7c49583a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"635cb25b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"23cf340e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37.85499999999999687361196265555918216705322265625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":48,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"1c4c950d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4768b6f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":62.14500000000000312638803734444081783294677734375,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"flex-start\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":52,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"34c0badb\",\"elType\":\"widget\",\"settings\":{\"sg_video_button_title\":\"Play Video\",\"sg_video_button_icon\":{\"value\":\"jki jki-play\",\"library\":\"jkiticon\"},\"sg_video_url\":\"#\",\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_width_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_line_height_responsive\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#FFD402\",\"st_button_normal_glow_color_responsive\":\"#00694361\",\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"_element_width\":\"auto\",\"__globals__\":{\"st_button_normal_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=accent\",\"st_border_normal_border_border_color\":\"\",\"st_button_hover_text_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_glow_color_responsive\":\"\"},\"st_button_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_button_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_width_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_line_height_responsive_mobile\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"st_border_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_border_normal_border_border_color\":\"#FFD027\",\"st_button_line_height_responsive_tablet\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"st_button_normal_background_background_color\":\"#006943\",\"st_button_hover_text_color_responsive\":\"#006943\",\"st_button_hover_background_background_color\":\"#FFD402\",\"sg_video_auto_play\":\"\",\"sg_video_mute\":\"\"},\"elements\":[],\"widgetType\":\"jkit_video_button\"},{\"id\":\"232ec8da\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Intro\",\"align\":\"right\",\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"hide_mobile\":\"hidden-mobile\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#00160E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49b348ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"edc2dbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.00200000000000244426701101474463939666748046875,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e2246bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Greenco\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"139cc45f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Landscaping And Garden Care Services\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dc78e71\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"597dc67d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"26cf3840\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b19bda0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"62\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-and-his-flowers.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"980\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a46c929\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c4d8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Public Liability Insurance\",\"_id\":\"a978734\"},{\"text\":\"Environmentally Friendly\",\"_id\":\"1cd10a1\"},{\"text\":\"On Time, Every Time\",\"_id\":\"c6767db\"},{\"text\":\"Beautiful Garden Designs\",\"_id\":\"d4743f4\"},{\"text\":\"Modern Machinery And Tool\",\"_id\":\"535c17d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"398321ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4c7c15d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.9129999999999967030817060731351375579833984375,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5683e90d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"63\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-topiary-job.jpg\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"860\",\"height\":\"980\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b6190b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"64\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden.jpg\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"-59\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"250636f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"713aa588\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"51a71b71\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#00160E\",\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=primary\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=06a34e7\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"st_content_title_color_responsive\":\"#7F7F7F\",\"st_super_color_responsive\":\"#FFD402\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\",\"sg_setting_html_tag\":\"span\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5557874f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"73847855\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"65\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/garden-maintenance-performed-by-pro-gardener.jpg\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"b1058a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":224,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":478,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":325,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"69098afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"40\",\"bottom\":\"80\",\"left\":\"40\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"7cb7bf82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91cb5d9\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26358abf\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Have The Perfect Solution For Your Landscape Problems\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15a36cc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42c8d36c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7114454f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76f24ca8\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Variation Gardening\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"138cc39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28a78a06\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Expert Landscapers\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c5ac2bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38fdb183\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3ce0b95b\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Affordable Price\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-save-money-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4c80f133\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7451fb11\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Free Consultation\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-Consultancy-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e93f2c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"39a46e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6773b2a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"87647bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find The Best Service For Your Garden\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e2cc66e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30164d28\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e8639b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"66\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/men-watering-garden-plants.jpg\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fa92c14\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2c434fb3\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"5abe2e18\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33425b9f\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Watering Garden\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"472ed309\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"67cb221c\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37c1cce6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"67\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-finishing-garden.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b3e60ba\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3b291bbf\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"20b91942\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5649f719\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Lawn Maintenance\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6300b69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"256ddf68\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3735f0b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"58\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-with-hedge-trimmer-e1635892441479.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"741128a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3691562\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3c8a0e6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5eb1b3b9\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Cutting Leaf\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"25f37292\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"61c9ff8e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"790dd775\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"360\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"160\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"140\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"background_overlay_color_b\":\"#000414\",\"background_overlay_image\":{\"id\":\"69\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/a-gardener-watering-plants-in-a-flowerbed-2RT8DWL.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]}},\"elements\":[{\"id\":\"a2ed5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7e37f762\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Landscaping\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a092069\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d5099\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need Someone To Take Care Your Garden & Lawn?\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=07ee36d\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1198756c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"66521a56\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":20,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":4},\"elements\":[{\"id\":\"1a89d099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.5090000000000003410605131648480892181396484375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"id\":\"70\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/happy-gardeners-with-plants-and-lawn-mower.jpg\"},\"background_position\":\"initial\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"space-between\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_color\":\"#FFFFFF00\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":9,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"46b821c1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":219,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":183,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"449971a9\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Make Appointment & Take Care Your Garden\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=secondary\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=93191b3\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_content_title_color_hover_responsive\":\"#FFFFFF\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#FFFFFF\",\"st_icon_color_responsive\":\"#00E5CC\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#00E5CC\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":false},{\"id\":\"13747b6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.4909999999999996589394868351519107818603515625,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a13f42e\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"260***1635696832144\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fde8487\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"59883b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1617542a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Process\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29c7aa96\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Complete Every Step Carefully\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ced0d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d62463d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18cf7834\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"41f79872\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-consult-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consultation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65e1b761\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"span\",\"title_color\":\"#FFD402\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#006943\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12cdbf13\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4175d29\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-pencil_art-light\",\"library\":\"jkiticon\"},\"title_text\":\"Design Installation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2adabf01\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b628\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"569b3221\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consturction \",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"67d6b2e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6fff79c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53c9a76e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"title_text\":\"Finished Work\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"555aace0\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d57540b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"71\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardening-background-with-garden-tolls-A9BGNJU.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]}},\"elements\":[{\"id\":\"147831a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"5a53d120\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"20\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Years of Experience\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"488f4727\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"6b8f6eae\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"76666759\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f532f9e\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"2850\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Happy Customers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"265fd738\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5473dc22\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"64\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Expert Landscapers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b38731e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4945f2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"627cd42c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65e3182\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.56499999999999772626324556767940521240234375},\"elements\":[{\"id\":\"43108b53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Projects\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45328989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Project We Have Done\\n\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"f382082\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.49900000000000233058017329312860965728759765625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":40,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"55ecfb57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"67afcbfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.0330000000000012505552149377763271331787109375,\"_inline_size_tablet\":23,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4989aa04\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Projects\",\"align\":\"right\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"left\",\"hover_animation\":\"float\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"32515d84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"3f5753f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"21982cfb\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"72\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-pruning-and-shaping-bushes-.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Cutting Leaf\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"404dc561\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"58d29b54\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"73\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/backyard-garden.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Home Garden\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"3bff1dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"3c24185a\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"64\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Build Backyard\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_image_height_responsive_tablet\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b3cb58d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_image\":{\"id\":\"74\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-moving-aerial-photo-Z8KDGJ9.jpg\"},\"background_overlay_color\":\"#0000007D\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]}},\"elements\":[{\"id\":\"79705206\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"51c9a732\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73b2fe0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"What They Says About Us\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4876e632\",\"elType\":\"widget\",\"settings\":{\"sg_layout_testimonial_choose\":\"style-2\",\"sg_testimonials_image_size_imagesize_size\":\"medium\",\"sg_testimonials_list\":[{\"sg_testimonials_list_client_avatar\":{\"id\":\"75\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/3SUMAU.jpg\"},\"_id\":\"6e9b2e1\",\"sg_testimonials_list_client_name\":\"Regan Traynor\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"76\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/CASCKD8.jpg\"},\"sg_testimonials_list_client_name\":\"Maisha Dunn\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"d069a43\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"77\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/MKLVKTE.jpg\"},\"sg_testimonials_list_client_name\":\"Reis Leonard\",\"sg_testimonials_list_designation\":\"Businessman\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"05c24f5\"}],\"st_wrapper_alignment_responsive\":\"left\",\"st_client_name_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_description_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_client_name_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_client_designation_normal_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_client_designation_normal_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=d343bdf\",\"st_rating_color_responsive\":\"\",\"st_client_name_normal_color_responsive\":\"\",\"st_quote_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_layout_background_background_color\":\"\"},\"st_layout_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_layout_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_wrapper_fix_height\":\"\",\"sg_setting_autoplay\":\"yes\",\"sg_setting_autoplay_pause\":\"\",\"sg_setting_arrow\":\"\",\"sg_setting_arrow_position\":\"middle-edge\",\"sg_setting_dots\":\"\",\"sg_setting_quote\":\"yes\",\"sg_setting_rating\":\"\",\"st_layout_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_layout_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_slide_show_responsive\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"sg_setting_quote_icon\":{\"value\":\"jki jki-quote-light\",\"library\":\"jkiticon\"},\"sg_layout_image_position\":\"below\",\"st_layout_background_background_background\":\"classic\",\"st_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position\":\"\",\"st_quote_override_position_top_responsive\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"st_quote_override_position_left_responsive\":{\"unit\":\"px\",\"size\":442,\"sizes\":[]},\"st_client_name_normal_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_quote_normal_font_size_responsive\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"st_client_image_margin_responsive\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_rating_font_size_responsive\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"st_rating_margin_right_responsive\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_setting_slide_show_responsive_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"st_wrapper_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position_top_responsive_tablet\":{\"unit\":\"px\",\"size\":249,\"sizes\":[]},\"st_quote_override_position_top_responsive_mobile\":{\"unit\":\"px\",\"size\":193,\"sizes\":[]},\"st_quote_override_position_left_responsive_tablet\":{\"unit\":\"px\",\"size\":265,\"sizes\":[]},\"st_quote_override_position_left_responsive_mobile\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]},\"st_quote_normal_font_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"st_description_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_normal_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64afd05f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"746d276b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30338dfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f950be4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ca735b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5d6ca3ad\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_title_hover_color_responsive\":\"globals\\/colors?id=secondary\",\"st_readmore_hover_color_responsive\":\"globals\\/colors?id=secondary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#646974\",\"st_excerpt_color_responsive\":\"#646974\",\"st_title_normal_color_responsive\":\"#272B36\",\"st_thumbnail_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_title_hover_color_responsive\":\"#FA8D25\",\"st_readmore_normal_color_responsive\":\"#FA8D25\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":false}],\"isInner\":false}]'),(724,128,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(725,128,'_elementor_css','a:6:{s:4:\"time\";i:1721823335;s:5:\"fonts\";a:1:{i:0;s:5:\"Inter\";}s:5:\"icons\";a:3:{i:0;s:0:\"\";i:1;s:8:\"jkiticon\";i:3;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(733,130,'_elementor_edit_mode','builder'),(734,130,'_elementor_template_type','wp-page'),(735,130,'_elementor_version','3.23.2'),(736,130,'_wp_page_template','default'),(737,130,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(738,130,'_elementor_data','[{\"id\":\"35495243\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"Eldery male gardener using scissors for bushes\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"160\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0,\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_size_tablet\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"top center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00160E\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b\":\"#00000054\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_slideshow_gallery\":[{\"id\":\"58\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-with-hedge-trimmer-e1635892441479.jpg\"},{\"id\":\"59\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/professional-gardener-at-work-XU82AHW.jpg\"},{\"id\":\"60\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-buying-new-plantsP4VGX5F.jpg\"},{\"id\":\"61\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/garden-decorative-trees-trimming-by-professional-gardener-e1635864777836.jpg\"}]},\"elements\":[{\"id\":\"739a26d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":65,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=06a34e7\"}},\"elements\":[{\"id\":\"132d1a8e\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Complete For All\",\"sg_title_focused\":\" Landscape \",\"sg_title_after\":\" Service And Maintenance\",\"sg_title_html_tag\":\"h1\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=primary\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"7c49583a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"635cb25b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"23cf340e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37.85499999999999687361196265555918216705322265625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":48,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"1c4c950d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4768b6f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":62.14500000000000312638803734444081783294677734375,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"flex-start\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":52,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"34c0badb\",\"elType\":\"widget\",\"settings\":{\"sg_video_button_title\":\"Play Video\",\"sg_video_button_icon\":{\"value\":\"jki jki-play\",\"library\":\"jkiticon\"},\"sg_video_url\":\"#\",\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_width_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_line_height_responsive\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#FFD402\",\"st_button_normal_glow_color_responsive\":\"#00694361\",\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"_element_width\":\"auto\",\"__globals__\":{\"st_button_normal_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=accent\",\"st_border_normal_border_border_color\":\"\",\"st_button_hover_text_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_glow_color_responsive\":\"\"},\"st_button_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_button_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_width_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_line_height_responsive_mobile\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"st_border_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_border_normal_border_border_color\":\"#FFD027\",\"st_button_line_height_responsive_tablet\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"st_button_normal_background_background_color\":\"#006943\",\"st_button_hover_text_color_responsive\":\"#006943\",\"st_button_hover_background_background_color\":\"#FFD402\",\"sg_video_auto_play\":\"\",\"sg_video_mute\":\"\"},\"elements\":[],\"widgetType\":\"jkit_video_button\"},{\"id\":\"232ec8da\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Intro\",\"align\":\"right\",\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"hide_mobile\":\"hidden-mobile\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#00160E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49b348ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"edc2dbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.00200000000000244426701101474463939666748046875,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e2246bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Greenco\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"139cc45f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Landscaping And Garden Care Services\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dc78e71\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"597dc67d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"26cf3840\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b19bda0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"62\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-and-his-flowers.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"980\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a46c929\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c4d8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Public Liability Insurance\",\"_id\":\"a978734\"},{\"text\":\"Environmentally Friendly\",\"_id\":\"1cd10a1\"},{\"text\":\"On Time, Every Time\",\"_id\":\"c6767db\"},{\"text\":\"Beautiful Garden Designs\",\"_id\":\"d4743f4\"},{\"text\":\"Modern Machinery And Tool\",\"_id\":\"535c17d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"398321ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4c7c15d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.9129999999999967030817060731351375579833984375,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5683e90d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"63\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-topiary-job.jpg\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"860\",\"height\":\"980\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b6190b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"64\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden.jpg\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"-59\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"250636f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"713aa588\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"51a71b71\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#00160E\",\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=primary\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=06a34e7\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"st_content_title_color_responsive\":\"#7F7F7F\",\"st_super_color_responsive\":\"#FFD402\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\",\"sg_setting_html_tag\":\"span\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5557874f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"73847855\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"65\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/garden-maintenance-performed-by-pro-gardener.jpg\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"b1058a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":224,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":478,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":325,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"69098afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"40\",\"bottom\":\"80\",\"left\":\"40\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"7cb7bf82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91cb5d9\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26358abf\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Have The Perfect Solution For Your Landscape Problems\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15a36cc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42c8d36c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7114454f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76f24ca8\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Variation Gardening\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"138cc39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28a78a06\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Expert Landscapers\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c5ac2bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38fdb183\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3ce0b95b\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Affordable Price\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-save-money-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4c80f133\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7451fb11\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Free Consultation\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-Consultancy-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e93f2c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"39a46e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6773b2a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"87647bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find The Best Service For Your Garden\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e2cc66e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30164d28\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e8639b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"66\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/men-watering-garden-plants.jpg\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fa92c14\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2c434fb3\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"5abe2e18\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33425b9f\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Watering Garden\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"472ed309\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"67cb221c\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37c1cce6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"67\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-finishing-garden.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b3e60ba\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3b291bbf\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"20b91942\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5649f719\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Lawn Maintenance\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6300b69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"256ddf68\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3735f0b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"58\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-with-hedge-trimmer-e1635892441479.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"741128a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3691562\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3c8a0e6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5eb1b3b9\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Cutting Leaf\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"25f37292\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"61c9ff8e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"790dd775\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"360\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"160\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"140\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"background_overlay_color_b\":\"#000414\",\"background_overlay_image\":{\"id\":\"69\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/a-gardener-watering-plants-in-a-flowerbed-2RT8DWL.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]}},\"elements\":[{\"id\":\"a2ed5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7e37f762\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Landscaping\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a092069\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d5099\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need Someone To Take Care Your Garden & Lawn?\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=07ee36d\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1198756c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"66521a56\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":20,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":4},\"elements\":[{\"id\":\"1a89d099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.5090000000000003410605131648480892181396484375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"id\":\"70\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/happy-gardeners-with-plants-and-lawn-mower.jpg\"},\"background_position\":\"initial\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"space-between\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_color\":\"#FFFFFF00\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":9,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"46b821c1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":219,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":183,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"449971a9\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Make Appointment & Take Care Your Garden\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=secondary\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=93191b3\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_content_title_color_hover_responsive\":\"#FFFFFF\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#FFFFFF\",\"st_icon_color_responsive\":\"#00E5CC\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#00E5CC\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":false},{\"id\":\"13747b6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.4909999999999996589394868351519107818603515625,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a13f42e\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"260***1635696832144\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fde8487\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"59883b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1617542a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Process\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29c7aa96\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Complete Every Step Carefully\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ced0d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d62463d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18cf7834\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"41f79872\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-consult-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consultation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65e1b761\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"span\",\"title_color\":\"#FFD402\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#006943\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12cdbf13\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4175d29\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-pencil_art-light\",\"library\":\"jkiticon\"},\"title_text\":\"Design Installation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2adabf01\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b628\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"569b3221\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consturction \",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"67d6b2e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6fff79c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53c9a76e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"title_text\":\"Finished Work\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"555aace0\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d57540b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"71\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardening-background-with-garden-tolls-A9BGNJU.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]}},\"elements\":[{\"id\":\"147831a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"5a53d120\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"20\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Years of Experience\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"488f4727\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"6b8f6eae\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"76666759\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f532f9e\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"2850\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Happy Customers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"265fd738\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5473dc22\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"64\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Expert Landscapers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b38731e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4945f2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"627cd42c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65e3182\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.56499999999999772626324556767940521240234375},\"elements\":[{\"id\":\"43108b53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Projects\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45328989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Project We Have Done\\n\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"f382082\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.49900000000000233058017329312860965728759765625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":40,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"55ecfb57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"67afcbfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.0330000000000012505552149377763271331787109375,\"_inline_size_tablet\":23,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4989aa04\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Projects\",\"align\":\"right\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"left\",\"hover_animation\":\"float\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"32515d84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"3f5753f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"21982cfb\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"72\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-pruning-and-shaping-bushes-.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Cutting Leaf\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"404dc561\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"58d29b54\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"73\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/backyard-garden.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Home Garden\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"3bff1dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"3c24185a\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"64\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Build Backyard\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_image_height_responsive_tablet\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b3cb58d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_image\":{\"id\":\"74\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-moving-aerial-photo-Z8KDGJ9.jpg\"},\"background_overlay_color\":\"#0000007D\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]}},\"elements\":[{\"id\":\"79705206\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"51c9a732\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73b2fe0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"What They Says About Us\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4876e632\",\"elType\":\"widget\",\"settings\":{\"sg_layout_testimonial_choose\":\"style-2\",\"sg_testimonials_image_size_imagesize_size\":\"medium\",\"sg_testimonials_list\":[{\"sg_testimonials_list_client_avatar\":{\"id\":\"75\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/3SUMAU.jpg\"},\"_id\":\"6e9b2e1\",\"sg_testimonials_list_client_name\":\"Regan Traynor\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"76\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/CASCKD8.jpg\"},\"sg_testimonials_list_client_name\":\"Maisha Dunn\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"d069a43\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"77\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/MKLVKTE.jpg\"},\"sg_testimonials_list_client_name\":\"Reis Leonard\",\"sg_testimonials_list_designation\":\"Businessman\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"05c24f5\"}],\"st_wrapper_alignment_responsive\":\"left\",\"st_client_name_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_description_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_client_name_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_client_designation_normal_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_client_designation_normal_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=d343bdf\",\"st_rating_color_responsive\":\"\",\"st_client_name_normal_color_responsive\":\"\",\"st_quote_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_layout_background_background_color\":\"\"},\"st_layout_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_layout_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_wrapper_fix_height\":\"\",\"sg_setting_autoplay\":\"yes\",\"sg_setting_autoplay_pause\":\"\",\"sg_setting_arrow\":\"\",\"sg_setting_arrow_position\":\"middle-edge\",\"sg_setting_dots\":\"\",\"sg_setting_quote\":\"yes\",\"sg_setting_rating\":\"\",\"st_layout_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_layout_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_slide_show_responsive\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"sg_setting_quote_icon\":{\"value\":\"jki jki-quote-light\",\"library\":\"jkiticon\"},\"sg_layout_image_position\":\"below\",\"st_layout_background_background_background\":\"classic\",\"st_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position\":\"\",\"st_quote_override_position_top_responsive\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"st_quote_override_position_left_responsive\":{\"unit\":\"px\",\"size\":442,\"sizes\":[]},\"st_client_name_normal_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_quote_normal_font_size_responsive\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"st_client_image_margin_responsive\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_rating_font_size_responsive\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"st_rating_margin_right_responsive\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_setting_slide_show_responsive_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"st_wrapper_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position_top_responsive_tablet\":{\"unit\":\"px\",\"size\":249,\"sizes\":[]},\"st_quote_override_position_top_responsive_mobile\":{\"unit\":\"px\",\"size\":193,\"sizes\":[]},\"st_quote_override_position_left_responsive_tablet\":{\"unit\":\"px\",\"size\":265,\"sizes\":[]},\"st_quote_override_position_left_responsive_mobile\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]},\"st_quote_normal_font_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"st_description_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_normal_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64afd05f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"746d276b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30338dfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f950be4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ca735b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5d6ca3ad\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_title_hover_color_responsive\":\"globals\\/colors?id=secondary\",\"st_readmore_hover_color_responsive\":\"globals\\/colors?id=secondary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#646974\",\"st_excerpt_color_responsive\":\"#646974\",\"st_title_normal_color_responsive\":\"#272B36\",\"st_thumbnail_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_title_hover_color_responsive\":\"#FA8D25\",\"st_readmore_normal_color_responsive\":\"#FA8D25\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":false}],\"isInner\":false}]'),(739,130,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(740,131,'_elementor_edit_mode','builder'),(741,131,'_elementor_template_type','wp-page'),(742,131,'_elementor_version','3.23.2'),(743,131,'_wp_page_template','default'),(744,131,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(745,131,'_elementor_data','[{\"id\":\"35495243\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"Eldery male gardener using scissors for bushes\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"160\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0,\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_size_tablet\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"top center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00160E\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b\":\"#00000054\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_slideshow_gallery\":[{\"id\":\"58\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-with-hedge-trimmer-e1635892441479.jpg\"},{\"id\":\"59\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/professional-gardener-at-work-XU82AHW.jpg\"},{\"id\":\"60\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-buying-new-plantsP4VGX5F.jpg\"},{\"id\":\"61\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/garden-decorative-trees-trimming-by-professional-gardener-e1635864777836.jpg\"}]},\"elements\":[{\"id\":\"739a26d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":65,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=06a34e7\"}},\"elements\":[{\"id\":\"132d1a8e\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Complete For All\",\"sg_title_focused\":\" Landscape \",\"sg_title_after\":\" Service And Maintenance\",\"sg_title_html_tag\":\"h1\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=primary\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"7c49583a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"635cb25b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"23cf340e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37.85499999999999687361196265555918216705322265625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":48,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"1c4c950d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4768b6f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":62.14500000000000312638803734444081783294677734375,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"flex-start\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":52,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"34c0badb\",\"elType\":\"widget\",\"settings\":{\"sg_video_button_title\":\"Play Video\",\"sg_video_button_icon\":{\"value\":\"jki jki-play\",\"library\":\"jkiticon\"},\"sg_video_url\":\"#\",\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_width_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_line_height_responsive\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#FFD402\",\"st_button_normal_glow_color_responsive\":\"#00694361\",\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"_element_width\":\"auto\",\"__globals__\":{\"st_button_normal_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=accent\",\"st_border_normal_border_border_color\":\"\",\"st_button_hover_text_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_glow_color_responsive\":\"\"},\"st_button_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_button_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_width_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_line_height_responsive_mobile\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"st_border_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_border_normal_border_border_color\":\"#FFD027\",\"st_button_line_height_responsive_tablet\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"st_button_normal_background_background_color\":\"#006943\",\"st_button_hover_text_color_responsive\":\"#006943\",\"st_button_hover_background_background_color\":\"#FFD402\",\"sg_video_auto_play\":\"\",\"sg_video_mute\":\"\"},\"elements\":[],\"widgetType\":\"jkit_video_button\"},{\"id\":\"232ec8da\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Intro\",\"align\":\"right\",\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"hide_mobile\":\"hidden-mobile\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#00160E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49b348ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"edc2dbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.00200000000000244426701101474463939666748046875,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e2246bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Greenco\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"139cc45f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Landscaping And Garden Care Services\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dc78e71\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"597dc67d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"26cf3840\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b19bda0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"62\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-and-his-flowers.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"980\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a46c929\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c4d8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Public Liability Insurance\",\"_id\":\"a978734\"},{\"text\":\"Environmentally Friendly\",\"_id\":\"1cd10a1\"},{\"text\":\"On Time, Every Time\",\"_id\":\"c6767db\"},{\"text\":\"Beautiful Garden Designs\",\"_id\":\"d4743f4\"},{\"text\":\"Modern Machinery And Tool\",\"_id\":\"535c17d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"398321ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4c7c15d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.9129999999999967030817060731351375579833984375,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5683e90d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"63\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-topiary-job.jpg\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"860\",\"height\":\"980\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b6190b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"64\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden.jpg\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"-59\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"250636f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"713aa588\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"51a71b71\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#00160E\",\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=primary\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=06a34e7\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"st_content_title_color_responsive\":\"#7F7F7F\",\"st_super_color_responsive\":\"#FFD402\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\",\"sg_setting_html_tag\":\"span\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5557874f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"73847855\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"65\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/garden-maintenance-performed-by-pro-gardener.jpg\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"b1058a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":224,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":478,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":325,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"69098afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"40\",\"bottom\":\"80\",\"left\":\"40\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"7cb7bf82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91cb5d9\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26358abf\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Have The Perfect Solution For Your Landscape Problems\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15a36cc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42c8d36c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7114454f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76f24ca8\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Variation Gardening\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"138cc39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28a78a06\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Expert Landscapers\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c5ac2bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38fdb183\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3ce0b95b\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Affordable Price\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-save-money-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4c80f133\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7451fb11\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Free Consultation\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-Consultancy-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e93f2c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"39a46e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6773b2a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"87647bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find The Best Service For Your Garden\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e2cc66e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30164d28\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e8639b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"66\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/men-watering-garden-plants.jpg\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fa92c14\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2c434fb3\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"5abe2e18\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33425b9f\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Watering Garden\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"472ed309\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"67cb221c\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37c1cce6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"67\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-finishing-garden.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b3e60ba\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3b291bbf\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"20b91942\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5649f719\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Lawn Maintenance\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6300b69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"256ddf68\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3735f0b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"58\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-with-hedge-trimmer-e1635892441479.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"741128a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3691562\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3c8a0e6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5eb1b3b9\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Cutting Leaf\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"25f37292\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"61c9ff8e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"790dd775\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"360\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"160\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"140\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"background_overlay_color_b\":\"#000414\",\"background_overlay_image\":{\"id\":\"69\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/a-gardener-watering-plants-in-a-flowerbed-2RT8DWL.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]}},\"elements\":[{\"id\":\"a2ed5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7e37f762\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Landscaping\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a092069\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d5099\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need Someone To Take Care Your Garden & Lawn?\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=07ee36d\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1198756c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"66521a56\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":20,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":4},\"elements\":[{\"id\":\"1a89d099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.5090000000000003410605131648480892181396484375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"id\":\"70\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/happy-gardeners-with-plants-and-lawn-mower.jpg\"},\"background_position\":\"initial\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"space-between\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_color\":\"#FFFFFF00\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":9,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"46b821c1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":219,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":183,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"449971a9\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Make Appointment & Take Care Your Garden\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=secondary\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=93191b3\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_content_title_color_hover_responsive\":\"#FFFFFF\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#FFFFFF\",\"st_icon_color_responsive\":\"#00E5CC\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#00E5CC\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":false},{\"id\":\"13747b6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.4909999999999996589394868351519107818603515625,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a13f42e\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"260***1635696832144\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fde8487\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"59883b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1617542a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Process\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29c7aa96\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Complete Every Step Carefully\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ced0d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d62463d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18cf7834\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"41f79872\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-consult-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consultation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65e1b761\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"span\",\"title_color\":\"#FFD402\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#006943\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12cdbf13\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4175d29\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-pencil_art-light\",\"library\":\"jkiticon\"},\"title_text\":\"Design Installation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2adabf01\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b628\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"569b3221\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consturction \",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"67d6b2e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6fff79c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53c9a76e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"title_text\":\"Finished Work\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"555aace0\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d57540b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"71\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardening-background-with-garden-tolls-A9BGNJU.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]}},\"elements\":[{\"id\":\"147831a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"5a53d120\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"20\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Years of Experience\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"488f4727\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"6b8f6eae\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"76666759\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f532f9e\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"2850\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Happy Customers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"265fd738\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5473dc22\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"64\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Expert Landscapers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b38731e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4945f2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"627cd42c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65e3182\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.56499999999999772626324556767940521240234375},\"elements\":[{\"id\":\"43108b53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Projects\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45328989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Project We Have Done\\n\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"f382082\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.49900000000000233058017329312860965728759765625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":40,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"55ecfb57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"67afcbfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.0330000000000012505552149377763271331787109375,\"_inline_size_tablet\":23,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4989aa04\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Projects\",\"align\":\"right\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"left\",\"hover_animation\":\"float\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"32515d84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"3f5753f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"21982cfb\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"72\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-pruning-and-shaping-bushes-.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Cutting Leaf\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"404dc561\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"58d29b54\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"73\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/backyard-garden.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Home Garden\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"3bff1dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"3c24185a\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"64\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Build Backyard\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_image_height_responsive_tablet\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b3cb58d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_image\":{\"id\":\"74\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-moving-aerial-photo-Z8KDGJ9.jpg\"},\"background_overlay_color\":\"#0000007D\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]}},\"elements\":[{\"id\":\"79705206\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"51c9a732\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73b2fe0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"What They Says About Us\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4876e632\",\"elType\":\"widget\",\"settings\":{\"sg_layout_testimonial_choose\":\"style-2\",\"sg_testimonials_image_size_imagesize_size\":\"medium\",\"sg_testimonials_list\":[{\"sg_testimonials_list_client_avatar\":{\"id\":\"75\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/3SUMAU.jpg\"},\"_id\":\"6e9b2e1\",\"sg_testimonials_list_client_name\":\"Regan Traynor\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"76\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/CASCKD8.jpg\"},\"sg_testimonials_list_client_name\":\"Maisha Dunn\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"d069a43\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"77\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/MKLVKTE.jpg\"},\"sg_testimonials_list_client_name\":\"Reis Leonard\",\"sg_testimonials_list_designation\":\"Businessman\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"05c24f5\"}],\"st_wrapper_alignment_responsive\":\"left\",\"st_client_name_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_description_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_client_name_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_client_designation_normal_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_client_designation_normal_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=d343bdf\",\"st_rating_color_responsive\":\"\",\"st_client_name_normal_color_responsive\":\"\",\"st_quote_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_layout_background_background_color\":\"\"},\"st_layout_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_layout_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_wrapper_fix_height\":\"\",\"sg_setting_autoplay\":\"yes\",\"sg_setting_autoplay_pause\":\"\",\"sg_setting_arrow\":\"\",\"sg_setting_arrow_position\":\"middle-edge\",\"sg_setting_dots\":\"\",\"sg_setting_quote\":\"yes\",\"sg_setting_rating\":\"\",\"st_layout_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_layout_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_slide_show_responsive\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"sg_setting_quote_icon\":{\"value\":\"jki jki-quote-light\",\"library\":\"jkiticon\"},\"sg_layout_image_position\":\"below\",\"st_layout_background_background_background\":\"classic\",\"st_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position\":\"\",\"st_quote_override_position_top_responsive\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"st_quote_override_position_left_responsive\":{\"unit\":\"px\",\"size\":442,\"sizes\":[]},\"st_client_name_normal_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_quote_normal_font_size_responsive\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"st_client_image_margin_responsive\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_rating_font_size_responsive\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"st_rating_margin_right_responsive\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_setting_slide_show_responsive_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"st_wrapper_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position_top_responsive_tablet\":{\"unit\":\"px\",\"size\":249,\"sizes\":[]},\"st_quote_override_position_top_responsive_mobile\":{\"unit\":\"px\",\"size\":193,\"sizes\":[]},\"st_quote_override_position_left_responsive_tablet\":{\"unit\":\"px\",\"size\":265,\"sizes\":[]},\"st_quote_override_position_left_responsive_mobile\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]},\"st_quote_normal_font_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"st_description_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_normal_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64afd05f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"746d276b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30338dfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f950be4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ca735b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5d6ca3ad\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_title_hover_color_responsive\":\"globals\\/colors?id=secondary\",\"st_readmore_hover_color_responsive\":\"globals\\/colors?id=secondary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#646974\",\"st_excerpt_color_responsive\":\"#646974\",\"st_title_normal_color_responsive\":\"#272B36\",\"st_thumbnail_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_title_hover_color_responsive\":\"#FA8D25\",\"st_readmore_normal_color_responsive\":\"#FA8D25\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":false}],\"isInner\":false}]'),(746,131,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(747,132,'_elementor_edit_mode','builder'),(748,132,'_elementor_template_type','wp-page'),(749,132,'_elementor_version','3.23.2'),(750,132,'_wp_page_template','default'),(751,132,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(752,132,'_elementor_data','[{\"id\":\"35495243\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"Eldery male gardener using scissors for bushes\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"160\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0,\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_size_tablet\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"top center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00160E\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b\":\"#00000054\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_slideshow_gallery\":[{\"id\":\"58\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-with-hedge-trimmer-e1635892441479.jpg\"},{\"id\":\"59\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/professional-gardener-at-work-XU82AHW.jpg\"},{\"id\":\"60\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-buying-new-plantsP4VGX5F.jpg\"},{\"id\":\"61\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/garden-decorative-trees-trimming-by-professional-gardener-e1635864777836.jpg\"}]},\"elements\":[{\"id\":\"739a26d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":65,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=06a34e7\"}},\"elements\":[{\"id\":\"132d1a8e\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Complete For All\",\"sg_title_focused\":\" Landscape \",\"sg_title_after\":\" Service And Maintenance\",\"sg_title_html_tag\":\"h1\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=primary\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"7c49583a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"635cb25b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"23cf340e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37.85499999999999687361196265555918216705322265625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":48,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"1c4c950d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4768b6f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":62.14500000000000312638803734444081783294677734375,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"flex-start\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":52,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"34c0badb\",\"elType\":\"widget\",\"settings\":{\"sg_video_button_title\":\"Play Video\",\"sg_video_button_icon\":{\"value\":\"jki jki-play\",\"library\":\"jkiticon\"},\"sg_video_url\":\"#\",\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_width_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_line_height_responsive\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#FFD402\",\"st_button_normal_glow_color_responsive\":\"#00694361\",\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"_element_width\":\"auto\",\"__globals__\":{\"st_button_normal_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=accent\",\"st_border_normal_border_border_color\":\"\",\"st_button_hover_text_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_glow_color_responsive\":\"\"},\"st_button_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_button_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_width_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_line_height_responsive_mobile\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"st_border_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_border_normal_border_border_color\":\"#FFD027\",\"st_button_line_height_responsive_tablet\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"st_button_normal_background_background_color\":\"#006943\",\"st_button_hover_text_color_responsive\":\"#006943\",\"st_button_hover_background_background_color\":\"#FFD402\",\"sg_video_auto_play\":\"\",\"sg_video_mute\":\"\"},\"elements\":[],\"widgetType\":\"jkit_video_button\"},{\"id\":\"232ec8da\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Intro\",\"align\":\"right\",\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"hide_mobile\":\"hidden-mobile\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#00160E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49b348ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"edc2dbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.00200000000000244426701101474463939666748046875,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e2246bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Greenco\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"139cc45f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Landscaping And Garden Care Services\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dc78e71\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"597dc67d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"26cf3840\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b19bda0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"62\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-and-his-flowers.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"980\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a46c929\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c4d8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Public Liability Insurance\",\"_id\":\"a978734\"},{\"text\":\"Environmentally Friendly\",\"_id\":\"1cd10a1\"},{\"text\":\"On Time, Every Time\",\"_id\":\"c6767db\"},{\"text\":\"Beautiful Garden Designs\",\"_id\":\"d4743f4\"},{\"text\":\"Modern Machinery And Tool\",\"_id\":\"535c17d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"398321ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4c7c15d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.9129999999999967030817060731351375579833984375,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5683e90d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"63\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-topiary-job.jpg\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"860\",\"height\":\"980\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b6190b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"64\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden.jpg\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"-59\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"250636f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"713aa588\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"51a71b71\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#00160E\",\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=primary\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=06a34e7\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"st_content_title_color_responsive\":\"#7F7F7F\",\"st_super_color_responsive\":\"#FFD402\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\",\"sg_setting_html_tag\":\"span\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5557874f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"73847855\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"65\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/garden-maintenance-performed-by-pro-gardener.jpg\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"b1058a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":224,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":478,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":325,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"69098afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"40\",\"bottom\":\"80\",\"left\":\"40\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"7cb7bf82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91cb5d9\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26358abf\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Have The Perfect Solution For Your Landscape Problems\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15a36cc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42c8d36c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7114454f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76f24ca8\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Variation Gardening\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"138cc39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28a78a06\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Expert Landscapers\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c5ac2bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38fdb183\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3ce0b95b\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Affordable Price\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-save-money-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4c80f133\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7451fb11\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Free Consultation\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-Consultancy-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e93f2c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"39a46e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6773b2a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"87647bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find The Best Service For Your Garden\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e2cc66e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30164d28\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e8639b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"66\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/men-watering-garden-plants.jpg\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fa92c14\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2c434fb3\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"5abe2e18\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33425b9f\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Lawn Services\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"472ed309\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"67cb221c\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37c1cce6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"67\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-finishing-garden.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b3e60ba\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3b291bbf\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"20b91942\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5649f719\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Driveway Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6300b69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"256ddf68\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3735f0b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"58\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-with-hedge-trimmer-e1635892441479.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"741128a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3691562\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3c8a0e6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5eb1b3b9\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Deck Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"25f37292\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"61c9ff8e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d41e618\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"8781ee3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"66\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/men-watering-garden-plants.jpg\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd84c7d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"14f7965\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fb2459e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0582197\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Weed Control \",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"f7b0fa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0197d9e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f3de9c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"67\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-finishing-garden.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"75ba950\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"23edbf4\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"ad70b3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1c4ac7\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Grass Feed\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6f592ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0043a3b\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e6d8a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"58\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-with-hedge-trimmer-e1635892441479.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd233da\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6535a16\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"937e2e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7aee\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Edging Cleaning\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"d9723d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"c908972\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"790dd775\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"360\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"160\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"140\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"background_overlay_color_b\":\"#000414\",\"background_overlay_image\":{\"id\":\"69\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/a-gardener-watering-plants-in-a-flowerbed-2RT8DWL.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]}},\"elements\":[{\"id\":\"a2ed5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7e37f762\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Landscaping\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a092069\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d5099\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need Someone To Take Care Your Garden & Lawn?\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=07ee36d\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1198756c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"66521a56\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":20,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":4},\"elements\":[{\"id\":\"1a89d099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.5090000000000003410605131648480892181396484375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"id\":\"70\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/happy-gardeners-with-plants-and-lawn-mower.jpg\"},\"background_position\":\"initial\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"space-between\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_color\":\"#FFFFFF00\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":9,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"46b821c1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":219,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":183,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"449971a9\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Make Appointment & Take Care Your Garden\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=secondary\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=93191b3\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_content_title_color_hover_responsive\":\"#FFFFFF\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#FFFFFF\",\"st_icon_color_responsive\":\"#00E5CC\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#00E5CC\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":false},{\"id\":\"13747b6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.4909999999999996589394868351519107818603515625,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a13f42e\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"260***1635696832144\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fde8487\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"59883b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1617542a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Process\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29c7aa96\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Complete Every Step Carefully\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ced0d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d62463d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18cf7834\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"41f79872\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-consult-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consultation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65e1b761\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"span\",\"title_color\":\"#FFD402\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#006943\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12cdbf13\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4175d29\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-pencil_art-light\",\"library\":\"jkiticon\"},\"title_text\":\"Design Installation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2adabf01\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b628\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"569b3221\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consturction \",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"67d6b2e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6fff79c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53c9a76e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"title_text\":\"Finished Work\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"555aace0\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d57540b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"71\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardening-background-with-garden-tolls-A9BGNJU.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]}},\"elements\":[{\"id\":\"147831a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"5a53d120\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"20\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Years of Experience\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"488f4727\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"6b8f6eae\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"76666759\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f532f9e\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"2850\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Happy Customers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"265fd738\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5473dc22\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"64\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Expert Landscapers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b38731e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4945f2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"627cd42c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65e3182\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.56499999999999772626324556767940521240234375},\"elements\":[{\"id\":\"43108b53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Projects\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45328989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Project We Have Done\\n\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"f382082\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.49900000000000233058017329312860965728759765625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":40,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"55ecfb57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"67afcbfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.0330000000000012505552149377763271331787109375,\"_inline_size_tablet\":23,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4989aa04\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Projects\",\"align\":\"right\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"left\",\"hover_animation\":\"float\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"32515d84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"3f5753f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"21982cfb\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"72\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-pruning-and-shaping-bushes-.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Cutting Leaf\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"404dc561\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"58d29b54\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"73\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/backyard-garden.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Home Garden\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"3bff1dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"3c24185a\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"64\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Build Backyard\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_image_height_responsive_tablet\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b3cb58d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_image\":{\"id\":\"74\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-moving-aerial-photo-Z8KDGJ9.jpg\"},\"background_overlay_color\":\"#0000007D\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]}},\"elements\":[{\"id\":\"79705206\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"51c9a732\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73b2fe0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"What They Says About Us\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4876e632\",\"elType\":\"widget\",\"settings\":{\"sg_layout_testimonial_choose\":\"style-2\",\"sg_testimonials_image_size_imagesize_size\":\"medium\",\"sg_testimonials_list\":[{\"sg_testimonials_list_client_avatar\":{\"id\":\"75\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/3SUMAU.jpg\"},\"_id\":\"6e9b2e1\",\"sg_testimonials_list_client_name\":\"Regan Traynor\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"76\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/CASCKD8.jpg\"},\"sg_testimonials_list_client_name\":\"Maisha Dunn\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"d069a43\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"77\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/MKLVKTE.jpg\"},\"sg_testimonials_list_client_name\":\"Reis Leonard\",\"sg_testimonials_list_designation\":\"Businessman\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"05c24f5\"}],\"st_wrapper_alignment_responsive\":\"left\",\"st_client_name_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_description_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_client_name_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_client_designation_normal_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_client_designation_normal_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=d343bdf\",\"st_rating_color_responsive\":\"\",\"st_client_name_normal_color_responsive\":\"\",\"st_quote_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_layout_background_background_color\":\"\"},\"st_layout_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_layout_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_wrapper_fix_height\":\"\",\"sg_setting_autoplay\":\"yes\",\"sg_setting_autoplay_pause\":\"\",\"sg_setting_arrow\":\"\",\"sg_setting_arrow_position\":\"middle-edge\",\"sg_setting_dots\":\"\",\"sg_setting_quote\":\"yes\",\"sg_setting_rating\":\"\",\"st_layout_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_layout_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_slide_show_responsive\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"sg_setting_quote_icon\":{\"value\":\"jki jki-quote-light\",\"library\":\"jkiticon\"},\"sg_layout_image_position\":\"below\",\"st_layout_background_background_background\":\"classic\",\"st_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position\":\"\",\"st_quote_override_position_top_responsive\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"st_quote_override_position_left_responsive\":{\"unit\":\"px\",\"size\":442,\"sizes\":[]},\"st_client_name_normal_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_quote_normal_font_size_responsive\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"st_client_image_margin_responsive\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_rating_font_size_responsive\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"st_rating_margin_right_responsive\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_setting_slide_show_responsive_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"st_wrapper_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position_top_responsive_tablet\":{\"unit\":\"px\",\"size\":249,\"sizes\":[]},\"st_quote_override_position_top_responsive_mobile\":{\"unit\":\"px\",\"size\":193,\"sizes\":[]},\"st_quote_override_position_left_responsive_tablet\":{\"unit\":\"px\",\"size\":265,\"sizes\":[]},\"st_quote_override_position_left_responsive_mobile\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]},\"st_quote_normal_font_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"st_description_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_normal_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64afd05f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"746d276b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30338dfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f950be4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ca735b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5d6ca3ad\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_title_hover_color_responsive\":\"globals\\/colors?id=secondary\",\"st_readmore_hover_color_responsive\":\"globals\\/colors?id=secondary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#646974\",\"st_excerpt_color_responsive\":\"#646974\",\"st_title_normal_color_responsive\":\"#272B36\",\"st_thumbnail_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_title_hover_color_responsive\":\"#FA8D25\",\"st_readmore_normal_color_responsive\":\"#FA8D25\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":false}],\"isInner\":false}]'),(753,132,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(754,133,'_edit_lock','1721828612:1'),(755,134,'_edit_lock','1721828613:1'),(756,135,'_edit_lock','1721828624:1'),(759,138,'_wp_attached_file','2024/07/gardener-and-his-business-e1636043448304.jpg'),(760,138,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1282;s:4:\"file\";s:52:\"2024/07/gardener-and-his-business-e1636043448304.jpg\";s:8:\"filesize\";i:318741;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:52:\"gardener-and-his-business-e1636043448304-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19871;}s:5:\"large\";a:5:{s:4:\"file\";s:53:\"gardener-and-his-business-e1636043448304-1024x684.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:124473;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:52:\"gardener-and-his-business-e1636043448304-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8971;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:52:\"gardener-and-his-business-e1636043448304-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:82161;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:54:\"gardener-and-his-business-e1636043448304-1536x1026.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1026;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:223374;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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,139,'_wp_attached_file','2024/07/backyard-garden-e1636044880830.jpg'),(762,139,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:746;s:4:\"file\";s:42:\"2024/07/backyard-garden-e1636044880830.jpg\";s:8:\"filesize\";i:289086;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:42:\"backyard-garden-e1636044880830-300x187.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:187;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23293;}s:5:\"large\";a:5:{s:4:\"file\";s:43:\"backyard-garden-e1636044880830-1024x637.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:637;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:196531;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:42:\"backyard-garden-e1636044880830-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10009;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:42:\"backyard-garden-e1636044880830-768x477.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:477;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:121591;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(763,140,'_wp_attached_file','2024/07/111111111111111111.jpg'),(764,140,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1400;s:6:\"height\";i:963;s:4:\"file\";s:30:\"2024/07/111111111111111111.jpg\";s:8:\"filesize\";i:266088;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"111111111111111111-300x206.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22463;}s:5:\"large\";a:5:{s:4:\"file\";s:31:\"111111111111111111-1024x704.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:704;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:156635;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"111111111111111111-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9455;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:30:\"111111111111111111-768x528.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:528;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:100809;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(766,133,'_thumbnail_id','140'),(768,134,'_thumbnail_id','139'),(771,135,'_thumbnail_id','138'),(773,142,'_wp_attached_file','2024/07/lawn-services.jpg'),(774,142,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:370;s:6:\"height\";i:516;s:4:\"file\";s:25:\"2024/07/lawn-services.jpg\";s:8:\"filesize\";i:195419;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"lawn-services-215x300.jpg\";s:5:\"width\";i:215;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22162;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"lawn-services-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9141;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(775,143,'_wp_attached_file','2024/07/driveway-pressure-washing.jpg'),(776,143,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:370;s:6:\"height\";i:516;s:4:\"file\";s:37:\"2024/07/driveway-pressure-washing.jpg\";s:8:\"filesize\";i:174610;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:37:\"driveway-pressure-washing-215x300.jpg\";s:5:\"width\";i:215;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19344;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:37:\"driveway-pressure-washing-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8276;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(777,144,'_wp_attached_file','2024/07/deck-pressure-washing.jpg'),(778,144,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:370;s:6:\"height\";i:516;s:4:\"file\";s:33:\"2024/07/deck-pressure-washing.jpg\";s:8:\"filesize\";i:162678;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"deck-pressure-washing-215x300.jpg\";s:5:\"width\";i:215;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16681;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"deck-pressure-washing-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7555;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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,145,'_wp_attached_file','2024/07/weed-control.jpg'),(780,145,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:370;s:6:\"height\";i:516;s:4:\"file\";s:24:\"2024/07/weed-control.jpg\";s:8:\"filesize\";i:240095;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"weed-control-215x300.jpg\";s:5:\"width\";i:215;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19583;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"weed-control-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8765;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(781,146,'_wp_attached_file','2024/07/grass-feed.jpg'),(782,146,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:370;s:6:\"height\";i:516;s:4:\"file\";s:22:\"2024/07/grass-feed.jpg\";s:8:\"filesize\";i:178807;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"grass-feed-215x300.jpg\";s:5:\"width\";i:215;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18474;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"grass-feed-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8083;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(783,147,'_wp_attached_file','2024/07/edging-Cleaning.jpg'),(784,147,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:370;s:6:\"height\";i:516;s:4:\"file\";s:27:\"2024/07/edging-Cleaning.jpg\";s:8:\"filesize\";i:241416;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"edging-Cleaning-215x300.jpg\";s:5:\"width\";i:215;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24393;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"edging-Cleaning-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9268;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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,148,'_elementor_edit_mode','builder'),(786,148,'_elementor_template_type','wp-page'),(787,148,'_elementor_version','3.23.2'),(788,148,'_wp_page_template','default'),(789,148,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(790,148,'_elementor_data','[{\"id\":\"35495243\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"Eldery male gardener using scissors for bushes\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"160\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0,\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_size_tablet\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"top center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00160E\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b\":\"#00000054\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_slideshow_gallery\":[{\"id\":\"58\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-with-hedge-trimmer-e1635892441479.jpg\"},{\"id\":\"59\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/professional-gardener-at-work-XU82AHW.jpg\"},{\"id\":\"60\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-buying-new-plantsP4VGX5F.jpg\"},{\"id\":\"61\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/garden-decorative-trees-trimming-by-professional-gardener-e1635864777836.jpg\"}]},\"elements\":[{\"id\":\"739a26d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":65,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=06a34e7\"}},\"elements\":[{\"id\":\"132d1a8e\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Complete For All\",\"sg_title_focused\":\" Landscape \",\"sg_title_after\":\" Service And Maintenance\",\"sg_title_html_tag\":\"h1\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=primary\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"7c49583a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"635cb25b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"23cf340e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37.85499999999999687361196265555918216705322265625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":48,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"1c4c950d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4768b6f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":62.14500000000000312638803734444081783294677734375,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"flex-start\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":52,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"34c0badb\",\"elType\":\"widget\",\"settings\":{\"sg_video_button_title\":\"Play Video\",\"sg_video_button_icon\":{\"value\":\"jki jki-play\",\"library\":\"jkiticon\"},\"sg_video_url\":\"#\",\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_width_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_line_height_responsive\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#FFD402\",\"st_button_normal_glow_color_responsive\":\"#00694361\",\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"_element_width\":\"auto\",\"__globals__\":{\"st_button_normal_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=accent\",\"st_border_normal_border_border_color\":\"\",\"st_button_hover_text_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_glow_color_responsive\":\"\"},\"st_button_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_button_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_width_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_line_height_responsive_mobile\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"st_border_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_border_normal_border_border_color\":\"#FFD027\",\"st_button_line_height_responsive_tablet\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"st_button_normal_background_background_color\":\"#006943\",\"st_button_hover_text_color_responsive\":\"#006943\",\"st_button_hover_background_background_color\":\"#FFD402\",\"sg_video_auto_play\":\"\",\"sg_video_mute\":\"\"},\"elements\":[],\"widgetType\":\"jkit_video_button\"},{\"id\":\"232ec8da\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Intro\",\"align\":\"right\",\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"hide_mobile\":\"hidden-mobile\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#00160E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49b348ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"edc2dbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.00200000000000244426701101474463939666748046875,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e2246bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Greenco\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"139cc45f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Landscaping And Garden Care Services\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dc78e71\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"597dc67d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"26cf3840\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b19bda0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"62\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-and-his-flowers.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"980\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a46c929\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c4d8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Public Liability Insurance\",\"_id\":\"a978734\"},{\"text\":\"Environmentally Friendly\",\"_id\":\"1cd10a1\"},{\"text\":\"On Time, Every Time\",\"_id\":\"c6767db\"},{\"text\":\"Beautiful Garden Designs\",\"_id\":\"d4743f4\"},{\"text\":\"Modern Machinery And Tool\",\"_id\":\"535c17d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"398321ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4c7c15d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.9129999999999967030817060731351375579833984375,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5683e90d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"63\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-topiary-job.jpg\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"860\",\"height\":\"980\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b6190b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"64\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden.jpg\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"-59\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"250636f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"713aa588\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"51a71b71\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#00160E\",\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=primary\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=06a34e7\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"st_content_title_color_responsive\":\"#7F7F7F\",\"st_super_color_responsive\":\"#FFD402\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\",\"sg_setting_html_tag\":\"span\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5557874f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"73847855\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"65\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/garden-maintenance-performed-by-pro-gardener.jpg\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"b1058a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":224,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":478,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":325,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"69098afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"40\",\"bottom\":\"80\",\"left\":\"40\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"7cb7bf82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91cb5d9\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26358abf\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Have The Perfect Solution For Your Landscape Problems\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15a36cc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42c8d36c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7114454f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76f24ca8\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Variation Gardening\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"138cc39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28a78a06\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Expert Landscapers\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c5ac2bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38fdb183\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3ce0b95b\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Affordable Price\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-save-money-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4c80f133\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7451fb11\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Free Consultation\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-Consultancy-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e93f2c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"39a46e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6773b2a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"87647bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find The Best Service For Your Garden\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e2cc66e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30164d28\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e8639b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"66\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/men-watering-garden-plants.jpg\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fa92c14\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2c434fb3\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"5abe2e18\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33425b9f\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Lawn Services\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"472ed309\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"67cb221c\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37c1cce6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"67\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-finishing-garden.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b3e60ba\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3b291bbf\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"20b91942\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5649f719\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Driveway Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6300b69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"256ddf68\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3735f0b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"58\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-with-hedge-trimmer-e1635892441479.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"741128a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3691562\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3c8a0e6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5eb1b3b9\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Deck Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"25f37292\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"61c9ff8e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d41e618\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"8781ee3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"66\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/men-watering-garden-plants.jpg\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd84c7d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"14f7965\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fb2459e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0582197\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Weed Control \",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"f7b0fa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0197d9e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f3de9c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"67\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-finishing-garden.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"75ba950\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"23edbf4\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"ad70b3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1c4ac7\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Grass Feed\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6f592ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0043a3b\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e6d8a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"58\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-with-hedge-trimmer-e1635892441479.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd233da\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6535a16\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"937e2e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7aee\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Edging Cleaning\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"d9723d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"c908972\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"790dd775\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"360\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"160\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"140\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"background_overlay_color_b\":\"#000414\",\"background_overlay_image\":{\"id\":\"69\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/a-gardener-watering-plants-in-a-flowerbed-2RT8DWL.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]}},\"elements\":[{\"id\":\"a2ed5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7e37f762\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Landscaping\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a092069\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d5099\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need Someone To Take Care Your Garden & Lawn?\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=07ee36d\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1198756c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"66521a56\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":20,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":4},\"elements\":[{\"id\":\"1a89d099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.5090000000000003410605131648480892181396484375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"id\":\"70\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/happy-gardeners-with-plants-and-lawn-mower.jpg\"},\"background_position\":\"initial\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"space-between\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_color\":\"#FFFFFF00\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":9,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"46b821c1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":219,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":183,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"449971a9\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Make Appointment & Take Care Your Garden\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=secondary\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=93191b3\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_content_title_color_hover_responsive\":\"#FFFFFF\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#FFFFFF\",\"st_icon_color_responsive\":\"#00E5CC\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#00E5CC\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":false},{\"id\":\"13747b6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.4909999999999996589394868351519107818603515625,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a13f42e\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"260***1635696832144\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fde8487\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"59883b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1617542a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Process\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29c7aa96\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Complete Every Step Carefully\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ced0d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d62463d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18cf7834\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"41f79872\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-consult-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consultation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65e1b761\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"span\",\"title_color\":\"#FFD402\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#006943\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12cdbf13\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4175d29\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-pencil_art-light\",\"library\":\"jkiticon\"},\"title_text\":\"Design Installation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2adabf01\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b628\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"569b3221\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consturction \",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"67d6b2e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6fff79c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53c9a76e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"title_text\":\"Finished Work\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"555aace0\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d57540b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"71\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardening-background-with-garden-tolls-A9BGNJU.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]}},\"elements\":[{\"id\":\"147831a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"5a53d120\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"20\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Years of Experience\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"488f4727\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"6b8f6eae\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"76666759\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f532f9e\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"2850\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Happy Customers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"265fd738\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5473dc22\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"64\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Expert Landscapers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b38731e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4945f2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"627cd42c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65e3182\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.56499999999999772626324556767940521240234375},\"elements\":[{\"id\":\"43108b53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Projects\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45328989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Project We Have Done\\n\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"f382082\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.49900000000000233058017329312860965728759765625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":40,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"55ecfb57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"67afcbfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.0330000000000012505552149377763271331787109375,\"_inline_size_tablet\":23,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4989aa04\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Projects\",\"align\":\"right\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"left\",\"hover_animation\":\"float\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"32515d84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"3f5753f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"21982cfb\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"72\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-pruning-and-shaping-bushes-.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Cutting Leaf\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"404dc561\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"58d29b54\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"73\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/backyard-garden.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Home Garden\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"3bff1dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"3c24185a\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"64\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Build Backyard\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_image_height_responsive_tablet\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b3cb58d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_image\":{\"id\":\"74\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-moving-aerial-photo-Z8KDGJ9.jpg\"},\"background_overlay_color\":\"#0000007D\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]}},\"elements\":[{\"id\":\"79705206\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"51c9a732\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73b2fe0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"What They Says About Us\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4876e632\",\"elType\":\"widget\",\"settings\":{\"sg_layout_testimonial_choose\":\"style-2\",\"sg_testimonials_image_size_imagesize_size\":\"medium\",\"sg_testimonials_list\":[{\"sg_testimonials_list_client_avatar\":{\"id\":\"75\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/3SUMAU.jpg\"},\"_id\":\"6e9b2e1\",\"sg_testimonials_list_client_name\":\"Regan Traynor\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"76\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/CASCKD8.jpg\"},\"sg_testimonials_list_client_name\":\"Maisha Dunn\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"d069a43\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"77\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/MKLVKTE.jpg\"},\"sg_testimonials_list_client_name\":\"Reis Leonard\",\"sg_testimonials_list_designation\":\"Businessman\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"05c24f5\"}],\"st_wrapper_alignment_responsive\":\"left\",\"st_client_name_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_description_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_client_name_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_client_designation_normal_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_client_designation_normal_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=d343bdf\",\"st_rating_color_responsive\":\"\",\"st_client_name_normal_color_responsive\":\"\",\"st_quote_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_layout_background_background_color\":\"\"},\"st_layout_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_layout_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_wrapper_fix_height\":\"\",\"sg_setting_autoplay\":\"yes\",\"sg_setting_autoplay_pause\":\"\",\"sg_setting_arrow\":\"\",\"sg_setting_arrow_position\":\"middle-edge\",\"sg_setting_dots\":\"\",\"sg_setting_quote\":\"yes\",\"sg_setting_rating\":\"\",\"st_layout_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_layout_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_slide_show_responsive\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"sg_setting_quote_icon\":{\"value\":\"jki jki-quote-light\",\"library\":\"jkiticon\"},\"sg_layout_image_position\":\"below\",\"st_layout_background_background_background\":\"classic\",\"st_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position\":\"\",\"st_quote_override_position_top_responsive\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"st_quote_override_position_left_responsive\":{\"unit\":\"px\",\"size\":442,\"sizes\":[]},\"st_client_name_normal_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_quote_normal_font_size_responsive\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"st_client_image_margin_responsive\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_rating_font_size_responsive\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"st_rating_margin_right_responsive\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_setting_slide_show_responsive_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"st_wrapper_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position_top_responsive_tablet\":{\"unit\":\"px\",\"size\":249,\"sizes\":[]},\"st_quote_override_position_top_responsive_mobile\":{\"unit\":\"px\",\"size\":193,\"sizes\":[]},\"st_quote_override_position_left_responsive_tablet\":{\"unit\":\"px\",\"size\":265,\"sizes\":[]},\"st_quote_override_position_left_responsive_mobile\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]},\"st_quote_normal_font_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"st_description_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_normal_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64afd05f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"746d276b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30338dfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f950be4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ca735b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5d6ca3ad\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_title_hover_color_responsive\":\"globals\\/colors?id=secondary\",\"st_readmore_hover_color_responsive\":\"globals\\/colors?id=secondary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#646974\",\"st_excerpt_color_responsive\":\"#646974\",\"st_title_normal_color_responsive\":\"#272B36\",\"st_thumbnail_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_title_hover_color_responsive\":\"#FA8D25\",\"st_readmore_normal_color_responsive\":\"#FA8D25\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":false}],\"isInner\":false}]'),(791,148,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(792,148,'_elementor_css','a:6:{s:4:\"time\";i:1721826543;s:5:\"fonts\";a:1:{i:0;s:5:\"Inter\";}s:5:\"icons\";a:3:{i:0;s:0:\"\";i:1;s:8:\"jkiticon\";i:3;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(793,149,'_elementor_edit_mode','builder'),(794,149,'_elementor_template_type','wp-page'),(795,149,'_elementor_version','3.23.2'),(796,149,'_wp_page_template','default'),(797,149,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'); INSERT INTO `victorq_postmeta` VALUES (798,149,'_elementor_data','[{\"id\":\"35495243\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"Eldery male gardener using scissors for bushes\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"160\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0,\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_size_tablet\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"top center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00160E\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b\":\"#00000054\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_slideshow_gallery\":[{\"id\":\"58\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-with-hedge-trimmer-e1635892441479.jpg\"},{\"id\":\"59\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/professional-gardener-at-work-XU82AHW.jpg\"},{\"id\":\"60\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-buying-new-plantsP4VGX5F.jpg\"},{\"id\":\"61\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/garden-decorative-trees-trimming-by-professional-gardener-e1635864777836.jpg\"}]},\"elements\":[{\"id\":\"739a26d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":65,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=06a34e7\"}},\"elements\":[{\"id\":\"132d1a8e\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Complete For All\",\"sg_title_focused\":\" Landscape \",\"sg_title_after\":\" Service And Maintenance\",\"sg_title_html_tag\":\"h1\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=primary\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"7c49583a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"635cb25b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"23cf340e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37.85499999999999687361196265555918216705322265625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":48,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"1c4c950d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4768b6f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":62.14500000000000312638803734444081783294677734375,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"flex-start\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":52,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"34c0badb\",\"elType\":\"widget\",\"settings\":{\"sg_video_button_title\":\"Play Video\",\"sg_video_button_icon\":{\"value\":\"jki jki-play\",\"library\":\"jkiticon\"},\"sg_video_url\":\"#\",\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_width_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_line_height_responsive\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#FFD402\",\"st_button_normal_glow_color_responsive\":\"#00694361\",\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"_element_width\":\"auto\",\"__globals__\":{\"st_button_normal_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=accent\",\"st_border_normal_border_border_color\":\"\",\"st_button_hover_text_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_glow_color_responsive\":\"\"},\"st_button_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_button_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_width_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_line_height_responsive_mobile\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"st_border_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_border_normal_border_border_color\":\"#FFD027\",\"st_button_line_height_responsive_tablet\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"st_button_normal_background_background_color\":\"#006943\",\"st_button_hover_text_color_responsive\":\"#006943\",\"st_button_hover_background_background_color\":\"#FFD402\",\"sg_video_auto_play\":\"\",\"sg_video_mute\":\"\"},\"elements\":[],\"widgetType\":\"jkit_video_button\"},{\"id\":\"232ec8da\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Intro\",\"align\":\"right\",\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"hide_mobile\":\"hidden-mobile\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#00160E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49b348ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"edc2dbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.00200000000000244426701101474463939666748046875,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e2246bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Greenco\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"139cc45f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Landscaping And Garden Care Services\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dc78e71\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"597dc67d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"26cf3840\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b19bda0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"62\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-and-his-flowers.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"980\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a46c929\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c4d8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Public Liability Insurance\",\"_id\":\"a978734\"},{\"text\":\"Environmentally Friendly\",\"_id\":\"1cd10a1\"},{\"text\":\"On Time, Every Time\",\"_id\":\"c6767db\"},{\"text\":\"Beautiful Garden Designs\",\"_id\":\"d4743f4\"},{\"text\":\"Modern Machinery And Tool\",\"_id\":\"535c17d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"398321ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4c7c15d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.9129999999999967030817060731351375579833984375,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5683e90d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"63\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-topiary-job.jpg\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"860\",\"height\":\"980\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b6190b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"64\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden.jpg\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"-59\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"250636f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"713aa588\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"51a71b71\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#00160E\",\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=primary\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=06a34e7\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"st_content_title_color_responsive\":\"#7F7F7F\",\"st_super_color_responsive\":\"#FFD402\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\",\"sg_setting_html_tag\":\"span\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5557874f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"73847855\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"65\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/garden-maintenance-performed-by-pro-gardener.jpg\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"b1058a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":224,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":478,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":325,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"69098afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"40\",\"bottom\":\"80\",\"left\":\"40\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"7cb7bf82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91cb5d9\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26358abf\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Have The Perfect Solution For Your Landscape Problems\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15a36cc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42c8d36c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7114454f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76f24ca8\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Variation Gardening\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"138cc39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28a78a06\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Expert Landscapers\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c5ac2bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38fdb183\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3ce0b95b\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Affordable Price\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-save-money-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4c80f133\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7451fb11\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Free Consultation\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-Consultancy-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e93f2c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"39a46e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6773b2a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"87647bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find The Best Service For Your Garden\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e2cc66e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30164d28\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e8639b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"66\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/men-watering-garden-plants.jpg\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fa92c14\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2c434fb3\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"5abe2e18\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33425b9f\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Lawn Services\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"472ed309\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"67cb221c\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37c1cce6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"67\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-finishing-garden.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b3e60ba\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3b291bbf\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"20b91942\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5649f719\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Driveway Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6300b69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"256ddf68\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3735f0b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"58\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-with-hedge-trimmer-e1635892441479.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"741128a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3691562\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3c8a0e6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5eb1b3b9\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Deck Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"25f37292\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"61c9ff8e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d41e618\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"8781ee3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"66\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/men-watering-garden-plants.jpg\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd84c7d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"14f7965\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fb2459e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0582197\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Weed Control \",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"f7b0fa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0197d9e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f3de9c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"67\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-finishing-garden.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"75ba950\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"23edbf4\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"ad70b3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1c4ac7\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Grass Feed\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6f592ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0043a3b\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e6d8a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"58\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-with-hedge-trimmer-e1635892441479.jpg\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd233da\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6535a16\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"937e2e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7aee\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Edging Cleaning\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"d9723d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"c908972\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"790dd775\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"360\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"160\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"140\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"background_overlay_color_b\":\"#000414\",\"background_overlay_image\":{\"id\":\"69\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/a-gardener-watering-plants-in-a-flowerbed-2RT8DWL.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]}},\"elements\":[{\"id\":\"a2ed5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7e37f762\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Landscaping\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a092069\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d5099\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need Someone To Take Care Your Garden & Lawn?\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=07ee36d\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1198756c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"66521a56\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":20,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":4},\"elements\":[{\"id\":\"1a89d099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.5090000000000003410605131648480892181396484375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"id\":\"70\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/happy-gardeners-with-plants-and-lawn-mower.jpg\"},\"background_position\":\"initial\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"space-between\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_color\":\"#FFFFFF00\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":9,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"46b821c1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":219,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":183,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"449971a9\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Make Appointment & Take Care Your Garden\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=secondary\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=93191b3\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_content_title_color_hover_responsive\":\"#FFFFFF\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#FFFFFF\",\"st_icon_color_responsive\":\"#00E5CC\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#00E5CC\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":false},{\"id\":\"13747b6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.4909999999999996589394868351519107818603515625,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a13f42e\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"260***1635696832144\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fde8487\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"59883b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1617542a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Process\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29c7aa96\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Complete Every Step Carefully\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ced0d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d62463d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18cf7834\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"41f79872\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-consult-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consultation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65e1b761\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"span\",\"title_color\":\"#FFD402\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#006943\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12cdbf13\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4175d29\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-pencil_art-light\",\"library\":\"jkiticon\"},\"title_text\":\"Design Installation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2adabf01\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b628\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"569b3221\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consturction \",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"67d6b2e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6fff79c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53c9a76e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"title_text\":\"Finished Work\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"555aace0\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d57540b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"71\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardening-background-with-garden-tolls-A9BGNJU.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]}},\"elements\":[{\"id\":\"147831a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"5a53d120\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"20\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Years of Experience\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"488f4727\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"6b8f6eae\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"76666759\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f532f9e\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"2850\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Happy Customers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"265fd738\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5473dc22\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"64\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Expert Landscapers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b38731e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4945f2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"627cd42c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65e3182\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.56499999999999772626324556767940521240234375},\"elements\":[{\"id\":\"43108b53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Projects\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45328989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Project We Have Done\\n\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"f382082\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.49900000000000233058017329312860965728759765625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":40,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"55ecfb57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"67afcbfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.0330000000000012505552149377763271331787109375,\"_inline_size_tablet\":23,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4989aa04\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Projects\",\"align\":\"right\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"left\",\"hover_animation\":\"float\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"32515d84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"3f5753f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"21982cfb\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"72\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-pruning-and-shaping-bushes-.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Cutting Leaf\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"404dc561\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"58d29b54\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"73\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/backyard-garden.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Home Garden\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"3bff1dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"3c24185a\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"64\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Build Backyard\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_image_height_responsive_tablet\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b3cb58d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_image\":{\"id\":\"74\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-moving-aerial-photo-Z8KDGJ9.jpg\"},\"background_overlay_color\":\"#0000007D\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]}},\"elements\":[{\"id\":\"79705206\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"51c9a732\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73b2fe0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"What They Says About Us\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4876e632\",\"elType\":\"widget\",\"settings\":{\"sg_layout_testimonial_choose\":\"style-2\",\"sg_testimonials_image_size_imagesize_size\":\"medium\",\"sg_testimonials_list\":[{\"sg_testimonials_list_client_avatar\":{\"id\":\"75\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/3SUMAU.jpg\"},\"_id\":\"6e9b2e1\",\"sg_testimonials_list_client_name\":\"Regan Traynor\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"76\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/CASCKD8.jpg\"},\"sg_testimonials_list_client_name\":\"Maisha Dunn\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"d069a43\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"77\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/MKLVKTE.jpg\"},\"sg_testimonials_list_client_name\":\"Reis Leonard\",\"sg_testimonials_list_designation\":\"Businessman\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"05c24f5\"}],\"st_wrapper_alignment_responsive\":\"left\",\"st_client_name_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_description_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_client_name_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_client_designation_normal_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_client_designation_normal_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=d343bdf\",\"st_rating_color_responsive\":\"\",\"st_client_name_normal_color_responsive\":\"\",\"st_quote_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_layout_background_background_color\":\"\"},\"st_layout_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_layout_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_wrapper_fix_height\":\"\",\"sg_setting_autoplay\":\"yes\",\"sg_setting_autoplay_pause\":\"\",\"sg_setting_arrow\":\"\",\"sg_setting_arrow_position\":\"middle-edge\",\"sg_setting_dots\":\"\",\"sg_setting_quote\":\"yes\",\"sg_setting_rating\":\"\",\"st_layout_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_layout_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_slide_show_responsive\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"sg_setting_quote_icon\":{\"value\":\"jki jki-quote-light\",\"library\":\"jkiticon\"},\"sg_layout_image_position\":\"below\",\"st_layout_background_background_background\":\"classic\",\"st_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position\":\"\",\"st_quote_override_position_top_responsive\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"st_quote_override_position_left_responsive\":{\"unit\":\"px\",\"size\":442,\"sizes\":[]},\"st_client_name_normal_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_quote_normal_font_size_responsive\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"st_client_image_margin_responsive\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_rating_font_size_responsive\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"st_rating_margin_right_responsive\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_setting_slide_show_responsive_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"st_wrapper_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position_top_responsive_tablet\":{\"unit\":\"px\",\"size\":249,\"sizes\":[]},\"st_quote_override_position_top_responsive_mobile\":{\"unit\":\"px\",\"size\":193,\"sizes\":[]},\"st_quote_override_position_left_responsive_tablet\":{\"unit\":\"px\",\"size\":265,\"sizes\":[]},\"st_quote_override_position_left_responsive_mobile\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]},\"st_quote_normal_font_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"st_description_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_normal_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64afd05f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"746d276b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30338dfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f950be4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ca735b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5d6ca3ad\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_title_hover_color_responsive\":\"globals\\/colors?id=secondary\",\"st_readmore_hover_color_responsive\":\"globals\\/colors?id=secondary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#646974\",\"st_excerpt_color_responsive\":\"#646974\",\"st_title_normal_color_responsive\":\"#272B36\",\"st_thumbnail_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_title_hover_color_responsive\":\"#FA8D25\",\"st_readmore_normal_color_responsive\":\"#FA8D25\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":false}],\"isInner\":false}]'),(799,149,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(800,149,'_elementor_css','a:6:{s:4:\"time\";i:1721826543;s:5:\"fonts\";a:1:{i:0;s:5:\"Inter\";}s:5:\"icons\";a:3:{i:0;s:0:\"\";i:1;s:8:\"jkiticon\";i:3;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(801,150,'_elementor_edit_mode','builder'),(802,150,'_elementor_template_type','wp-page'),(803,150,'_elementor_version','3.23.2'),(804,150,'_wp_page_template','default'),(805,150,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(806,150,'_elementor_data','[{\"id\":\"35495243\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"Eldery male gardener using scissors for bushes\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"160\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0,\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_size_tablet\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"top center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00160E\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b\":\"#00000054\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_slideshow_gallery\":[{\"id\":\"58\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-with-hedge-trimmer-e1635892441479.jpg\"},{\"id\":\"59\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/professional-gardener-at-work-XU82AHW.jpg\"},{\"id\":\"60\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-buying-new-plantsP4VGX5F.jpg\"},{\"id\":\"61\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/garden-decorative-trees-trimming-by-professional-gardener-e1635864777836.jpg\"}]},\"elements\":[{\"id\":\"739a26d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":65,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=06a34e7\"}},\"elements\":[{\"id\":\"132d1a8e\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Complete For All\",\"sg_title_focused\":\" Landscape \",\"sg_title_after\":\" Service And Maintenance\",\"sg_title_html_tag\":\"h1\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=primary\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"7c49583a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"635cb25b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"23cf340e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37.85499999999999687361196265555918216705322265625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":48,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"1c4c950d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4768b6f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":62.14500000000000312638803734444081783294677734375,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"flex-start\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":52,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"34c0badb\",\"elType\":\"widget\",\"settings\":{\"sg_video_button_title\":\"Play Video\",\"sg_video_button_icon\":{\"value\":\"jki jki-play\",\"library\":\"jkiticon\"},\"sg_video_url\":\"#\",\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_width_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_line_height_responsive\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#FFD402\",\"st_button_normal_glow_color_responsive\":\"#00694361\",\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"_element_width\":\"auto\",\"__globals__\":{\"st_button_normal_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=accent\",\"st_border_normal_border_border_color\":\"\",\"st_button_hover_text_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_glow_color_responsive\":\"\"},\"st_button_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_button_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_width_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_line_height_responsive_mobile\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"st_border_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_border_normal_border_border_color\":\"#FFD027\",\"st_button_line_height_responsive_tablet\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"st_button_normal_background_background_color\":\"#006943\",\"st_button_hover_text_color_responsive\":\"#006943\",\"st_button_hover_background_background_color\":\"#FFD402\",\"sg_video_auto_play\":\"\",\"sg_video_mute\":\"\"},\"elements\":[],\"widgetType\":\"jkit_video_button\"},{\"id\":\"232ec8da\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Intro\",\"align\":\"right\",\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"hide_mobile\":\"hidden-mobile\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#00160E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49b348ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"edc2dbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.00200000000000244426701101474463939666748046875,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e2246bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Greenco\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"139cc45f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Landscaping And Garden Care Services\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dc78e71\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"597dc67d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"26cf3840\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b19bda0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"62\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-and-his-flowers.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"980\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a46c929\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c4d8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Public Liability Insurance\",\"_id\":\"a978734\"},{\"text\":\"Environmentally Friendly\",\"_id\":\"1cd10a1\"},{\"text\":\"On Time, Every Time\",\"_id\":\"c6767db\"},{\"text\":\"Beautiful Garden Designs\",\"_id\":\"d4743f4\"},{\"text\":\"Modern Machinery And Tool\",\"_id\":\"535c17d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"398321ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4c7c15d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.9129999999999967030817060731351375579833984375,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5683e90d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"63\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-topiary-job.jpg\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"860\",\"height\":\"980\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b6190b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"64\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden.jpg\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"-59\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"250636f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"713aa588\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"51a71b71\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#00160E\",\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=primary\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=06a34e7\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"st_content_title_color_responsive\":\"#7F7F7F\",\"st_super_color_responsive\":\"#FFD402\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\",\"sg_setting_html_tag\":\"span\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5557874f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"73847855\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"65\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/garden-maintenance-performed-by-pro-gardener.jpg\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"b1058a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":224,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":478,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":325,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"69098afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"40\",\"bottom\":\"80\",\"left\":\"40\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"7cb7bf82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91cb5d9\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26358abf\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Have The Perfect Solution For Your Landscape Problems\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15a36cc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42c8d36c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7114454f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76f24ca8\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Variation Gardening\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"138cc39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28a78a06\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Expert Landscapers\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c5ac2bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38fdb183\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3ce0b95b\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Affordable Price\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-save-money-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4c80f133\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7451fb11\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Free Consultation\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-Consultancy-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e93f2c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"39a46e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6773b2a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"87647bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find The Best Service For Your Garden\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e2cc66e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30164d28\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e8639b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":142,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-services.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fa92c14\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2c434fb3\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"5abe2e18\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33425b9f\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Lawn Services\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"472ed309\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"67cb221c\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37c1cce6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":143,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/driveway-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b3e60ba\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3b291bbf\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"20b91942\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5649f719\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Driveway Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6300b69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"256ddf68\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3735f0b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":144,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/deck-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"741128a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3691562\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3c8a0e6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5eb1b3b9\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Deck Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"25f37292\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"61c9ff8e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d41e618\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"8781ee3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":145,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/weed-control.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd84c7d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"14f7965\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fb2459e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0582197\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Weed Control \",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"f7b0fa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0197d9e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f3de9c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":146,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/grass-feed.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"75ba950\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"23edbf4\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"ad70b3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1c4ac7\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Grass Feed\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6f592ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0043a3b\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e6d8a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":147,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/edging-Cleaning.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd233da\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6535a16\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"937e2e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7aee\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Edging Cleaning\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"d9723d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"c908972\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"790dd775\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"360\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"160\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"140\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"background_overlay_color_b\":\"#000414\",\"background_overlay_image\":{\"id\":\"69\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/a-gardener-watering-plants-in-a-flowerbed-2RT8DWL.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]}},\"elements\":[{\"id\":\"a2ed5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7e37f762\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Landscaping\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a092069\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d5099\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need Someone To Take Care Your Garden & Lawn?\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=07ee36d\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1198756c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"66521a56\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":20,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":4},\"elements\":[{\"id\":\"1a89d099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.5090000000000003410605131648480892181396484375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"id\":\"70\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/happy-gardeners-with-plants-and-lawn-mower.jpg\"},\"background_position\":\"initial\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"space-between\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_color\":\"#FFFFFF00\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":9,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"46b821c1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":219,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":183,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"449971a9\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Make Appointment & Take Care Your Garden\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=secondary\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=93191b3\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_content_title_color_hover_responsive\":\"#FFFFFF\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#FFFFFF\",\"st_icon_color_responsive\":\"#00E5CC\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#00E5CC\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":false},{\"id\":\"13747b6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.4909999999999996589394868351519107818603515625,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a13f42e\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"260***1635696832144\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fde8487\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"59883b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1617542a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Process\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29c7aa96\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Complete Every Step Carefully\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ced0d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d62463d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18cf7834\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"41f79872\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-consult-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consultation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65e1b761\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"span\",\"title_color\":\"#FFD402\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#006943\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12cdbf13\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4175d29\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-pencil_art-light\",\"library\":\"jkiticon\"},\"title_text\":\"Design Installation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2adabf01\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b628\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"569b3221\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consturction \",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"67d6b2e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6fff79c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53c9a76e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"title_text\":\"Finished Work\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"555aace0\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d57540b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"71\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardening-background-with-garden-tolls-A9BGNJU.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]}},\"elements\":[{\"id\":\"147831a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"5a53d120\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"20\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Years of Experience\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"488f4727\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"6b8f6eae\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"76666759\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f532f9e\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"2850\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Happy Customers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"265fd738\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5473dc22\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"64\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Expert Landscapers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b38731e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4945f2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"627cd42c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65e3182\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.56499999999999772626324556767940521240234375},\"elements\":[{\"id\":\"43108b53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Projects\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45328989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Project We Have Done\\n\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"f382082\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.49900000000000233058017329312860965728759765625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":40,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"55ecfb57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"67afcbfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.0330000000000012505552149377763271331787109375,\"_inline_size_tablet\":23,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4989aa04\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Projects\",\"align\":\"right\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"left\",\"hover_animation\":\"float\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"32515d84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"3f5753f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"21982cfb\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"72\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-pruning-and-shaping-bushes-.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Cutting Leaf\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"404dc561\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"58d29b54\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"73\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/backyard-garden.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Home Garden\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"3bff1dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"3c24185a\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"64\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Build Backyard\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_image_height_responsive_tablet\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b3cb58d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_image\":{\"id\":\"74\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-moving-aerial-photo-Z8KDGJ9.jpg\"},\"background_overlay_color\":\"#0000007D\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]}},\"elements\":[{\"id\":\"79705206\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"51c9a732\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73b2fe0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"What They Says About Us\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4876e632\",\"elType\":\"widget\",\"settings\":{\"sg_layout_testimonial_choose\":\"style-2\",\"sg_testimonials_image_size_imagesize_size\":\"medium\",\"sg_testimonials_list\":[{\"sg_testimonials_list_client_avatar\":{\"id\":\"75\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/3SUMAU.jpg\"},\"_id\":\"6e9b2e1\",\"sg_testimonials_list_client_name\":\"Regan Traynor\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"76\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/CASCKD8.jpg\"},\"sg_testimonials_list_client_name\":\"Maisha Dunn\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"d069a43\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"77\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/MKLVKTE.jpg\"},\"sg_testimonials_list_client_name\":\"Reis Leonard\",\"sg_testimonials_list_designation\":\"Businessman\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"05c24f5\"}],\"st_wrapper_alignment_responsive\":\"left\",\"st_client_name_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_description_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_client_name_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_client_designation_normal_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_client_designation_normal_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=d343bdf\",\"st_rating_color_responsive\":\"\",\"st_client_name_normal_color_responsive\":\"\",\"st_quote_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_layout_background_background_color\":\"\"},\"st_layout_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_layout_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_wrapper_fix_height\":\"\",\"sg_setting_autoplay\":\"yes\",\"sg_setting_autoplay_pause\":\"\",\"sg_setting_arrow\":\"\",\"sg_setting_arrow_position\":\"middle-edge\",\"sg_setting_dots\":\"\",\"sg_setting_quote\":\"yes\",\"sg_setting_rating\":\"\",\"st_layout_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_layout_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_slide_show_responsive\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"sg_setting_quote_icon\":{\"value\":\"jki jki-quote-light\",\"library\":\"jkiticon\"},\"sg_layout_image_position\":\"below\",\"st_layout_background_background_background\":\"classic\",\"st_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position\":\"\",\"st_quote_override_position_top_responsive\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"st_quote_override_position_left_responsive\":{\"unit\":\"px\",\"size\":442,\"sizes\":[]},\"st_client_name_normal_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_quote_normal_font_size_responsive\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"st_client_image_margin_responsive\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_rating_font_size_responsive\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"st_rating_margin_right_responsive\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_setting_slide_show_responsive_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"st_wrapper_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position_top_responsive_tablet\":{\"unit\":\"px\",\"size\":249,\"sizes\":[]},\"st_quote_override_position_top_responsive_mobile\":{\"unit\":\"px\",\"size\":193,\"sizes\":[]},\"st_quote_override_position_left_responsive_tablet\":{\"unit\":\"px\",\"size\":265,\"sizes\":[]},\"st_quote_override_position_left_responsive_mobile\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]},\"st_quote_normal_font_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"st_description_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_normal_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64afd05f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"746d276b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30338dfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f950be4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ca735b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5d6ca3ad\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_title_hover_color_responsive\":\"globals\\/colors?id=secondary\",\"st_readmore_hover_color_responsive\":\"globals\\/colors?id=secondary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#646974\",\"st_excerpt_color_responsive\":\"#646974\",\"st_title_normal_color_responsive\":\"#272B36\",\"st_thumbnail_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_title_hover_color_responsive\":\"#FA8D25\",\"st_readmore_normal_color_responsive\":\"#FA8D25\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":false}],\"isInner\":false}]'),(807,150,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(808,150,'_elementor_css','a:6:{s:4:\"time\";i:1721826543;s:5:\"fonts\";a:1:{i:0;s:5:\"Inter\";}s:5:\"icons\";a:3:{i:0;s:0:\"\";i:1;s:8:\"jkiticon\";i:3;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(809,151,'_elementor_edit_mode','builder'),(810,151,'_elementor_template_type','wp-page'),(811,151,'_elementor_version','3.23.2'),(812,151,'_wp_page_template','default'),(813,151,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(814,151,'_elementor_data','[{\"id\":\"35495243\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"Eldery male gardener using scissors for bushes\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"160\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0,\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_size_tablet\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"top center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00160E\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b\":\"#00000054\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_slideshow_gallery\":[{\"id\":\"58\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-with-hedge-trimmer-e1635892441479.jpg\"},{\"id\":\"59\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/professional-gardener-at-work-XU82AHW.jpg\"},{\"id\":\"60\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-buying-new-plantsP4VGX5F.jpg\"},{\"id\":\"61\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/garden-decorative-trees-trimming-by-professional-gardener-e1635864777836.jpg\"}]},\"elements\":[{\"id\":\"739a26d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":65,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=06a34e7\"}},\"elements\":[{\"id\":\"132d1a8e\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Complete For All\",\"sg_title_focused\":\" Landscape \",\"sg_title_after\":\" Service And Maintenance\",\"sg_title_html_tag\":\"h1\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=primary\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"7c49583a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"635cb25b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"23cf340e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37.85499999999999687361196265555918216705322265625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":48,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"1c4c950d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4768b6f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":62.14500000000000312638803734444081783294677734375,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"flex-start\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":52,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"34c0badb\",\"elType\":\"widget\",\"settings\":{\"sg_video_button_title\":\"Play Video\",\"sg_video_button_icon\":{\"value\":\"jki jki-play\",\"library\":\"jkiticon\"},\"sg_video_url\":\"#\",\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_width_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_line_height_responsive\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#FFD402\",\"st_button_normal_glow_color_responsive\":\"#00694361\",\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"_element_width\":\"auto\",\"__globals__\":{\"st_button_normal_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=accent\",\"st_border_normal_border_border_color\":\"\",\"st_button_hover_text_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_glow_color_responsive\":\"\"},\"st_button_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_button_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_width_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_line_height_responsive_mobile\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"st_border_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_border_normal_border_border_color\":\"#FFD027\",\"st_button_line_height_responsive_tablet\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"st_button_normal_background_background_color\":\"#006943\",\"st_button_hover_text_color_responsive\":\"#006943\",\"st_button_hover_background_background_color\":\"#FFD402\",\"sg_video_auto_play\":\"\",\"sg_video_mute\":\"\"},\"elements\":[],\"widgetType\":\"jkit_video_button\"},{\"id\":\"232ec8da\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Intro\",\"align\":\"right\",\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"hide_mobile\":\"hidden-mobile\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#00160E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49b348ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"edc2dbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.00200000000000244426701101474463939666748046875,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e2246bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Greenco\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"139cc45f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Landscaping And Garden Care Services\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dc78e71\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"597dc67d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"26cf3840\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b19bda0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"62\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-and-his-flowers.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"980\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a46c929\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c4d8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Public Liability Insurance\",\"_id\":\"a978734\"},{\"text\":\"Environmentally Friendly\",\"_id\":\"1cd10a1\"},{\"text\":\"On Time, Every Time\",\"_id\":\"c6767db\"},{\"text\":\"Beautiful Garden Designs\",\"_id\":\"d4743f4\"},{\"text\":\"Modern Machinery And Tool\",\"_id\":\"535c17d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"398321ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4c7c15d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.9129999999999967030817060731351375579833984375,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5683e90d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"63\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-topiary-job.jpg\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"860\",\"height\":\"980\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b6190b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"64\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden.jpg\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"-59\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"250636f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"713aa588\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"51a71b71\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#00160E\",\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=primary\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=06a34e7\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"st_content_title_color_responsive\":\"#7F7F7F\",\"st_super_color_responsive\":\"#FFD402\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\",\"sg_setting_html_tag\":\"span\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5557874f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"73847855\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"65\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/garden-maintenance-performed-by-pro-gardener.jpg\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"b1058a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":224,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":478,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":325,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"69098afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"40\",\"bottom\":\"80\",\"left\":\"40\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"7cb7bf82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91cb5d9\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26358abf\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Have The Perfect Solution For Your Landscape Problems\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15a36cc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42c8d36c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7114454f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76f24ca8\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Variation Gardening\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"138cc39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28a78a06\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Expert Landscapers\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c5ac2bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38fdb183\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3ce0b95b\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Affordable Price\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-save-money-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4c80f133\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7451fb11\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Free Consultation\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-Consultancy-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e93f2c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"39a46e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6773b2a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"87647bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find The Best Service For Your Garden\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e2cc66e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30164d28\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e8639b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":142,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-services.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fa92c14\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2c434fb3\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"5abe2e18\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33425b9f\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Lawn Services\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"472ed309\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"67cb221c\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37c1cce6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":143,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/driveway-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b3e60ba\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3b291bbf\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"20b91942\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5649f719\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Driveway Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6300b69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"256ddf68\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3735f0b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":144,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/deck-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"741128a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3691562\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3c8a0e6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5eb1b3b9\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Deck Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"25f37292\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"61c9ff8e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d41e618\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"8781ee3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":145,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/weed-control.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd84c7d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"14f7965\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fb2459e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0582197\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Weed Control \",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"f7b0fa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0197d9e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f3de9c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":146,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/grass-feed.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"75ba950\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"23edbf4\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"ad70b3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1c4ac7\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Grass Feed\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6f592ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0043a3b\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e6d8a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":147,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/edging-Cleaning.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd233da\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6535a16\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"937e2e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7aee\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Edging Cleaning\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"d9723d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"c908972\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"790dd775\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"360\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"160\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"140\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"background_overlay_color_b\":\"#000414\",\"background_overlay_image\":{\"id\":\"69\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/a-gardener-watering-plants-in-a-flowerbed-2RT8DWL.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]}},\"elements\":[{\"id\":\"a2ed5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7e37f762\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Landscaping\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a092069\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d5099\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need Someone To Take Care Your Garden & Lawn?\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=07ee36d\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1198756c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"66521a56\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":20,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":4},\"elements\":[{\"id\":\"1a89d099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.5090000000000003410605131648480892181396484375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"id\":\"70\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/happy-gardeners-with-plants-and-lawn-mower.jpg\"},\"background_position\":\"initial\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"space-between\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_color\":\"#FFFFFF00\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":9,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"46b821c1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":219,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":183,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"449971a9\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Make Appointment & Take Care Your Garden\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=secondary\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=93191b3\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_content_title_color_hover_responsive\":\"#FFFFFF\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#FFFFFF\",\"st_icon_color_responsive\":\"#00E5CC\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#00E5CC\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":false},{\"id\":\"13747b6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.4909999999999996589394868351519107818603515625,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a13f42e\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"260***1635696832144\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fde8487\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"59883b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1617542a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Process\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29c7aa96\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Complete Every Step Carefully\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ced0d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d62463d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18cf7834\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"41f79872\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-consult-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consultation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65e1b761\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"span\",\"title_color\":\"#FFD402\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#006943\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12cdbf13\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4175d29\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-pencil_art-light\",\"library\":\"jkiticon\"},\"title_text\":\"Design Installation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2adabf01\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b628\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"569b3221\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consturction \",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"67d6b2e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6fff79c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53c9a76e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"title_text\":\"Finished Work\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"555aace0\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d57540b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"71\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardening-background-with-garden-tolls-A9BGNJU.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]}},\"elements\":[{\"id\":\"147831a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"5a53d120\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"20\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Years of Experience\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"488f4727\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"6b8f6eae\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"76666759\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f532f9e\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"2850\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Happy Customers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"265fd738\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5473dc22\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"64\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Expert Landscapers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b38731e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4945f2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"627cd42c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65e3182\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.56499999999999772626324556767940521240234375},\"elements\":[{\"id\":\"43108b53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Projects\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45328989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Project We Have Done\\n\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"f382082\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.49900000000000233058017329312860965728759765625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":40,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"55ecfb57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"67afcbfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.0330000000000012505552149377763271331787109375,\"_inline_size_tablet\":23,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4989aa04\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Projects\",\"align\":\"right\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"left\",\"hover_animation\":\"float\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"32515d84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"3f5753f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"21982cfb\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"72\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-pruning-and-shaping-bushes-.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Cutting Leaf\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"404dc561\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"58d29b54\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"73\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/backyard-garden.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Home Garden\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"3bff1dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"3c24185a\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"64\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Build Backyard\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_image_height_responsive_tablet\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b3cb58d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_image\":{\"id\":\"74\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-moving-aerial-photo-Z8KDGJ9.jpg\"},\"background_overlay_color\":\"#0000007D\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]}},\"elements\":[{\"id\":\"79705206\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"51c9a732\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73b2fe0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"What They Says About Us\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4876e632\",\"elType\":\"widget\",\"settings\":{\"sg_layout_testimonial_choose\":\"style-2\",\"sg_testimonials_image_size_imagesize_size\":\"medium\",\"sg_testimonials_list\":[{\"sg_testimonials_list_client_avatar\":{\"id\":\"75\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/3SUMAU.jpg\"},\"_id\":\"6e9b2e1\",\"sg_testimonials_list_client_name\":\"Regan Traynor\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"76\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/CASCKD8.jpg\"},\"sg_testimonials_list_client_name\":\"Maisha Dunn\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"d069a43\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"77\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/MKLVKTE.jpg\"},\"sg_testimonials_list_client_name\":\"Reis Leonard\",\"sg_testimonials_list_designation\":\"Businessman\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"05c24f5\"}],\"st_wrapper_alignment_responsive\":\"left\",\"st_client_name_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_description_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_client_name_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_client_designation_normal_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_client_designation_normal_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=d343bdf\",\"st_rating_color_responsive\":\"\",\"st_client_name_normal_color_responsive\":\"\",\"st_quote_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_layout_background_background_color\":\"\"},\"st_layout_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_layout_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_wrapper_fix_height\":\"\",\"sg_setting_autoplay\":\"yes\",\"sg_setting_autoplay_pause\":\"\",\"sg_setting_arrow\":\"\",\"sg_setting_arrow_position\":\"middle-edge\",\"sg_setting_dots\":\"\",\"sg_setting_quote\":\"yes\",\"sg_setting_rating\":\"\",\"st_layout_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_layout_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_slide_show_responsive\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"sg_setting_quote_icon\":{\"value\":\"jki jki-quote-light\",\"library\":\"jkiticon\"},\"sg_layout_image_position\":\"below\",\"st_layout_background_background_background\":\"classic\",\"st_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position\":\"\",\"st_quote_override_position_top_responsive\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"st_quote_override_position_left_responsive\":{\"unit\":\"px\",\"size\":442,\"sizes\":[]},\"st_client_name_normal_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_quote_normal_font_size_responsive\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"st_client_image_margin_responsive\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_rating_font_size_responsive\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"st_rating_margin_right_responsive\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_setting_slide_show_responsive_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"st_wrapper_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position_top_responsive_tablet\":{\"unit\":\"px\",\"size\":249,\"sizes\":[]},\"st_quote_override_position_top_responsive_mobile\":{\"unit\":\"px\",\"size\":193,\"sizes\":[]},\"st_quote_override_position_left_responsive_tablet\":{\"unit\":\"px\",\"size\":265,\"sizes\":[]},\"st_quote_override_position_left_responsive_mobile\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]},\"st_quote_normal_font_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"st_description_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_normal_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64afd05f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"746d276b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30338dfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f950be4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ca735b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5d6ca3ad\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_title_hover_color_responsive\":\"globals\\/colors?id=secondary\",\"st_readmore_hover_color_responsive\":\"globals\\/colors?id=secondary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#646974\",\"st_excerpt_color_responsive\":\"#646974\",\"st_title_normal_color_responsive\":\"#272B36\",\"st_thumbnail_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_title_hover_color_responsive\":\"#FA8D25\",\"st_readmore_normal_color_responsive\":\"#FA8D25\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":false}],\"isInner\":false}]'),(815,151,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(816,152,'_elementor_edit_mode','builder'),(817,152,'_elementor_template_type','wp-page'),(818,152,'_elementor_version','3.23.2'),(819,152,'_wp_page_template','default'),(820,152,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(821,152,'_elementor_data','[{\"id\":\"35495243\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"Eldery male gardener using scissors for bushes\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"160\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0,\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_size_tablet\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"top center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00160E\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b\":\"#00000054\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_slideshow_gallery\":[{\"id\":\"58\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-with-hedge-trimmer-e1635892441479.jpg\"},{\"id\":\"59\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/professional-gardener-at-work-XU82AHW.jpg\"},{\"id\":\"60\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-buying-new-plantsP4VGX5F.jpg\"},{\"id\":\"61\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/garden-decorative-trees-trimming-by-professional-gardener-e1635864777836.jpg\"}]},\"elements\":[{\"id\":\"739a26d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":65,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=06a34e7\"}},\"elements\":[{\"id\":\"132d1a8e\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Complete For All\",\"sg_title_focused\":\" Landscape \",\"sg_title_after\":\" Service And Maintenance\",\"sg_title_html_tag\":\"h1\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=primary\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"7c49583a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"635cb25b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"23cf340e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37.85499999999999687361196265555918216705322265625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":48,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"1c4c950d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4768b6f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":62.14500000000000312638803734444081783294677734375,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"flex-start\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":52,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"34c0badb\",\"elType\":\"widget\",\"settings\":{\"sg_video_button_title\":\"Play Video\",\"sg_video_button_icon\":{\"value\":\"jki jki-play\",\"library\":\"jkiticon\"},\"sg_video_url\":\"#\",\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_width_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_line_height_responsive\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#FFD402\",\"st_button_normal_glow_color_responsive\":\"#00694361\",\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"_element_width\":\"auto\",\"__globals__\":{\"st_button_normal_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=accent\",\"st_border_normal_border_border_color\":\"\",\"st_button_hover_text_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_glow_color_responsive\":\"\"},\"st_button_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_button_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_width_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_line_height_responsive_mobile\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"st_border_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_border_normal_border_border_color\":\"#FFD027\",\"st_button_line_height_responsive_tablet\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"st_button_normal_background_background_color\":\"#006943\",\"st_button_hover_text_color_responsive\":\"#006943\",\"st_button_hover_background_background_color\":\"#FFD402\",\"sg_video_auto_play\":\"\",\"sg_video_mute\":\"\"},\"elements\":[],\"widgetType\":\"jkit_video_button\"},{\"id\":\"232ec8da\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Intro\",\"align\":\"right\",\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"hide_mobile\":\"hidden-mobile\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#00160E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49b348ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"edc2dbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.00200000000000244426701101474463939666748046875,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e2246bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Greenco\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"139cc45f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Landscaping And Garden Care Services\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dc78e71\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"597dc67d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"26cf3840\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b19bda0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"62\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-and-his-flowers.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"980\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a46c929\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c4d8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Public Liability Insurance\",\"_id\":\"a978734\"},{\"text\":\"Environmentally Friendly\",\"_id\":\"1cd10a1\"},{\"text\":\"On Time, Every Time\",\"_id\":\"c6767db\"},{\"text\":\"Beautiful Garden Designs\",\"_id\":\"d4743f4\"},{\"text\":\"Modern Machinery And Tool\",\"_id\":\"535c17d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"398321ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4c7c15d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.9129999999999967030817060731351375579833984375,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5683e90d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"63\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-topiary-job.jpg\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"860\",\"height\":\"980\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b6190b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"64\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden.jpg\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"-59\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"250636f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"713aa588\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"51a71b71\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#00160E\",\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=primary\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=06a34e7\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"st_content_title_color_responsive\":\"#7F7F7F\",\"st_super_color_responsive\":\"#FFD402\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\",\"sg_setting_html_tag\":\"span\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5557874f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"73847855\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"65\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/garden-maintenance-performed-by-pro-gardener.jpg\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"b1058a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":224,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":478,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":325,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"69098afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"40\",\"bottom\":\"80\",\"left\":\"40\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"7cb7bf82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91cb5d9\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26358abf\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Have The Perfect Solution For Your Landscape Problems\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15a36cc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42c8d36c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7114454f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76f24ca8\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Variation Gardening\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"138cc39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28a78a06\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Expert Landscapers\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c5ac2bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38fdb183\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3ce0b95b\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Affordable Price\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-save-money-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4c80f133\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7451fb11\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Free Consultation\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-Consultancy-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e93f2c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"39a46e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6773b2a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"87647bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find The Best Service For Your Garden\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e2cc66e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30164d28\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e8639b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":142,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-services.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fa92c14\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2c434fb3\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"5abe2e18\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33425b9f\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Lawn Services\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"472ed309\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"67cb221c\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37c1cce6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":143,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/driveway-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b3e60ba\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3b291bbf\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"20b91942\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5649f719\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Driveway Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6300b69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"256ddf68\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3735f0b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":144,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/deck-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"741128a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3691562\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3c8a0e6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5eb1b3b9\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Deck Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"25f37292\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"61c9ff8e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d41e618\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"8781ee3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":145,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/weed-control.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd84c7d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"14f7965\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fb2459e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0582197\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Weed Control \",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"f7b0fa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0197d9e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f3de9c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":146,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/grass-feed.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"75ba950\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"23edbf4\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"ad70b3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1c4ac7\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Grass Feed\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6f592ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0043a3b\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e6d8a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":147,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/edging-Cleaning.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd233da\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6535a16\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"937e2e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7aee\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Edging Cleaning\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"d9723d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"c908972\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"790dd775\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"360\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"160\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"140\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"background_overlay_color_b\":\"#000414\",\"background_overlay_image\":{\"id\":\"69\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/a-gardener-watering-plants-in-a-flowerbed-2RT8DWL.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]}},\"elements\":[{\"id\":\"a2ed5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7e37f762\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Landscaping\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a092069\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d5099\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need Someone To Take Care Your Garden & Lawn?\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=07ee36d\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1198756c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"66521a56\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":20,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":4},\"elements\":[{\"id\":\"1a89d099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.5090000000000003410605131648480892181396484375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"id\":\"70\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/happy-gardeners-with-plants-and-lawn-mower.jpg\"},\"background_position\":\"initial\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"space-between\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_color\":\"#FFFFFF00\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":9,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"46b821c1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":219,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":183,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"449971a9\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Make Appointment & Take Care Your Garden\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=secondary\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=93191b3\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_content_title_color_hover_responsive\":\"#FFFFFF\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#FFFFFF\",\"st_icon_color_responsive\":\"#00E5CC\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#00E5CC\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":false},{\"id\":\"13747b6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.4909999999999996589394868351519107818603515625,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a13f42e\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"260***1635696832144\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fde8487\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"59883b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1617542a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Process\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29c7aa96\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Complete Every Step Carefully\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ced0d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d62463d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18cf7834\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"41f79872\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-consult-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consultation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65e1b761\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"span\",\"title_color\":\"#FFD402\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#006943\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12cdbf13\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4175d29\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-pencil_art-light\",\"library\":\"jkiticon\"},\"title_text\":\"Design Installation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2adabf01\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b628\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"569b3221\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consturction \",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"67d6b2e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6fff79c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53c9a76e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"title_text\":\"Finished Work\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"555aace0\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d57540b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"71\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardening-background-with-garden-tolls-A9BGNJU.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]}},\"elements\":[{\"id\":\"147831a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"5a53d120\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"20\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Years of Experience\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"488f4727\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"6b8f6eae\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"76666759\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f532f9e\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"2850\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Happy Customers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"265fd738\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5473dc22\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"64\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Expert Landscapers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b38731e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4945f2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"627cd42c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65e3182\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.56499999999999772626324556767940521240234375},\"elements\":[{\"id\":\"43108b53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Projects\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45328989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Project We Have Done\\n\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"f382082\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.49900000000000233058017329312860965728759765625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":40,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"55ecfb57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"67afcbfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.0330000000000012505552149377763271331787109375,\"_inline_size_tablet\":23,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4989aa04\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Projects\",\"align\":\"right\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"left\",\"hover_animation\":\"float\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"32515d84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"3f5753f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"21982cfb\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"72\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-pruning-and-shaping-bushes-.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Cutting Leaf\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"404dc561\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"58d29b54\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"73\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/backyard-garden.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Home Garden\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"3bff1dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"3c24185a\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"64\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Build Backyard\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_image_height_responsive_tablet\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b3cb58d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_image\":{\"id\":\"74\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-moving-aerial-photo-Z8KDGJ9.jpg\"},\"background_overlay_color\":\"#0000007D\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]}},\"elements\":[{\"id\":\"79705206\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"51c9a732\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73b2fe0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"What They Says About Us\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4876e632\",\"elType\":\"widget\",\"settings\":{\"sg_layout_testimonial_choose\":\"style-2\",\"sg_testimonials_image_size_imagesize_size\":\"medium\",\"sg_testimonials_list\":[{\"sg_testimonials_list_client_avatar\":{\"id\":\"75\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/3SUMAU.jpg\"},\"_id\":\"6e9b2e1\",\"sg_testimonials_list_client_name\":\"Regan Traynor\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"76\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/CASCKD8.jpg\"},\"sg_testimonials_list_client_name\":\"Maisha Dunn\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"d069a43\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"77\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/MKLVKTE.jpg\"},\"sg_testimonials_list_client_name\":\"Reis Leonard\",\"sg_testimonials_list_designation\":\"Businessman\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"05c24f5\"}],\"st_wrapper_alignment_responsive\":\"left\",\"st_client_name_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_description_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_client_name_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_client_designation_normal_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_client_designation_normal_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=d343bdf\",\"st_rating_color_responsive\":\"\",\"st_client_name_normal_color_responsive\":\"\",\"st_quote_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_layout_background_background_color\":\"\"},\"st_layout_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_layout_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_wrapper_fix_height\":\"\",\"sg_setting_autoplay\":\"yes\",\"sg_setting_autoplay_pause\":\"\",\"sg_setting_arrow\":\"\",\"sg_setting_arrow_position\":\"middle-edge\",\"sg_setting_dots\":\"\",\"sg_setting_quote\":\"yes\",\"sg_setting_rating\":\"\",\"st_layout_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_layout_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_slide_show_responsive\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"sg_setting_quote_icon\":{\"value\":\"jki jki-quote-light\",\"library\":\"jkiticon\"},\"sg_layout_image_position\":\"below\",\"st_layout_background_background_background\":\"classic\",\"st_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position\":\"\",\"st_quote_override_position_top_responsive\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"st_quote_override_position_left_responsive\":{\"unit\":\"px\",\"size\":442,\"sizes\":[]},\"st_client_name_normal_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_quote_normal_font_size_responsive\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"st_client_image_margin_responsive\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_rating_font_size_responsive\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"st_rating_margin_right_responsive\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_setting_slide_show_responsive_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"st_wrapper_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position_top_responsive_tablet\":{\"unit\":\"px\",\"size\":249,\"sizes\":[]},\"st_quote_override_position_top_responsive_mobile\":{\"unit\":\"px\",\"size\":193,\"sizes\":[]},\"st_quote_override_position_left_responsive_tablet\":{\"unit\":\"px\",\"size\":265,\"sizes\":[]},\"st_quote_override_position_left_responsive_mobile\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]},\"st_quote_normal_font_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"st_description_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_normal_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64afd05f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"746d276b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30338dfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f950be4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ca735b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5d6ca3ad\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_title_hover_color_responsive\":\"globals\\/colors?id=secondary\",\"st_readmore_hover_color_responsive\":\"globals\\/colors?id=secondary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#646974\",\"st_excerpt_color_responsive\":\"#646974\",\"st_title_normal_color_responsive\":\"#272B36\",\"st_thumbnail_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_title_hover_color_responsive\":\"#FA8D25\",\"st_readmore_normal_color_responsive\":\"#FA8D25\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":false}],\"isInner\":false}]'),(822,152,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(823,153,'_elementor_edit_mode','builder'),(824,153,'_elementor_template_type','wp-page'),(825,153,'_elementor_version','3.23.2'),(826,153,'_wp_page_template','default'),(827,153,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(828,153,'_elementor_data','[{\"id\":\"35495243\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"Eldery male gardener using scissors for bushes\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"160\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0,\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_size_tablet\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"top center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00160E\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b\":\"#00000054\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_slideshow_gallery\":[{\"id\":\"58\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-with-hedge-trimmer-e1635892441479.jpg\"},{\"id\":\"59\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/professional-gardener-at-work-XU82AHW.jpg\"},{\"id\":\"60\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-buying-new-plantsP4VGX5F.jpg\"},{\"id\":\"61\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/garden-decorative-trees-trimming-by-professional-gardener-e1635864777836.jpg\"}]},\"elements\":[{\"id\":\"739a26d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":65,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=06a34e7\"}},\"elements\":[{\"id\":\"132d1a8e\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Complete For All\",\"sg_title_focused\":\" Landscape \",\"sg_title_after\":\" Service And Maintenance\",\"sg_title_html_tag\":\"h1\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=primary\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"7c49583a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"635cb25b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"23cf340e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37.85499999999999687361196265555918216705322265625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":48,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"1c4c950d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4768b6f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":62.14500000000000312638803734444081783294677734375,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"flex-start\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":52,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"34c0badb\",\"elType\":\"widget\",\"settings\":{\"sg_video_button_title\":\"Play Video\",\"sg_video_button_icon\":{\"value\":\"jki jki-play\",\"library\":\"jkiticon\"},\"sg_video_url\":\"#\",\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_width_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_line_height_responsive\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#FFD402\",\"st_button_normal_glow_color_responsive\":\"#00694361\",\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"_element_width\":\"auto\",\"__globals__\":{\"st_button_normal_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=accent\",\"st_border_normal_border_border_color\":\"\",\"st_button_hover_text_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_glow_color_responsive\":\"\"},\"st_button_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_button_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_width_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_line_height_responsive_mobile\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"st_border_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_border_normal_border_border_color\":\"#FFD027\",\"st_button_line_height_responsive_tablet\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"st_button_normal_background_background_color\":\"#006943\",\"st_button_hover_text_color_responsive\":\"#006943\",\"st_button_hover_background_background_color\":\"#FFD402\",\"sg_video_auto_play\":\"\",\"sg_video_mute\":\"\"},\"elements\":[],\"widgetType\":\"jkit_video_button\"},{\"id\":\"232ec8da\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Intro\",\"align\":\"right\",\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"hide_mobile\":\"hidden-mobile\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#00160E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49b348ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"edc2dbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.00200000000000244426701101474463939666748046875,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e2246bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Prestige Luxury Cleanings LLC\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"139cc45f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Landscaping And Garden Care Services\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dc78e71\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"597dc67d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"26cf3840\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b19bda0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"62\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-and-his-flowers.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"980\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a46c929\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c4d8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Public Liability Insurance\",\"_id\":\"a978734\"},{\"text\":\"Environmentally Friendly\",\"_id\":\"1cd10a1\"},{\"text\":\"On Time, Every Time\",\"_id\":\"c6767db\"},{\"text\":\"Beautiful Garden Designs\",\"_id\":\"d4743f4\"},{\"text\":\"Modern Machinery And Tool\",\"_id\":\"535c17d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"398321ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4c7c15d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.9129999999999967030817060731351375579833984375,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5683e90d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"63\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-topiary-job.jpg\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"860\",\"height\":\"980\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b6190b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"64\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden.jpg\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"-59\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"250636f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"713aa588\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"51a71b71\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#00160E\",\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=primary\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=06a34e7\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"st_content_title_color_responsive\":\"#7F7F7F\",\"st_super_color_responsive\":\"#FFD402\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\",\"sg_setting_html_tag\":\"span\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5557874f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"73847855\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"65\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/garden-maintenance-performed-by-pro-gardener.jpg\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"b1058a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":224,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":478,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":325,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"69098afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"40\",\"bottom\":\"80\",\"left\":\"40\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"7cb7bf82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91cb5d9\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26358abf\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Have The Perfect Solution For Your Landscape Problems\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15a36cc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42c8d36c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7114454f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76f24ca8\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Variation Gardening\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"138cc39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28a78a06\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Expert Landscapers\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c5ac2bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38fdb183\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3ce0b95b\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Affordable Price\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-save-money-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4c80f133\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7451fb11\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Free Consultation\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-Consultancy-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e93f2c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"39a46e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6773b2a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"87647bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find The Best Service For Your Garden\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e2cc66e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30164d28\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e8639b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":142,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-services.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fa92c14\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2c434fb3\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"5abe2e18\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33425b9f\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Lawn Services\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"472ed309\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"67cb221c\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37c1cce6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":143,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/driveway-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b3e60ba\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3b291bbf\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"20b91942\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5649f719\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Driveway Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6300b69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"256ddf68\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3735f0b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":144,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/deck-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"741128a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3691562\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3c8a0e6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5eb1b3b9\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Deck Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"25f37292\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"61c9ff8e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d41e618\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"8781ee3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":145,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/weed-control.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd84c7d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"14f7965\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fb2459e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0582197\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Weed Control \",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"f7b0fa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0197d9e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f3de9c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":146,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/grass-feed.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"75ba950\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"23edbf4\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"ad70b3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1c4ac7\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Grass Feed\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6f592ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0043a3b\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e6d8a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":147,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/edging-Cleaning.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd233da\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6535a16\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"937e2e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7aee\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Edging Cleaning\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"d9723d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"c908972\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"790dd775\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"360\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"160\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"140\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"background_overlay_color_b\":\"#000414\",\"background_overlay_image\":{\"id\":\"69\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/a-gardener-watering-plants-in-a-flowerbed-2RT8DWL.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]}},\"elements\":[{\"id\":\"a2ed5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7e37f762\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Landscaping\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a092069\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d5099\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need Someone To Take Care Your Garden & Lawn?\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=07ee36d\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1198756c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"66521a56\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":20,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":4},\"elements\":[{\"id\":\"1a89d099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.5090000000000003410605131648480892181396484375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"id\":\"70\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/happy-gardeners-with-plants-and-lawn-mower.jpg\"},\"background_position\":\"initial\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"space-between\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_color\":\"#FFFFFF00\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":9,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"46b821c1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":219,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":183,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"449971a9\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Make Appointment & Take Care Your Garden\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=secondary\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=93191b3\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_content_title_color_hover_responsive\":\"#FFFFFF\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#FFFFFF\",\"st_icon_color_responsive\":\"#00E5CC\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#00E5CC\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":false},{\"id\":\"13747b6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.4909999999999996589394868351519107818603515625,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a13f42e\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"260***1635696832144\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fde8487\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"59883b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1617542a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Process\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29c7aa96\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Complete Every Step Carefully\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ced0d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d62463d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18cf7834\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"41f79872\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-consult-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consultation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65e1b761\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"span\",\"title_color\":\"#FFD402\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#006943\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12cdbf13\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4175d29\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-pencil_art-light\",\"library\":\"jkiticon\"},\"title_text\":\"Design Installation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2adabf01\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b628\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"569b3221\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consturction \",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"67d6b2e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6fff79c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53c9a76e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"title_text\":\"Finished Work\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"555aace0\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d57540b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"71\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardening-background-with-garden-tolls-A9BGNJU.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]}},\"elements\":[{\"id\":\"147831a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"5a53d120\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"20\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Years of Experience\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"488f4727\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"6b8f6eae\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"76666759\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f532f9e\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"2850\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Happy Customers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"265fd738\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5473dc22\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"64\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Expert Landscapers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b38731e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4945f2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"627cd42c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65e3182\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.56499999999999772626324556767940521240234375},\"elements\":[{\"id\":\"43108b53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Projects\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45328989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Project We Have Done\\n\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"f382082\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.49900000000000233058017329312860965728759765625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":40,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"55ecfb57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"67afcbfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.0330000000000012505552149377763271331787109375,\"_inline_size_tablet\":23,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4989aa04\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Projects\",\"align\":\"right\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"left\",\"hover_animation\":\"float\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"32515d84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"3f5753f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"21982cfb\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"72\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-pruning-and-shaping-bushes-.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Cutting Leaf\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"404dc561\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"58d29b54\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"73\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/backyard-garden.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Home Garden\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"3bff1dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"3c24185a\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"64\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Build Backyard\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_image_height_responsive_tablet\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b3cb58d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_image\":{\"id\":\"74\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-moving-aerial-photo-Z8KDGJ9.jpg\"},\"background_overlay_color\":\"#0000007D\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]}},\"elements\":[{\"id\":\"79705206\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"51c9a732\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73b2fe0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"What They Says About Us\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4876e632\",\"elType\":\"widget\",\"settings\":{\"sg_layout_testimonial_choose\":\"style-2\",\"sg_testimonials_image_size_imagesize_size\":\"medium\",\"sg_testimonials_list\":[{\"sg_testimonials_list_client_avatar\":{\"id\":\"75\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/3SUMAU.jpg\"},\"_id\":\"6e9b2e1\",\"sg_testimonials_list_client_name\":\"Regan Traynor\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"76\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/CASCKD8.jpg\"},\"sg_testimonials_list_client_name\":\"Maisha Dunn\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"d069a43\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"77\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/MKLVKTE.jpg\"},\"sg_testimonials_list_client_name\":\"Reis Leonard\",\"sg_testimonials_list_designation\":\"Businessman\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"05c24f5\"}],\"st_wrapper_alignment_responsive\":\"left\",\"st_client_name_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_description_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_client_name_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_client_designation_normal_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_client_designation_normal_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=d343bdf\",\"st_rating_color_responsive\":\"\",\"st_client_name_normal_color_responsive\":\"\",\"st_quote_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_layout_background_background_color\":\"\"},\"st_layout_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_layout_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_wrapper_fix_height\":\"\",\"sg_setting_autoplay\":\"yes\",\"sg_setting_autoplay_pause\":\"\",\"sg_setting_arrow\":\"\",\"sg_setting_arrow_position\":\"middle-edge\",\"sg_setting_dots\":\"\",\"sg_setting_quote\":\"yes\",\"sg_setting_rating\":\"\",\"st_layout_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_layout_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_slide_show_responsive\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"sg_setting_quote_icon\":{\"value\":\"jki jki-quote-light\",\"library\":\"jkiticon\"},\"sg_layout_image_position\":\"below\",\"st_layout_background_background_background\":\"classic\",\"st_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position\":\"\",\"st_quote_override_position_top_responsive\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"st_quote_override_position_left_responsive\":{\"unit\":\"px\",\"size\":442,\"sizes\":[]},\"st_client_name_normal_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_quote_normal_font_size_responsive\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"st_client_image_margin_responsive\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_rating_font_size_responsive\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"st_rating_margin_right_responsive\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_setting_slide_show_responsive_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"st_wrapper_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position_top_responsive_tablet\":{\"unit\":\"px\",\"size\":249,\"sizes\":[]},\"st_quote_override_position_top_responsive_mobile\":{\"unit\":\"px\",\"size\":193,\"sizes\":[]},\"st_quote_override_position_left_responsive_tablet\":{\"unit\":\"px\",\"size\":265,\"sizes\":[]},\"st_quote_override_position_left_responsive_mobile\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]},\"st_quote_normal_font_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"st_description_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_normal_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64afd05f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"746d276b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30338dfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f950be4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ca735b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5d6ca3ad\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_title_hover_color_responsive\":\"globals\\/colors?id=secondary\",\"st_readmore_hover_color_responsive\":\"globals\\/colors?id=secondary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#646974\",\"st_excerpt_color_responsive\":\"#646974\",\"st_title_normal_color_responsive\":\"#272B36\",\"st_thumbnail_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_title_hover_color_responsive\":\"#FA8D25\",\"st_readmore_normal_color_responsive\":\"#FA8D25\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":false}],\"isInner\":false}]'),(829,153,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(831,154,'_wp_attached_file','2024/07/banner-02-5.jpg'),(832,154,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:787;s:4:\"file\";s:23:\"2024/07/banner-02-5.jpg\";s:8:\"filesize\";i:1747669;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"banner-02-5-300x123.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:123;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14355;}s:5:\"large\";a:5:{s:4:\"file\";s:24:\"banner-02-5-1024x420.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:420;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:145815;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"banner-02-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:9517;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:23:\"banner-02-5-768x315.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:315;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:85471;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:24:\"banner-02-5-1536x630.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:630;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:293445;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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,155,'_wp_attached_file','2024/07/banner-03-3.jpg'),(834,155,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:787;s:4:\"file\";s:23:\"2024/07/banner-03-3.jpg\";s:8:\"filesize\";i:1177384;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"banner-03-3-300x123.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:123;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16372;}s:5:\"large\";a:5:{s:4:\"file\";s:24:\"banner-03-3-1024x420.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:420;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:115053;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"banner-03-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:10261;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:23:\"banner-03-3-768x315.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:315;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:74119;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:24:\"banner-03-3-1536x630.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:630;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:209730;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(835,156,'_wp_attached_file','2024/07/banner-04-3.jpg'),(836,156,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:787;s:4:\"file\";s:23:\"2024/07/banner-04-3.jpg\";s:8:\"filesize\";i:587898;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"banner-04-3-300x123.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:123;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10059;}s:5:\"large\";a:5:{s:4:\"file\";s:24:\"banner-04-3-1024x420.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:420;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:62112;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"banner-04-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:8641;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:23:\"banner-04-3-768x315.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:315;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41004;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:24:\"banner-04-3-1536x630.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:630;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:109808;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(837,157,'_wp_attached_file','2024/07/banner-01-5.jpg'),(838,157,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:787;s:4:\"file\";s:23:\"2024/07/banner-01-5.jpg\";s:8:\"filesize\";i:1219058;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"banner-01-5-300x123.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:123;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16821;}s:5:\"large\";a:5:{s:4:\"file\";s:24:\"banner-01-5-1024x420.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:420;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:134166;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"banner-01-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:9819;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:23:\"banner-01-5-768x315.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:315;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:85789;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:24:\"banner-01-5-1536x630.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:630;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:246569;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(847,159,'_elementor_edit_mode','builder'),(848,159,'_elementor_template_type','wp-page'),(849,159,'_elementor_version','3.23.2'),(850,159,'_wp_page_template','default'),(851,159,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(852,159,'_elementor_data','[{\"id\":\"35495243\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"Eldery male gardener using scissors for bushes\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"160\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0,\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_size_tablet\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"top center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00160E\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b\":\"#00000054\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_slideshow_gallery\":[{\"id\":\"58\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-with-hedge-trimmer-e1635892441479.jpg\"},{\"id\":\"59\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/professional-gardener-at-work-XU82AHW.jpg\"},{\"id\":\"60\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-buying-new-plantsP4VGX5F.jpg\"},{\"id\":\"61\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/garden-decorative-trees-trimming-by-professional-gardener-e1635864777836.jpg\"}]},\"elements\":[{\"id\":\"739a26d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":65,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=06a34e7\"}},\"elements\":[{\"id\":\"132d1a8e\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Complete For All\",\"sg_title_focused\":\" Landscape \",\"sg_title_after\":\" Service And Maintenance\",\"sg_title_html_tag\":\"h1\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=primary\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"7c49583a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"635cb25b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"23cf340e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37.85499999999999687361196265555918216705322265625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":48,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"1c4c950d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4768b6f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":62.14500000000000312638803734444081783294677734375,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"flex-start\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":52,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"34c0badb\",\"elType\":\"widget\",\"settings\":{\"sg_video_button_title\":\"Play Video\",\"sg_video_button_icon\":{\"value\":\"jki jki-play\",\"library\":\"jkiticon\"},\"sg_video_url\":\"#\",\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_width_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_line_height_responsive\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#FFD402\",\"st_button_normal_glow_color_responsive\":\"#00694361\",\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"_element_width\":\"auto\",\"__globals__\":{\"st_button_normal_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=accent\",\"st_border_normal_border_border_color\":\"\",\"st_button_hover_text_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_glow_color_responsive\":\"\"},\"st_button_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_button_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_width_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_line_height_responsive_mobile\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"st_border_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_border_normal_border_border_color\":\"#FFD027\",\"st_button_line_height_responsive_tablet\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"st_button_normal_background_background_color\":\"#006943\",\"st_button_hover_text_color_responsive\":\"#006943\",\"st_button_hover_background_background_color\":\"#FFD402\",\"sg_video_auto_play\":\"\",\"sg_video_mute\":\"\"},\"elements\":[],\"widgetType\":\"jkit_video_button\"},{\"id\":\"232ec8da\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Intro\",\"align\":\"right\",\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"hide_mobile\":\"hidden-mobile\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#00160E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49b348ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"edc2dbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.00200000000000244426701101474463939666748046875,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e2246bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Prestige Luxury Cleanings LLC\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"139cc45f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Landscaping And Garden Care Services\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dc78e71\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"597dc67d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"26cf3840\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b19bda0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"62\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-and-his-flowers.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"980\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a46c929\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c4d8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Public Liability Insurance\",\"_id\":\"a978734\"},{\"text\":\"Environmentally Friendly\",\"_id\":\"1cd10a1\"},{\"text\":\"On Time, Every Time\",\"_id\":\"c6767db\"},{\"text\":\"Beautiful Garden Designs\",\"_id\":\"d4743f4\"},{\"text\":\"Modern Machinery And Tool\",\"_id\":\"535c17d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"398321ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4c7c15d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.9129999999999967030817060731351375579833984375,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5683e90d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"63\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-topiary-job.jpg\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"860\",\"height\":\"980\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b6190b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"64\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden.jpg\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"-59\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"250636f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"713aa588\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"51a71b71\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#00160E\",\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=primary\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=06a34e7\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"st_content_title_color_responsive\":\"#7F7F7F\",\"st_super_color_responsive\":\"#FFD402\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\",\"sg_setting_html_tag\":\"span\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5557874f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"73847855\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"65\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/garden-maintenance-performed-by-pro-gardener.jpg\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"b1058a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":224,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":478,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":325,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"69098afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"40\",\"bottom\":\"80\",\"left\":\"40\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"7cb7bf82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91cb5d9\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26358abf\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Have The Perfect Solution For Your Landscape Problems\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15a36cc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42c8d36c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7114454f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76f24ca8\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Variation Gardening\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"138cc39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28a78a06\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Expert Landscapers\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c5ac2bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38fdb183\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3ce0b95b\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Affordable Price\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-save-money-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4c80f133\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7451fb11\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Free Consultation\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-Consultancy-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e93f2c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"39a46e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6773b2a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"87647bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find The Best Service For Your Garden\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e2cc66e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30164d28\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e8639b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":142,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-services.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fa92c14\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2c434fb3\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"5abe2e18\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33425b9f\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Lawn Services\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"472ed309\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"67cb221c\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37c1cce6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":143,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/driveway-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b3e60ba\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3b291bbf\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"20b91942\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5649f719\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Driveway Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6300b69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"256ddf68\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3735f0b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":144,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/deck-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"741128a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3691562\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3c8a0e6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5eb1b3b9\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Deck Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"25f37292\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"61c9ff8e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d41e618\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"8781ee3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":145,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/weed-control.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd84c7d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"14f7965\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fb2459e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0582197\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Weed Control \",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"f7b0fa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0197d9e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f3de9c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":146,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/grass-feed.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"75ba950\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"23edbf4\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"ad70b3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1c4ac7\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Grass Feed\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6f592ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0043a3b\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e6d8a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":147,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/edging-Cleaning.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd233da\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6535a16\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"937e2e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7aee\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Edging Cleaning\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"d9723d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"c908972\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"790dd775\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"360\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"160\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"140\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"background_overlay_color_b\":\"#000414\",\"background_overlay_image\":{\"id\":\"69\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/a-gardener-watering-plants-in-a-flowerbed-2RT8DWL.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]}},\"elements\":[{\"id\":\"a2ed5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7e37f762\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Landscaping\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a092069\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d5099\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need Someone To Take Care Your Garden & Lawn?\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=07ee36d\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1198756c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"66521a56\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":20,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":4},\"elements\":[{\"id\":\"1a89d099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.5090000000000003410605131648480892181396484375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"id\":\"70\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/happy-gardeners-with-plants-and-lawn-mower.jpg\"},\"background_position\":\"initial\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"space-between\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_color\":\"#FFFFFF00\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":9,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"46b821c1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":219,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":183,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"449971a9\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Make Appointment & Take Care Your Garden\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=secondary\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=93191b3\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_content_title_color_hover_responsive\":\"#FFFFFF\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#FFFFFF\",\"st_icon_color_responsive\":\"#00E5CC\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#00E5CC\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":false},{\"id\":\"13747b6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.4909999999999996589394868351519107818603515625,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a13f42e\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"260***1635696832144\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fde8487\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"59883b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1617542a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Process\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29c7aa96\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Complete Every Step Carefully\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ced0d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d62463d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18cf7834\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"41f79872\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-consult-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consultation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65e1b761\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"span\",\"title_color\":\"#FFD402\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#006943\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12cdbf13\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4175d29\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-pencil_art-light\",\"library\":\"jkiticon\"},\"title_text\":\"Design Installation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2adabf01\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b628\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"569b3221\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consturction \",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"67d6b2e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6fff79c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53c9a76e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"title_text\":\"Finished Work\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"555aace0\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d57540b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"71\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardening-background-with-garden-tolls-A9BGNJU.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]}},\"elements\":[{\"id\":\"147831a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"5a53d120\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"20\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Years of Experience\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"488f4727\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"6b8f6eae\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"76666759\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f532f9e\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"2850\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Happy Customers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"265fd738\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5473dc22\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"64\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Expert Landscapers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b38731e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4945f2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"627cd42c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65e3182\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.56499999999999772626324556767940521240234375},\"elements\":[{\"id\":\"43108b53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Projects\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45328989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Project We Have Done\\n\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"f382082\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.49900000000000233058017329312860965728759765625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":40,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"55ecfb57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"67afcbfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.0330000000000012505552149377763271331787109375,\"_inline_size_tablet\":23,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4989aa04\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Projects\",\"align\":\"right\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"left\",\"hover_animation\":\"float\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"32515d84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"3f5753f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"21982cfb\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"72\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-pruning-and-shaping-bushes-.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Cutting Leaf\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"404dc561\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"58d29b54\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"73\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/backyard-garden.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Home Garden\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"3bff1dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"3c24185a\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"64\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Build Backyard\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_image_height_responsive_tablet\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b3cb58d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_image\":{\"id\":\"74\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-moving-aerial-photo-Z8KDGJ9.jpg\"},\"background_overlay_color\":\"#0000007D\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]}},\"elements\":[{\"id\":\"79705206\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"51c9a732\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73b2fe0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"What They Says About Us\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4876e632\",\"elType\":\"widget\",\"settings\":{\"sg_layout_testimonial_choose\":\"style-2\",\"sg_testimonials_image_size_imagesize_size\":\"medium\",\"sg_testimonials_list\":[{\"sg_testimonials_list_client_avatar\":{\"id\":\"75\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/3SUMAU.jpg\"},\"_id\":\"6e9b2e1\",\"sg_testimonials_list_client_name\":\"Regan Traynor\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"76\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/CASCKD8.jpg\"},\"sg_testimonials_list_client_name\":\"Maisha Dunn\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"d069a43\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"77\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/MKLVKTE.jpg\"},\"sg_testimonials_list_client_name\":\"Reis Leonard\",\"sg_testimonials_list_designation\":\"Businessman\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"05c24f5\"}],\"st_wrapper_alignment_responsive\":\"left\",\"st_client_name_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_description_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_client_name_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_client_designation_normal_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_client_designation_normal_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=d343bdf\",\"st_rating_color_responsive\":\"\",\"st_client_name_normal_color_responsive\":\"\",\"st_quote_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_layout_background_background_color\":\"\"},\"st_layout_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_layout_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_wrapper_fix_height\":\"\",\"sg_setting_autoplay\":\"yes\",\"sg_setting_autoplay_pause\":\"\",\"sg_setting_arrow\":\"\",\"sg_setting_arrow_position\":\"middle-edge\",\"sg_setting_dots\":\"\",\"sg_setting_quote\":\"yes\",\"sg_setting_rating\":\"\",\"st_layout_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_layout_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_slide_show_responsive\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"sg_setting_quote_icon\":{\"value\":\"jki jki-quote-light\",\"library\":\"jkiticon\"},\"sg_layout_image_position\":\"below\",\"st_layout_background_background_background\":\"classic\",\"st_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position\":\"\",\"st_quote_override_position_top_responsive\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"st_quote_override_position_left_responsive\":{\"unit\":\"px\",\"size\":442,\"sizes\":[]},\"st_client_name_normal_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_quote_normal_font_size_responsive\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"st_client_image_margin_responsive\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_rating_font_size_responsive\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"st_rating_margin_right_responsive\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_setting_slide_show_responsive_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"st_wrapper_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position_top_responsive_tablet\":{\"unit\":\"px\",\"size\":249,\"sizes\":[]},\"st_quote_override_position_top_responsive_mobile\":{\"unit\":\"px\",\"size\":193,\"sizes\":[]},\"st_quote_override_position_left_responsive_tablet\":{\"unit\":\"px\",\"size\":265,\"sizes\":[]},\"st_quote_override_position_left_responsive_mobile\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]},\"st_quote_normal_font_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"st_description_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_normal_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64afd05f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"746d276b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30338dfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f950be4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ca735b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5d6ca3ad\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_title_hover_color_responsive\":\"globals\\/colors?id=secondary\",\"st_readmore_hover_color_responsive\":\"globals\\/colors?id=secondary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#646974\",\"st_excerpt_color_responsive\":\"#646974\",\"st_title_normal_color_responsive\":\"#272B36\",\"st_thumbnail_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_title_hover_color_responsive\":\"#FA8D25\",\"st_readmore_normal_color_responsive\":\"#FA8D25\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":false}],\"isInner\":false}]'),(853,159,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(854,160,'_elementor_edit_mode','builder'),(855,160,'_elementor_template_type','wp-page'),(856,160,'_elementor_version','3.23.2'),(857,160,'_wp_page_template','default'),(858,160,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'); INSERT INTO `victorq_postmeta` VALUES (859,160,'_elementor_data','[{\"id\":\"35495243\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"Eldery male gardener using scissors for bushes\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"160\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0,\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_size_tablet\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"top center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00160E\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b\":\"#00000054\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_slideshow_gallery\":[{\"id\":\"58\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-with-hedge-trimmer-e1635892441479.jpg\"},{\"id\":\"59\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/professional-gardener-at-work-XU82AHW.jpg\"},{\"id\":\"60\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-buying-new-plantsP4VGX5F.jpg\"},{\"id\":\"61\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/garden-decorative-trees-trimming-by-professional-gardener-e1635864777836.jpg\"}]},\"elements\":[{\"id\":\"739a26d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":65,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=06a34e7\"}},\"elements\":[{\"id\":\"132d1a8e\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Complete For All\",\"sg_title_focused\":\" Landscape \",\"sg_title_after\":\" Service And Maintenance\",\"sg_title_html_tag\":\"h1\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=primary\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"7c49583a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"635cb25b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"23cf340e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37.85499999999999687361196265555918216705322265625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":48,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"1c4c950d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4768b6f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":62.14500000000000312638803734444081783294677734375,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"flex-start\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":52,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"34c0badb\",\"elType\":\"widget\",\"settings\":{\"sg_video_button_title\":\"Play Video\",\"sg_video_button_icon\":{\"value\":\"jki jki-play\",\"library\":\"jkiticon\"},\"sg_video_url\":\"#\",\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_width_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_line_height_responsive\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#FFD402\",\"st_button_normal_glow_color_responsive\":\"#00694361\",\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"_element_width\":\"auto\",\"__globals__\":{\"st_button_normal_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=accent\",\"st_border_normal_border_border_color\":\"\",\"st_button_hover_text_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_glow_color_responsive\":\"\"},\"st_button_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_button_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_width_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_line_height_responsive_mobile\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"st_border_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_border_normal_border_border_color\":\"#FFD027\",\"st_button_line_height_responsive_tablet\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"st_button_normal_background_background_color\":\"#006943\",\"st_button_hover_text_color_responsive\":\"#006943\",\"st_button_hover_background_background_color\":\"#FFD402\",\"sg_video_auto_play\":\"\",\"sg_video_mute\":\"\"},\"elements\":[],\"widgetType\":\"jkit_video_button\"},{\"id\":\"232ec8da\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Intro\",\"align\":\"right\",\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"hide_mobile\":\"hidden-mobile\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#00160E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49b348ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"edc2dbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.00200000000000244426701101474463939666748046875,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e2246bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Prestige Luxury Cleanings LLC\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"139cc45f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Landscaping And Garden Care Services\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dc78e71\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"597dc67d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"26cf3840\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b19bda0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"62\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-and-his-flowers.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"980\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a46c929\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c4d8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Public Liability Insurance\",\"_id\":\"a978734\"},{\"text\":\"Environmentally Friendly\",\"_id\":\"1cd10a1\"},{\"text\":\"On Time, Every Time\",\"_id\":\"c6767db\"},{\"text\":\"Beautiful Garden Designs\",\"_id\":\"d4743f4\"},{\"text\":\"Modern Machinery And Tool\",\"_id\":\"535c17d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"398321ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4c7c15d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.9129999999999967030817060731351375579833984375,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5683e90d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"63\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-topiary-job.jpg\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"860\",\"height\":\"980\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b6190b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"64\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden.jpg\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"-59\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"250636f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"713aa588\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"51a71b71\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#00160E\",\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=primary\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=06a34e7\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"st_content_title_color_responsive\":\"#7F7F7F\",\"st_super_color_responsive\":\"#FFD402\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\",\"sg_setting_html_tag\":\"span\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5557874f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"73847855\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"65\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/garden-maintenance-performed-by-pro-gardener.jpg\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"b1058a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":224,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":478,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":325,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"69098afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"40\",\"bottom\":\"80\",\"left\":\"40\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"7cb7bf82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91cb5d9\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26358abf\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Have The Perfect Solution For Your Landscape Problems\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15a36cc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42c8d36c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7114454f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76f24ca8\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Variation Gardening\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"138cc39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28a78a06\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Expert Landscapers\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c5ac2bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38fdb183\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3ce0b95b\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Affordable Price\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-save-money-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4c80f133\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7451fb11\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Free Consultation\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-Consultancy-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e93f2c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"39a46e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6773b2a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"87647bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find The Best Service For Your Garden\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e2cc66e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30164d28\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e8639b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":142,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-services.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fa92c14\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2c434fb3\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"5abe2e18\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33425b9f\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Lawn Services\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"472ed309\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"67cb221c\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37c1cce6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":143,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/driveway-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b3e60ba\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3b291bbf\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"20b91942\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5649f719\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Driveway Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6300b69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"256ddf68\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3735f0b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":144,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/deck-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"741128a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3691562\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3c8a0e6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5eb1b3b9\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Deck Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"25f37292\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"61c9ff8e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d41e618\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"8781ee3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":145,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/weed-control.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd84c7d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"14f7965\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fb2459e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0582197\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Weed Control \",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"f7b0fa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0197d9e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f3de9c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":146,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/grass-feed.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"75ba950\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"23edbf4\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"ad70b3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1c4ac7\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Grass Feed\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6f592ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0043a3b\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e6d8a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":147,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/edging-Cleaning.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd233da\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6535a16\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"937e2e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7aee\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Edging Cleaning\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"d9723d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"c908972\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"790dd775\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"360\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"160\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"140\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"background_overlay_color_b\":\"#000414\",\"background_overlay_image\":{\"id\":\"69\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/a-gardener-watering-plants-in-a-flowerbed-2RT8DWL.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]}},\"elements\":[{\"id\":\"a2ed5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7e37f762\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Landscaping\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a092069\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d5099\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need Someone To Take Care Your Garden & Lawn?\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=07ee36d\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1198756c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"66521a56\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":20,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":4},\"elements\":[{\"id\":\"1a89d099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.5090000000000003410605131648480892181396484375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"id\":\"70\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/happy-gardeners-with-plants-and-lawn-mower.jpg\"},\"background_position\":\"initial\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"space-between\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_color\":\"#FFFFFF00\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":9,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"46b821c1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":219,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":183,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"449971a9\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Make Appointment & Take Care Your Garden\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=secondary\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=93191b3\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_content_title_color_hover_responsive\":\"#FFFFFF\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#FFFFFF\",\"st_icon_color_responsive\":\"#00E5CC\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#00E5CC\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":false},{\"id\":\"13747b6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.4909999999999996589394868351519107818603515625,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a13f42e\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"260***1635696832144\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fde8487\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"59883b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1617542a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Process\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29c7aa96\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Complete Every Step Carefully\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ced0d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d62463d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18cf7834\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"41f79872\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-consult-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consultation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65e1b761\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"span\",\"title_color\":\"#FFD402\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#006943\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12cdbf13\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4175d29\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-pencil_art-light\",\"library\":\"jkiticon\"},\"title_text\":\"Design Installation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2adabf01\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b628\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"569b3221\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consturction \",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"67d6b2e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6fff79c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53c9a76e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"title_text\":\"Finished Work\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"555aace0\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d57540b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"71\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardening-background-with-garden-tolls-A9BGNJU.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]}},\"elements\":[{\"id\":\"147831a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"5a53d120\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"20\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Years of Experience\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"488f4727\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"6b8f6eae\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"76666759\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f532f9e\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"2850\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Happy Customers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"265fd738\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5473dc22\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"64\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Expert Landscapers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b38731e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4945f2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"627cd42c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65e3182\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.56499999999999772626324556767940521240234375},\"elements\":[{\"id\":\"43108b53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Projects\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45328989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Project We Have Done\\n\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"f382082\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.49900000000000233058017329312860965728759765625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":40,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"55ecfb57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"67afcbfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.0330000000000012505552149377763271331787109375,\"_inline_size_tablet\":23,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4989aa04\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Projects\",\"align\":\"right\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"left\",\"hover_animation\":\"float\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"32515d84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"3f5753f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"21982cfb\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"72\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-pruning-and-shaping-bushes-.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Cutting Leaf\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"404dc561\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"58d29b54\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"73\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/backyard-garden.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Home Garden\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"3bff1dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"3c24185a\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"64\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Build Backyard\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_image_height_responsive_tablet\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b3cb58d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_image\":{\"id\":\"74\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-moving-aerial-photo-Z8KDGJ9.jpg\"},\"background_overlay_color\":\"#0000007D\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]}},\"elements\":[{\"id\":\"79705206\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"51c9a732\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73b2fe0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"What They Says About Us\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4876e632\",\"elType\":\"widget\",\"settings\":{\"sg_layout_testimonial_choose\":\"style-2\",\"sg_testimonials_image_size_imagesize_size\":\"medium\",\"sg_testimonials_list\":[{\"sg_testimonials_list_client_avatar\":{\"id\":\"75\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/3SUMAU.jpg\"},\"_id\":\"6e9b2e1\",\"sg_testimonials_list_client_name\":\"Regan Traynor\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"76\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/CASCKD8.jpg\"},\"sg_testimonials_list_client_name\":\"Maisha Dunn\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"d069a43\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"77\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/MKLVKTE.jpg\"},\"sg_testimonials_list_client_name\":\"Reis Leonard\",\"sg_testimonials_list_designation\":\"Businessman\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"05c24f5\"}],\"st_wrapper_alignment_responsive\":\"left\",\"st_client_name_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_description_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_client_name_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_client_designation_normal_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_client_designation_normal_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=d343bdf\",\"st_rating_color_responsive\":\"\",\"st_client_name_normal_color_responsive\":\"\",\"st_quote_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_layout_background_background_color\":\"\"},\"st_layout_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_layout_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_wrapper_fix_height\":\"\",\"sg_setting_autoplay\":\"yes\",\"sg_setting_autoplay_pause\":\"\",\"sg_setting_arrow\":\"\",\"sg_setting_arrow_position\":\"middle-edge\",\"sg_setting_dots\":\"\",\"sg_setting_quote\":\"yes\",\"sg_setting_rating\":\"\",\"st_layout_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_layout_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_slide_show_responsive\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"sg_setting_quote_icon\":{\"value\":\"jki jki-quote-light\",\"library\":\"jkiticon\"},\"sg_layout_image_position\":\"below\",\"st_layout_background_background_background\":\"classic\",\"st_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position\":\"\",\"st_quote_override_position_top_responsive\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"st_quote_override_position_left_responsive\":{\"unit\":\"px\",\"size\":442,\"sizes\":[]},\"st_client_name_normal_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_quote_normal_font_size_responsive\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"st_client_image_margin_responsive\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_rating_font_size_responsive\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"st_rating_margin_right_responsive\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_setting_slide_show_responsive_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"st_wrapper_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position_top_responsive_tablet\":{\"unit\":\"px\",\"size\":249,\"sizes\":[]},\"st_quote_override_position_top_responsive_mobile\":{\"unit\":\"px\",\"size\":193,\"sizes\":[]},\"st_quote_override_position_left_responsive_tablet\":{\"unit\":\"px\",\"size\":265,\"sizes\":[]},\"st_quote_override_position_left_responsive_mobile\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]},\"st_quote_normal_font_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"st_description_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_normal_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64afd05f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"746d276b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30338dfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f950be4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ca735b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5d6ca3ad\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_title_hover_color_responsive\":\"globals\\/colors?id=secondary\",\"st_readmore_hover_color_responsive\":\"globals\\/colors?id=secondary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#646974\",\"st_excerpt_color_responsive\":\"#646974\",\"st_title_normal_color_responsive\":\"#272B36\",\"st_thumbnail_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_title_hover_color_responsive\":\"#FA8D25\",\"st_readmore_normal_color_responsive\":\"#FA8D25\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":false}],\"isInner\":false}]'),(860,160,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(861,161,'_elementor_edit_mode','builder'),(862,161,'_elementor_template_type','wp-page'),(863,161,'_elementor_version','3.23.2'),(864,161,'_wp_page_template','default'),(865,161,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(866,161,'_elementor_data','[{\"id\":\"35495243\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"Eldery male gardener using scissors for bushes\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"160\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0,\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_size_tablet\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"top center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00160E\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b\":\"#00000054\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_slideshow_gallery\":[{\"id\":154,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-02-5.jpg\"},{\"id\":155,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-03-3.jpg\"},{\"id\":156,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-04-3.jpg\"},{\"id\":157,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-01-5.jpg\"}]},\"elements\":[{\"id\":\"739a26d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":65,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=06a34e7\"}},\"elements\":[{\"id\":\"132d1a8e\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Complete For All\",\"sg_title_focused\":\" Landscape \",\"sg_title_after\":\" Service And Maintenance\",\"sg_title_html_tag\":\"h1\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=primary\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"7c49583a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"635cb25b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"23cf340e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37.85499999999999687361196265555918216705322265625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":48,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"1c4c950d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4768b6f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":62.14500000000000312638803734444081783294677734375,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"flex-start\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":52,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"34c0badb\",\"elType\":\"widget\",\"settings\":{\"sg_video_button_title\":\"Play Video\",\"sg_video_button_icon\":{\"value\":\"jki jki-play\",\"library\":\"jkiticon\"},\"sg_video_url\":\"#\",\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_width_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_line_height_responsive\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#FFD402\",\"st_button_normal_glow_color_responsive\":\"#00694361\",\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"_element_width\":\"auto\",\"__globals__\":{\"st_button_normal_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=accent\",\"st_border_normal_border_border_color\":\"\",\"st_button_hover_text_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_glow_color_responsive\":\"\"},\"st_button_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_button_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_width_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_line_height_responsive_mobile\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"st_border_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_border_normal_border_border_color\":\"#FFD027\",\"st_button_line_height_responsive_tablet\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"st_button_normal_background_background_color\":\"#006943\",\"st_button_hover_text_color_responsive\":\"#006943\",\"st_button_hover_background_background_color\":\"#FFD402\",\"sg_video_auto_play\":\"\",\"sg_video_mute\":\"\"},\"elements\":[],\"widgetType\":\"jkit_video_button\"},{\"id\":\"232ec8da\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Intro\",\"align\":\"right\",\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"hide_mobile\":\"hidden-mobile\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#00160E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49b348ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"edc2dbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.00200000000000244426701101474463939666748046875,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e2246bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Prestige Luxury Cleanings LLC\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"139cc45f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Landscaping And Garden Care Services\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dc78e71\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"597dc67d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"26cf3840\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b19bda0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"62\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-and-his-flowers.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"980\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a46c929\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c4d8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Public Liability Insurance\",\"_id\":\"a978734\"},{\"text\":\"Environmentally Friendly\",\"_id\":\"1cd10a1\"},{\"text\":\"On Time, Every Time\",\"_id\":\"c6767db\"},{\"text\":\"Beautiful Garden Designs\",\"_id\":\"d4743f4\"},{\"text\":\"Modern Machinery And Tool\",\"_id\":\"535c17d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"398321ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4c7c15d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.9129999999999967030817060731351375579833984375,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5683e90d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"63\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-topiary-job.jpg\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"860\",\"height\":\"980\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b6190b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"64\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden.jpg\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"-59\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"250636f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"713aa588\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"51a71b71\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#00160E\",\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=primary\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=06a34e7\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"st_content_title_color_responsive\":\"#7F7F7F\",\"st_super_color_responsive\":\"#FFD402\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\",\"sg_setting_html_tag\":\"span\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5557874f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"73847855\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"65\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/garden-maintenance-performed-by-pro-gardener.jpg\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"b1058a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":224,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":478,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":325,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"69098afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"40\",\"bottom\":\"80\",\"left\":\"40\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"7cb7bf82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91cb5d9\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26358abf\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Have The Perfect Solution For Your Landscape Problems\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15a36cc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42c8d36c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7114454f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76f24ca8\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Variation Gardening\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"138cc39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28a78a06\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Expert Landscapers\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c5ac2bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38fdb183\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3ce0b95b\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Affordable Price\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-save-money-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4c80f133\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7451fb11\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Free Consultation\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-Consultancy-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e93f2c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"39a46e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6773b2a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"87647bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find The Best Service For Your Garden\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e2cc66e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30164d28\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e8639b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":142,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-services.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fa92c14\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2c434fb3\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"5abe2e18\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33425b9f\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Lawn Services\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"472ed309\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"67cb221c\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37c1cce6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":143,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/driveway-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b3e60ba\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3b291bbf\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"20b91942\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5649f719\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Driveway Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6300b69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"256ddf68\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3735f0b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":144,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/deck-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"741128a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3691562\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3c8a0e6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5eb1b3b9\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Deck Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"25f37292\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"61c9ff8e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d41e618\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"8781ee3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":145,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/weed-control.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd84c7d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"14f7965\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fb2459e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0582197\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Weed Control \",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"f7b0fa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0197d9e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f3de9c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":146,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/grass-feed.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"75ba950\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"23edbf4\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"ad70b3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1c4ac7\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Grass Feed\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6f592ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0043a3b\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e6d8a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":147,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/edging-Cleaning.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd233da\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6535a16\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"937e2e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7aee\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Edging Cleaning\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"d9723d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"c908972\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"790dd775\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"360\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"160\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"140\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"background_overlay_color_b\":\"#000414\",\"background_overlay_image\":{\"id\":\"69\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/a-gardener-watering-plants-in-a-flowerbed-2RT8DWL.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]}},\"elements\":[{\"id\":\"a2ed5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7e37f762\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Landscaping\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a092069\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d5099\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need Someone To Take Care Your Garden & Lawn?\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=07ee36d\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1198756c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"66521a56\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":20,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":4},\"elements\":[{\"id\":\"1a89d099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.5090000000000003410605131648480892181396484375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"id\":\"70\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/happy-gardeners-with-plants-and-lawn-mower.jpg\"},\"background_position\":\"initial\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"space-between\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_color\":\"#FFFFFF00\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":9,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"46b821c1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":219,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":183,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"449971a9\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Make Appointment & Take Care Your Garden\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=secondary\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=93191b3\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_content_title_color_hover_responsive\":\"#FFFFFF\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#FFFFFF\",\"st_icon_color_responsive\":\"#00E5CC\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#00E5CC\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":false},{\"id\":\"13747b6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.4909999999999996589394868351519107818603515625,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a13f42e\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"260***1635696832144\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fde8487\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"59883b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1617542a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Process\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29c7aa96\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Complete Every Step Carefully\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ced0d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d62463d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18cf7834\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"41f79872\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-consult-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consultation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65e1b761\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"span\",\"title_color\":\"#FFD402\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#006943\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12cdbf13\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4175d29\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-pencil_art-light\",\"library\":\"jkiticon\"},\"title_text\":\"Design Installation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2adabf01\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b628\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"569b3221\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consturction \",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"67d6b2e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6fff79c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53c9a76e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"title_text\":\"Finished Work\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"555aace0\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d57540b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"71\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardening-background-with-garden-tolls-A9BGNJU.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]}},\"elements\":[{\"id\":\"147831a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"5a53d120\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"20\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Years of Experience\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"488f4727\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"6b8f6eae\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"76666759\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f532f9e\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"2850\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Happy Customers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"265fd738\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5473dc22\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"64\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Expert Landscapers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b38731e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4945f2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"627cd42c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65e3182\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.56499999999999772626324556767940521240234375},\"elements\":[{\"id\":\"43108b53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Projects\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45328989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Project We Have Done\\n\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"f382082\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.49900000000000233058017329312860965728759765625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":40,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"55ecfb57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"67afcbfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.0330000000000012505552149377763271331787109375,\"_inline_size_tablet\":23,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4989aa04\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Projects\",\"align\":\"right\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"left\",\"hover_animation\":\"float\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"32515d84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"3f5753f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"21982cfb\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"72\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-pruning-and-shaping-bushes-.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Cutting Leaf\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"404dc561\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"58d29b54\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"73\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/backyard-garden.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Home Garden\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"3bff1dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"3c24185a\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"64\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Build Backyard\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_image_height_responsive_tablet\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b3cb58d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_image\":{\"id\":\"74\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-moving-aerial-photo-Z8KDGJ9.jpg\"},\"background_overlay_color\":\"#0000007D\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]}},\"elements\":[{\"id\":\"79705206\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"51c9a732\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73b2fe0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"What They Says About Us\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4876e632\",\"elType\":\"widget\",\"settings\":{\"sg_layout_testimonial_choose\":\"style-2\",\"sg_testimonials_image_size_imagesize_size\":\"medium\",\"sg_testimonials_list\":[{\"sg_testimonials_list_client_avatar\":{\"id\":\"75\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/3SUMAU.jpg\"},\"_id\":\"6e9b2e1\",\"sg_testimonials_list_client_name\":\"Regan Traynor\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"76\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/CASCKD8.jpg\"},\"sg_testimonials_list_client_name\":\"Maisha Dunn\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"d069a43\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"77\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/MKLVKTE.jpg\"},\"sg_testimonials_list_client_name\":\"Reis Leonard\",\"sg_testimonials_list_designation\":\"Businessman\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"05c24f5\"}],\"st_wrapper_alignment_responsive\":\"left\",\"st_client_name_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_description_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_client_name_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_client_designation_normal_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_client_designation_normal_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=d343bdf\",\"st_rating_color_responsive\":\"\",\"st_client_name_normal_color_responsive\":\"\",\"st_quote_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_layout_background_background_color\":\"\"},\"st_layout_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_layout_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_wrapper_fix_height\":\"\",\"sg_setting_autoplay\":\"yes\",\"sg_setting_autoplay_pause\":\"\",\"sg_setting_arrow\":\"\",\"sg_setting_arrow_position\":\"middle-edge\",\"sg_setting_dots\":\"\",\"sg_setting_quote\":\"yes\",\"sg_setting_rating\":\"\",\"st_layout_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_layout_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_slide_show_responsive\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"sg_setting_quote_icon\":{\"value\":\"jki jki-quote-light\",\"library\":\"jkiticon\"},\"sg_layout_image_position\":\"below\",\"st_layout_background_background_background\":\"classic\",\"st_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position\":\"\",\"st_quote_override_position_top_responsive\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"st_quote_override_position_left_responsive\":{\"unit\":\"px\",\"size\":442,\"sizes\":[]},\"st_client_name_normal_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_quote_normal_font_size_responsive\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"st_client_image_margin_responsive\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_rating_font_size_responsive\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"st_rating_margin_right_responsive\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_setting_slide_show_responsive_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"st_wrapper_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position_top_responsive_tablet\":{\"unit\":\"px\",\"size\":249,\"sizes\":[]},\"st_quote_override_position_top_responsive_mobile\":{\"unit\":\"px\",\"size\":193,\"sizes\":[]},\"st_quote_override_position_left_responsive_tablet\":{\"unit\":\"px\",\"size\":265,\"sizes\":[]},\"st_quote_override_position_left_responsive_mobile\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]},\"st_quote_normal_font_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"st_description_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_normal_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64afd05f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"746d276b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30338dfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f950be4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ca735b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5d6ca3ad\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_title_hover_color_responsive\":\"globals\\/colors?id=secondary\",\"st_readmore_hover_color_responsive\":\"globals\\/colors?id=secondary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#646974\",\"st_excerpt_color_responsive\":\"#646974\",\"st_title_normal_color_responsive\":\"#272B36\",\"st_thumbnail_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_title_hover_color_responsive\":\"#FA8D25\",\"st_readmore_normal_color_responsive\":\"#FA8D25\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":false}],\"isInner\":false}]'),(867,161,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(868,162,'_wp_attached_file','2024/07/gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w.jpg'),(869,162,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:860;s:6:\"height\";i:980;s:4:\"file\";s:75:\"2024/07/gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w.jpg\";s:8:\"filesize\";i:559341;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:75:\"gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w-263x300.jpg\";s:5:\"width\";i:263;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22101;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:75:\"gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8397;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:75:\"gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w-768x875.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:875;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:110561;}s:24:\"elementor_custom_860x980\";a:4:{s:4:\"file\";s:127:\"elementor/thumbs/gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w-qrl2p7z21jtxqssdrx78agebvoatzapb7vcft0rda8.jpg\";s:5:\"width\";i:860;s:6:\"height\";i:980;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(870,163,'_wp_attached_file','2024/07/gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68.jpg'),(871,163,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:820;s:6:\"height\";i:1024;s:4:\"file\";s:94:\"2024/07/gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68.jpg\";s:8:\"filesize\";i:693288;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:94:\"gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68-240x300.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16882;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:94:\"gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6677;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:94:\"gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68-768x959.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:959;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:125422;}s:25:\"elementor_custom_820x1024\";a:4:{s:4:\"file\";s:146:\"elementor/thumbs/gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68-qrl2p9upxoeexk0k5a5ojs346c98tc32x514fczlkw.jpg\";s:5:\"width\";i:820;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(872,164,'_elementor_edit_mode','builder'),(873,164,'_elementor_template_type','wp-page'),(874,164,'_elementor_version','3.23.2'),(875,164,'_wp_page_template','default'),(876,164,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(877,164,'_elementor_data','[{\"id\":\"35495243\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"Eldery male gardener using scissors for bushes\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"160\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0,\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_size_tablet\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"top center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00160E\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b\":\"#00000054\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_slideshow_gallery\":[{\"id\":154,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-02-5.jpg\"},{\"id\":155,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-03-3.jpg\"},{\"id\":156,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-04-3.jpg\"},{\"id\":157,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-01-5.jpg\"}]},\"elements\":[{\"id\":\"739a26d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":65,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=06a34e7\"}},\"elements\":[{\"id\":\"132d1a8e\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Complete For All\",\"sg_title_focused\":\" Landscape \",\"sg_title_after\":\" Service And Maintenance\",\"sg_title_html_tag\":\"h1\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=primary\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"7c49583a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"635cb25b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"23cf340e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37.85499999999999687361196265555918216705322265625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":48,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"1c4c950d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4768b6f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":62.14500000000000312638803734444081783294677734375,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"flex-start\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":52,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"34c0badb\",\"elType\":\"widget\",\"settings\":{\"sg_video_button_title\":\"Play Video\",\"sg_video_button_icon\":{\"value\":\"jki jki-play\",\"library\":\"jkiticon\"},\"sg_video_url\":\"#\",\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_width_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_line_height_responsive\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#FFD402\",\"st_button_normal_glow_color_responsive\":\"#00694361\",\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"_element_width\":\"auto\",\"__globals__\":{\"st_button_normal_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=accent\",\"st_border_normal_border_border_color\":\"\",\"st_button_hover_text_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_glow_color_responsive\":\"\"},\"st_button_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_button_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_width_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_line_height_responsive_mobile\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"st_border_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_border_normal_border_border_color\":\"#FFD027\",\"st_button_line_height_responsive_tablet\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"st_button_normal_background_background_color\":\"#006943\",\"st_button_hover_text_color_responsive\":\"#006943\",\"st_button_hover_background_background_color\":\"#FFD402\",\"sg_video_auto_play\":\"\",\"sg_video_mute\":\"\"},\"elements\":[],\"widgetType\":\"jkit_video_button\"},{\"id\":\"232ec8da\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Intro\",\"align\":\"right\",\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"hide_mobile\":\"hidden-mobile\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#00160E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49b348ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"edc2dbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.00200000000000244426701101474463939666748046875,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e2246bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Prestige Luxury Cleanings LLC\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"139cc45f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Landscaping And Garden Care Services\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dc78e71\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"597dc67d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"26cf3840\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b19bda0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"62\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-and-his-flowers.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"980\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a46c929\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c4d8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Public Liability Insurance\",\"_id\":\"a978734\"},{\"text\":\"Environmentally Friendly\",\"_id\":\"1cd10a1\"},{\"text\":\"On Time, Every Time\",\"_id\":\"c6767db\"},{\"text\":\"Beautiful Garden Designs\",\"_id\":\"d4743f4\"},{\"text\":\"Modern Machinery And Tool\",\"_id\":\"535c17d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"398321ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4c7c15d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.9129999999999967030817060731351375579833984375,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5683e90d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"63\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-topiary-job.jpg\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"860\",\"height\":\"980\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b6190b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"64\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden.jpg\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"-59\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"250636f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"713aa588\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"51a71b71\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#00160E\",\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=primary\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=06a34e7\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"st_content_title_color_responsive\":\"#7F7F7F\",\"st_super_color_responsive\":\"#FFD402\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\",\"sg_setting_html_tag\":\"span\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5557874f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"73847855\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"65\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/garden-maintenance-performed-by-pro-gardener.jpg\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"b1058a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":224,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":478,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":325,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"69098afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"40\",\"bottom\":\"80\",\"left\":\"40\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"7cb7bf82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91cb5d9\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26358abf\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Have The Perfect Solution For Your Landscape Problems\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15a36cc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42c8d36c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7114454f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76f24ca8\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Variation Gardening\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"138cc39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28a78a06\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Expert Landscapers\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c5ac2bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38fdb183\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3ce0b95b\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Affordable Price\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-save-money-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4c80f133\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7451fb11\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Free Consultation\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-Consultancy-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e93f2c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"39a46e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6773b2a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"87647bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find The Best Service For Your Garden\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e2cc66e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30164d28\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e8639b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":142,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-services.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fa92c14\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2c434fb3\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"5abe2e18\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33425b9f\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Lawn Services\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"472ed309\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"67cb221c\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37c1cce6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":143,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/driveway-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b3e60ba\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3b291bbf\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"20b91942\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5649f719\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Driveway Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6300b69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"256ddf68\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3735f0b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":144,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/deck-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"741128a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3691562\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3c8a0e6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5eb1b3b9\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Deck Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"25f37292\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"61c9ff8e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d41e618\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"8781ee3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":145,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/weed-control.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd84c7d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"14f7965\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fb2459e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0582197\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Weed Control \",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"f7b0fa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0197d9e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f3de9c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":146,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/grass-feed.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"75ba950\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"23edbf4\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"ad70b3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1c4ac7\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Grass Feed\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6f592ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0043a3b\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e6d8a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":147,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/edging-Cleaning.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd233da\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6535a16\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"937e2e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7aee\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Edging Cleaning\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"d9723d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"c908972\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"790dd775\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"360\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"160\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"140\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"background_overlay_color_b\":\"#000414\",\"background_overlay_image\":{\"id\":\"69\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/a-gardener-watering-plants-in-a-flowerbed-2RT8DWL.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]}},\"elements\":[{\"id\":\"a2ed5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7e37f762\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Landscaping\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a092069\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d5099\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need Someone To Take Care Your Garden & Lawn?\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=07ee36d\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1198756c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"66521a56\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":20,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":4},\"elements\":[{\"id\":\"1a89d099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.5090000000000003410605131648480892181396484375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"id\":\"70\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/happy-gardeners-with-plants-and-lawn-mower.jpg\"},\"background_position\":\"initial\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"space-between\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_color\":\"#FFFFFF00\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":9,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"46b821c1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":219,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":183,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"449971a9\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Make Appointment & Take Care Your Garden\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=secondary\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=93191b3\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_content_title_color_hover_responsive\":\"#FFFFFF\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#FFFFFF\",\"st_icon_color_responsive\":\"#00E5CC\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#00E5CC\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":false},{\"id\":\"13747b6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.4909999999999996589394868351519107818603515625,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a13f42e\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"260***1635696832144\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fde8487\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"59883b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1617542a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Process\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29c7aa96\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Complete Every Step Carefully\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ced0d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d62463d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18cf7834\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"41f79872\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-consult-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consultation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65e1b761\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"span\",\"title_color\":\"#FFD402\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#006943\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12cdbf13\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4175d29\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-pencil_art-light\",\"library\":\"jkiticon\"},\"title_text\":\"Design Installation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2adabf01\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b628\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"569b3221\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consturction \",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"67d6b2e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6fff79c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53c9a76e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"title_text\":\"Finished Work\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"555aace0\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d57540b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"71\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardening-background-with-garden-tolls-A9BGNJU.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]}},\"elements\":[{\"id\":\"147831a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"5a53d120\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"20\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Years of Experience\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"488f4727\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"6b8f6eae\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"76666759\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f532f9e\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"2850\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Happy Customers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"265fd738\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5473dc22\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"64\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Expert Landscapers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b38731e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4945f2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"627cd42c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65e3182\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.56499999999999772626324556767940521240234375},\"elements\":[{\"id\":\"43108b53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Projects\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45328989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Project We Have Done\\n\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"f382082\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.49900000000000233058017329312860965728759765625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":40,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"55ecfb57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"67afcbfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.0330000000000012505552149377763271331787109375,\"_inline_size_tablet\":23,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4989aa04\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Projects\",\"align\":\"right\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"left\",\"hover_animation\":\"float\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"32515d84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"3f5753f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"21982cfb\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"72\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-pruning-and-shaping-bushes-.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Cutting Leaf\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"404dc561\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"58d29b54\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"73\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/backyard-garden.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Home Garden\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"3bff1dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"3c24185a\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"64\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Build Backyard\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_image_height_responsive_tablet\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b3cb58d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_image\":{\"id\":\"74\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-moving-aerial-photo-Z8KDGJ9.jpg\"},\"background_overlay_color\":\"#0000007D\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]}},\"elements\":[{\"id\":\"79705206\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"51c9a732\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73b2fe0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"What They Says About Us\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4876e632\",\"elType\":\"widget\",\"settings\":{\"sg_layout_testimonial_choose\":\"style-2\",\"sg_testimonials_image_size_imagesize_size\":\"medium\",\"sg_testimonials_list\":[{\"sg_testimonials_list_client_avatar\":{\"id\":\"75\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/3SUMAU.jpg\"},\"_id\":\"6e9b2e1\",\"sg_testimonials_list_client_name\":\"Regan Traynor\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"76\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/CASCKD8.jpg\"},\"sg_testimonials_list_client_name\":\"Maisha Dunn\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"d069a43\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"77\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/MKLVKTE.jpg\"},\"sg_testimonials_list_client_name\":\"Reis Leonard\",\"sg_testimonials_list_designation\":\"Businessman\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"05c24f5\"}],\"st_wrapper_alignment_responsive\":\"left\",\"st_client_name_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_description_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_client_name_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_client_designation_normal_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_client_designation_normal_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=d343bdf\",\"st_rating_color_responsive\":\"\",\"st_client_name_normal_color_responsive\":\"\",\"st_quote_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_layout_background_background_color\":\"\"},\"st_layout_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_layout_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_wrapper_fix_height\":\"\",\"sg_setting_autoplay\":\"yes\",\"sg_setting_autoplay_pause\":\"\",\"sg_setting_arrow\":\"\",\"sg_setting_arrow_position\":\"middle-edge\",\"sg_setting_dots\":\"\",\"sg_setting_quote\":\"yes\",\"sg_setting_rating\":\"\",\"st_layout_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_layout_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_slide_show_responsive\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"sg_setting_quote_icon\":{\"value\":\"jki jki-quote-light\",\"library\":\"jkiticon\"},\"sg_layout_image_position\":\"below\",\"st_layout_background_background_background\":\"classic\",\"st_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position\":\"\",\"st_quote_override_position_top_responsive\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"st_quote_override_position_left_responsive\":{\"unit\":\"px\",\"size\":442,\"sizes\":[]},\"st_client_name_normal_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_quote_normal_font_size_responsive\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"st_client_image_margin_responsive\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_rating_font_size_responsive\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"st_rating_margin_right_responsive\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_setting_slide_show_responsive_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"st_wrapper_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position_top_responsive_tablet\":{\"unit\":\"px\",\"size\":249,\"sizes\":[]},\"st_quote_override_position_top_responsive_mobile\":{\"unit\":\"px\",\"size\":193,\"sizes\":[]},\"st_quote_override_position_left_responsive_tablet\":{\"unit\":\"px\",\"size\":265,\"sizes\":[]},\"st_quote_override_position_left_responsive_mobile\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]},\"st_quote_normal_font_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"st_description_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_normal_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64afd05f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"746d276b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30338dfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f950be4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ca735b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5d6ca3ad\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_title_hover_color_responsive\":\"globals\\/colors?id=secondary\",\"st_readmore_hover_color_responsive\":\"globals\\/colors?id=secondary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#646974\",\"st_excerpt_color_responsive\":\"#646974\",\"st_title_normal_color_responsive\":\"#272B36\",\"st_thumbnail_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_title_hover_color_responsive\":\"#FA8D25\",\"st_readmore_normal_color_responsive\":\"#FA8D25\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":false}],\"isInner\":false}]'),(878,164,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(879,165,'_elementor_edit_mode','builder'),(880,165,'_elementor_template_type','wp-page'),(881,165,'_elementor_version','3.23.2'),(882,165,'_wp_page_template','default'),(883,165,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(884,165,'_elementor_data','[{\"id\":\"35495243\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"Eldery male gardener using scissors for bushes\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"160\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0,\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_size_tablet\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"top center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00160E\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b\":\"#00000054\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_slideshow_gallery\":[{\"id\":154,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-02-5.jpg\"},{\"id\":155,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-03-3.jpg\"},{\"id\":156,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-04-3.jpg\"},{\"id\":157,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-01-5.jpg\"}]},\"elements\":[{\"id\":\"739a26d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":65,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=06a34e7\"}},\"elements\":[{\"id\":\"132d1a8e\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Complete For All\",\"sg_title_focused\":\" Landscape \",\"sg_title_after\":\" Service And Maintenance\",\"sg_title_html_tag\":\"h1\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=primary\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"7c49583a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"635cb25b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"23cf340e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37.85499999999999687361196265555918216705322265625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":48,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"1c4c950d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4768b6f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":62.14500000000000312638803734444081783294677734375,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"flex-start\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":52,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"34c0badb\",\"elType\":\"widget\",\"settings\":{\"sg_video_button_title\":\"Play Video\",\"sg_video_button_icon\":{\"value\":\"jki jki-play\",\"library\":\"jkiticon\"},\"sg_video_url\":\"#\",\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_width_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_line_height_responsive\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#FFD402\",\"st_button_normal_glow_color_responsive\":\"#00694361\",\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"_element_width\":\"auto\",\"__globals__\":{\"st_button_normal_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=accent\",\"st_border_normal_border_border_color\":\"\",\"st_button_hover_text_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_glow_color_responsive\":\"\"},\"st_button_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_button_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_width_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_line_height_responsive_mobile\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"st_border_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_border_normal_border_border_color\":\"#FFD027\",\"st_button_line_height_responsive_tablet\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"st_button_normal_background_background_color\":\"#006943\",\"st_button_hover_text_color_responsive\":\"#006943\",\"st_button_hover_background_background_color\":\"#FFD402\",\"sg_video_auto_play\":\"\",\"sg_video_mute\":\"\"},\"elements\":[],\"widgetType\":\"jkit_video_button\"},{\"id\":\"232ec8da\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Intro\",\"align\":\"right\",\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"hide_mobile\":\"hidden-mobile\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#00160E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49b348ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"edc2dbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.00200000000000244426701101474463939666748046875,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e2246bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Prestige Luxury Cleanings LLC\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"139cc45f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Landscaping And Garden Care Services\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dc78e71\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"597dc67d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"26cf3840\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b19bda0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"62\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-and-his-flowers.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"980\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a46c929\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c4d8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Public Liability Insurance\",\"_id\":\"a978734\"},{\"text\":\"Environmentally Friendly\",\"_id\":\"1cd10a1\"},{\"text\":\"On Time, Every Time\",\"_id\":\"c6767db\"},{\"text\":\"Beautiful Garden Designs\",\"_id\":\"d4743f4\"},{\"text\":\"Modern Machinery And Tool\",\"_id\":\"535c17d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"398321ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4c7c15d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.9129999999999967030817060731351375579833984375,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5683e90d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"63\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-topiary-job.jpg\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"860\",\"height\":\"980\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b6190b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"64\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden.jpg\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"-59\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"250636f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"713aa588\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"51a71b71\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#00160E\",\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=primary\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=06a34e7\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"st_content_title_color_responsive\":\"#7F7F7F\",\"st_super_color_responsive\":\"#FFD402\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\",\"sg_setting_html_tag\":\"span\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5557874f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"73847855\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"65\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/garden-maintenance-performed-by-pro-gardener.jpg\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"b1058a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":224,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":478,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":325,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"69098afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"40\",\"bottom\":\"80\",\"left\":\"40\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"7cb7bf82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91cb5d9\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26358abf\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Have The Perfect Solution For Your Landscape Problems\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15a36cc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42c8d36c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7114454f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76f24ca8\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Variation Gardening\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"138cc39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28a78a06\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Expert Landscapers\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c5ac2bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38fdb183\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3ce0b95b\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Affordable Price\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-save-money-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4c80f133\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7451fb11\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Free Consultation\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-Consultancy-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e93f2c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"39a46e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6773b2a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"87647bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find The Best Service For Your Garden\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e2cc66e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30164d28\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e8639b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":142,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-services.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fa92c14\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2c434fb3\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"5abe2e18\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33425b9f\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Lawn Services\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"472ed309\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"67cb221c\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37c1cce6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":143,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/driveway-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b3e60ba\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3b291bbf\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"20b91942\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5649f719\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Driveway Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6300b69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"256ddf68\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3735f0b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":144,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/deck-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"741128a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3691562\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3c8a0e6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5eb1b3b9\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Deck Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"25f37292\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"61c9ff8e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d41e618\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"8781ee3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":145,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/weed-control.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd84c7d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"14f7965\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fb2459e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0582197\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Weed Control \",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"f7b0fa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0197d9e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f3de9c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":146,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/grass-feed.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"75ba950\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"23edbf4\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"ad70b3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1c4ac7\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Grass Feed\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6f592ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0043a3b\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e6d8a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":147,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/edging-Cleaning.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd233da\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6535a16\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"937e2e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7aee\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Edging Cleaning\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"d9723d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"c908972\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"790dd775\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"360\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"160\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"140\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"background_overlay_color_b\":\"#000414\",\"background_overlay_image\":{\"id\":\"69\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/a-gardener-watering-plants-in-a-flowerbed-2RT8DWL.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]}},\"elements\":[{\"id\":\"a2ed5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7e37f762\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Landscaping\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a092069\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d5099\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need Someone To Take Care Your Garden & Lawn?\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=07ee36d\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1198756c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"66521a56\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":20,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":4},\"elements\":[{\"id\":\"1a89d099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.5090000000000003410605131648480892181396484375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"id\":\"70\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/happy-gardeners-with-plants-and-lawn-mower.jpg\"},\"background_position\":\"initial\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"space-between\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_color\":\"#FFFFFF00\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":9,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"46b821c1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":219,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":183,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"449971a9\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Make Appointment & Take Care Your Garden\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=secondary\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=93191b3\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_content_title_color_hover_responsive\":\"#FFFFFF\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#FFFFFF\",\"st_icon_color_responsive\":\"#00E5CC\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#00E5CC\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":false},{\"id\":\"13747b6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.4909999999999996589394868351519107818603515625,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a13f42e\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"260***1635696832144\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fde8487\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"59883b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1617542a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Process\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29c7aa96\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Complete Every Step Carefully\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ced0d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d62463d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18cf7834\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"41f79872\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-consult-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consultation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65e1b761\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"span\",\"title_color\":\"#FFD402\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#006943\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12cdbf13\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4175d29\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-pencil_art-light\",\"library\":\"jkiticon\"},\"title_text\":\"Design Installation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2adabf01\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b628\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"569b3221\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consturction \",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"67d6b2e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6fff79c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53c9a76e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"title_text\":\"Finished Work\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"555aace0\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d57540b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"71\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardening-background-with-garden-tolls-A9BGNJU.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]}},\"elements\":[{\"id\":\"147831a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"5a53d120\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"20\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Years of Experience\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"488f4727\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"6b8f6eae\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"76666759\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f532f9e\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"2850\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Happy Customers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"265fd738\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5473dc22\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"64\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Expert Landscapers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b38731e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4945f2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"627cd42c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65e3182\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.56499999999999772626324556767940521240234375},\"elements\":[{\"id\":\"43108b53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Projects\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45328989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Project We Have Done\\n\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"f382082\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.49900000000000233058017329312860965728759765625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":40,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"55ecfb57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"67afcbfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.0330000000000012505552149377763271331787109375,\"_inline_size_tablet\":23,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4989aa04\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Projects\",\"align\":\"right\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"left\",\"hover_animation\":\"float\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"32515d84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"3f5753f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"21982cfb\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"72\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-pruning-and-shaping-bushes-.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Cutting Leaf\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"404dc561\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"58d29b54\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"73\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/backyard-garden.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Home Garden\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"3bff1dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"3c24185a\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"64\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Build Backyard\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_image_height_responsive_tablet\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b3cb58d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_image\":{\"id\":\"74\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-moving-aerial-photo-Z8KDGJ9.jpg\"},\"background_overlay_color\":\"#0000007D\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]}},\"elements\":[{\"id\":\"79705206\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"51c9a732\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73b2fe0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"What They Says About Us\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4876e632\",\"elType\":\"widget\",\"settings\":{\"sg_layout_testimonial_choose\":\"style-2\",\"sg_testimonials_image_size_imagesize_size\":\"medium\",\"sg_testimonials_list\":[{\"sg_testimonials_list_client_avatar\":{\"id\":\"75\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/3SUMAU.jpg\"},\"_id\":\"6e9b2e1\",\"sg_testimonials_list_client_name\":\"Regan Traynor\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"76\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/CASCKD8.jpg\"},\"sg_testimonials_list_client_name\":\"Maisha Dunn\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"d069a43\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"77\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/MKLVKTE.jpg\"},\"sg_testimonials_list_client_name\":\"Reis Leonard\",\"sg_testimonials_list_designation\":\"Businessman\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"05c24f5\"}],\"st_wrapper_alignment_responsive\":\"left\",\"st_client_name_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_description_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_client_name_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_client_designation_normal_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_client_designation_normal_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=d343bdf\",\"st_rating_color_responsive\":\"\",\"st_client_name_normal_color_responsive\":\"\",\"st_quote_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_layout_background_background_color\":\"\"},\"st_layout_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_layout_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_wrapper_fix_height\":\"\",\"sg_setting_autoplay\":\"yes\",\"sg_setting_autoplay_pause\":\"\",\"sg_setting_arrow\":\"\",\"sg_setting_arrow_position\":\"middle-edge\",\"sg_setting_dots\":\"\",\"sg_setting_quote\":\"yes\",\"sg_setting_rating\":\"\",\"st_layout_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_layout_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_slide_show_responsive\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"sg_setting_quote_icon\":{\"value\":\"jki jki-quote-light\",\"library\":\"jkiticon\"},\"sg_layout_image_position\":\"below\",\"st_layout_background_background_background\":\"classic\",\"st_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position\":\"\",\"st_quote_override_position_top_responsive\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"st_quote_override_position_left_responsive\":{\"unit\":\"px\",\"size\":442,\"sizes\":[]},\"st_client_name_normal_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_quote_normal_font_size_responsive\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"st_client_image_margin_responsive\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_rating_font_size_responsive\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"st_rating_margin_right_responsive\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_setting_slide_show_responsive_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"st_wrapper_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position_top_responsive_tablet\":{\"unit\":\"px\",\"size\":249,\"sizes\":[]},\"st_quote_override_position_top_responsive_mobile\":{\"unit\":\"px\",\"size\":193,\"sizes\":[]},\"st_quote_override_position_left_responsive_tablet\":{\"unit\":\"px\",\"size\":265,\"sizes\":[]},\"st_quote_override_position_left_responsive_mobile\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]},\"st_quote_normal_font_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"st_description_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_normal_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64afd05f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"746d276b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30338dfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f950be4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ca735b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5d6ca3ad\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_title_hover_color_responsive\":\"globals\\/colors?id=secondary\",\"st_readmore_hover_color_responsive\":\"globals\\/colors?id=secondary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#646974\",\"st_excerpt_color_responsive\":\"#646974\",\"st_title_normal_color_responsive\":\"#272B36\",\"st_thumbnail_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_title_hover_color_responsive\":\"#FA8D25\",\"st_readmore_normal_color_responsive\":\"#FA8D25\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":false}],\"isInner\":false}]'),(885,165,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(886,166,'_elementor_edit_mode','builder'),(887,166,'_elementor_template_type','wp-page'),(888,166,'_elementor_version','3.23.2'),(889,166,'_wp_page_template','default'),(890,166,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(891,166,'_elementor_data','[{\"id\":\"35495243\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"Eldery male gardener using scissors for bushes\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"160\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0,\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_size_tablet\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"top center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00160E\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b\":\"#00000054\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_slideshow_gallery\":[{\"id\":154,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-02-5.jpg\"},{\"id\":155,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-03-3.jpg\"},{\"id\":156,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-04-3.jpg\"},{\"id\":157,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-01-5.jpg\"}]},\"elements\":[{\"id\":\"739a26d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":65,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=06a34e7\"}},\"elements\":[{\"id\":\"132d1a8e\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Complete For All\",\"sg_title_focused\":\" Landscape \",\"sg_title_after\":\" Service And Maintenance\",\"sg_title_html_tag\":\"h1\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=primary\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"7c49583a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"635cb25b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"23cf340e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37.85499999999999687361196265555918216705322265625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":48,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"1c4c950d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4768b6f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":62.14500000000000312638803734444081783294677734375,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"flex-start\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":52,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"34c0badb\",\"elType\":\"widget\",\"settings\":{\"sg_video_button_title\":\"Play Video\",\"sg_video_button_icon\":{\"value\":\"jki jki-play\",\"library\":\"jkiticon\"},\"sg_video_url\":\"#\",\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_width_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_line_height_responsive\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#FFD402\",\"st_button_normal_glow_color_responsive\":\"#00694361\",\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"_element_width\":\"auto\",\"__globals__\":{\"st_button_normal_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=accent\",\"st_border_normal_border_border_color\":\"\",\"st_button_hover_text_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_glow_color_responsive\":\"\"},\"st_button_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_button_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_width_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_line_height_responsive_mobile\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"st_border_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_border_normal_border_border_color\":\"#FFD027\",\"st_button_line_height_responsive_tablet\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"st_button_normal_background_background_color\":\"#006943\",\"st_button_hover_text_color_responsive\":\"#006943\",\"st_button_hover_background_background_color\":\"#FFD402\",\"sg_video_auto_play\":\"\",\"sg_video_mute\":\"\"},\"elements\":[],\"widgetType\":\"jkit_video_button\"},{\"id\":\"232ec8da\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Intro\",\"align\":\"right\",\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"hide_mobile\":\"hidden-mobile\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#00160E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49b348ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"edc2dbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.00200000000000244426701101474463939666748046875,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e2246bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Prestige Luxury Cleanings LLC\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"139cc45f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Landscaping And Garden Care Services\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dc78e71\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"597dc67d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"26cf3840\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b19bda0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"62\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-and-his-flowers.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"980\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a46c929\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c4d8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Public Liability Insurance\",\"_id\":\"a978734\"},{\"text\":\"Environmentally Friendly\",\"_id\":\"1cd10a1\"},{\"text\":\"On Time, Every Time\",\"_id\":\"c6767db\"},{\"text\":\"Beautiful Garden Designs\",\"_id\":\"d4743f4\"},{\"text\":\"Modern Machinery And Tool\",\"_id\":\"535c17d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"398321ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4c7c15d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.9129999999999967030817060731351375579833984375,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5683e90d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":162,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"860\",\"height\":\"980\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b6190b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":163,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"-59\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"250636f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"713aa588\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"51a71b71\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#00160E\",\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=primary\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=06a34e7\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"st_content_title_color_responsive\":\"#7F7F7F\",\"st_super_color_responsive\":\"#FFD402\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\",\"sg_setting_html_tag\":\"span\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5557874f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"73847855\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"65\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/garden-maintenance-performed-by-pro-gardener.jpg\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"b1058a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":224,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":478,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":325,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"69098afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"40\",\"bottom\":\"80\",\"left\":\"40\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"7cb7bf82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91cb5d9\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26358abf\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Have The Perfect Solution For Your Landscape Problems\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15a36cc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42c8d36c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7114454f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76f24ca8\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Variation Gardening\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"138cc39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28a78a06\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Expert Landscapers\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c5ac2bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38fdb183\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3ce0b95b\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Affordable Price\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-save-money-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4c80f133\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7451fb11\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Free Consultation\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-Consultancy-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e93f2c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"39a46e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6773b2a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"87647bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find The Best Service For Your Garden\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e2cc66e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30164d28\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e8639b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":142,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-services.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fa92c14\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2c434fb3\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"5abe2e18\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33425b9f\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Lawn Services\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"472ed309\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"67cb221c\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37c1cce6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":143,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/driveway-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b3e60ba\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3b291bbf\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"20b91942\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5649f719\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Driveway Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6300b69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"256ddf68\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3735f0b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":144,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/deck-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"741128a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3691562\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3c8a0e6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5eb1b3b9\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Deck Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"25f37292\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"61c9ff8e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d41e618\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"8781ee3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":145,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/weed-control.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd84c7d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"14f7965\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fb2459e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0582197\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Weed Control \",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"f7b0fa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0197d9e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f3de9c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":146,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/grass-feed.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"75ba950\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"23edbf4\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"ad70b3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1c4ac7\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Grass Feed\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6f592ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0043a3b\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e6d8a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":147,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/edging-Cleaning.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd233da\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6535a16\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"937e2e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7aee\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Edging Cleaning\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"d9723d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"c908972\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"790dd775\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"360\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"160\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"140\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"background_overlay_color_b\":\"#000414\",\"background_overlay_image\":{\"id\":\"69\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/a-gardener-watering-plants-in-a-flowerbed-2RT8DWL.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]}},\"elements\":[{\"id\":\"a2ed5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7e37f762\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Landscaping\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a092069\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d5099\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need Someone To Take Care Your Garden & Lawn?\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=07ee36d\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1198756c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"66521a56\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":20,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":4},\"elements\":[{\"id\":\"1a89d099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.5090000000000003410605131648480892181396484375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"id\":\"70\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/happy-gardeners-with-plants-and-lawn-mower.jpg\"},\"background_position\":\"initial\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"space-between\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_color\":\"#FFFFFF00\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":9,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"46b821c1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":219,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":183,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"449971a9\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Make Appointment & Take Care Your Garden\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=secondary\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=93191b3\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_content_title_color_hover_responsive\":\"#FFFFFF\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#FFFFFF\",\"st_icon_color_responsive\":\"#00E5CC\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#00E5CC\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":false},{\"id\":\"13747b6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.4909999999999996589394868351519107818603515625,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a13f42e\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"260***1635696832144\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fde8487\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"59883b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1617542a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Process\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29c7aa96\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Complete Every Step Carefully\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ced0d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d62463d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18cf7834\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"41f79872\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-consult-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consultation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65e1b761\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"span\",\"title_color\":\"#FFD402\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#006943\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12cdbf13\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4175d29\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-pencil_art-light\",\"library\":\"jkiticon\"},\"title_text\":\"Design Installation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2adabf01\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b628\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"569b3221\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consturction \",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"67d6b2e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6fff79c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53c9a76e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"title_text\":\"Finished Work\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"555aace0\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d57540b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"71\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardening-background-with-garden-tolls-A9BGNJU.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]}},\"elements\":[{\"id\":\"147831a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"5a53d120\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"20\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Years of Experience\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"488f4727\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"6b8f6eae\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"76666759\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f532f9e\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"2850\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Happy Customers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"265fd738\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5473dc22\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"64\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Expert Landscapers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b38731e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4945f2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"627cd42c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65e3182\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.56499999999999772626324556767940521240234375},\"elements\":[{\"id\":\"43108b53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Projects\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45328989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Project We Have Done\\n\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"f382082\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.49900000000000233058017329312860965728759765625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":40,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"55ecfb57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"67afcbfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.0330000000000012505552149377763271331787109375,\"_inline_size_tablet\":23,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4989aa04\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Projects\",\"align\":\"right\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"left\",\"hover_animation\":\"float\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"32515d84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"3f5753f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"21982cfb\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"72\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-pruning-and-shaping-bushes-.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Cutting Leaf\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"404dc561\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"58d29b54\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"73\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/backyard-garden.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Home Garden\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"3bff1dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"3c24185a\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"64\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Build Backyard\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_image_height_responsive_tablet\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b3cb58d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_image\":{\"id\":\"74\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-moving-aerial-photo-Z8KDGJ9.jpg\"},\"background_overlay_color\":\"#0000007D\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]}},\"elements\":[{\"id\":\"79705206\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"51c9a732\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73b2fe0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"What They Says About Us\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4876e632\",\"elType\":\"widget\",\"settings\":{\"sg_layout_testimonial_choose\":\"style-2\",\"sg_testimonials_image_size_imagesize_size\":\"medium\",\"sg_testimonials_list\":[{\"sg_testimonials_list_client_avatar\":{\"id\":\"75\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/3SUMAU.jpg\"},\"_id\":\"6e9b2e1\",\"sg_testimonials_list_client_name\":\"Regan Traynor\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"76\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/CASCKD8.jpg\"},\"sg_testimonials_list_client_name\":\"Maisha Dunn\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"d069a43\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"77\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/MKLVKTE.jpg\"},\"sg_testimonials_list_client_name\":\"Reis Leonard\",\"sg_testimonials_list_designation\":\"Businessman\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"05c24f5\"}],\"st_wrapper_alignment_responsive\":\"left\",\"st_client_name_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_description_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_client_name_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_client_designation_normal_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_client_designation_normal_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=d343bdf\",\"st_rating_color_responsive\":\"\",\"st_client_name_normal_color_responsive\":\"\",\"st_quote_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_layout_background_background_color\":\"\"},\"st_layout_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_layout_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_wrapper_fix_height\":\"\",\"sg_setting_autoplay\":\"yes\",\"sg_setting_autoplay_pause\":\"\",\"sg_setting_arrow\":\"\",\"sg_setting_arrow_position\":\"middle-edge\",\"sg_setting_dots\":\"\",\"sg_setting_quote\":\"yes\",\"sg_setting_rating\":\"\",\"st_layout_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_layout_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_slide_show_responsive\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"sg_setting_quote_icon\":{\"value\":\"jki jki-quote-light\",\"library\":\"jkiticon\"},\"sg_layout_image_position\":\"below\",\"st_layout_background_background_background\":\"classic\",\"st_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position\":\"\",\"st_quote_override_position_top_responsive\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"st_quote_override_position_left_responsive\":{\"unit\":\"px\",\"size\":442,\"sizes\":[]},\"st_client_name_normal_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_quote_normal_font_size_responsive\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"st_client_image_margin_responsive\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_rating_font_size_responsive\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"st_rating_margin_right_responsive\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_setting_slide_show_responsive_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"st_wrapper_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position_top_responsive_tablet\":{\"unit\":\"px\",\"size\":249,\"sizes\":[]},\"st_quote_override_position_top_responsive_mobile\":{\"unit\":\"px\",\"size\":193,\"sizes\":[]},\"st_quote_override_position_left_responsive_tablet\":{\"unit\":\"px\",\"size\":265,\"sizes\":[]},\"st_quote_override_position_left_responsive_mobile\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]},\"st_quote_normal_font_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"st_description_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_normal_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64afd05f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"746d276b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30338dfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f950be4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ca735b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5d6ca3ad\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_title_hover_color_responsive\":\"globals\\/colors?id=secondary\",\"st_readmore_hover_color_responsive\":\"globals\\/colors?id=secondary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#646974\",\"st_excerpt_color_responsive\":\"#646974\",\"st_title_normal_color_responsive\":\"#272B36\",\"st_thumbnail_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_title_hover_color_responsive\":\"#FA8D25\",\"st_readmore_normal_color_responsive\":\"#FA8D25\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":false}],\"isInner\":false}]'),(892,166,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(893,167,'_wp_attached_file','2024/07/gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk.jpg'),(894,167,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:820;s:6:\"height\";i:980;s:4:\"file\";s:79:\"2024/07/gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk.jpg\";s:8:\"filesize\";i:1229505;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:79:\"gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk-251x300.jpg\";s:5:\"width\";i:251;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30353;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:79:\"gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9310;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:79:\"gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk-768x918.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:918;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:225415;}s:24:\"elementor_custom_820x980\";a:4:{s:4:\"file\";s:131:\"elementor/thumbs/gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk-qrl2vbx9z8ooqzl42feg2boumfvr24goqsd4h1xon4.jpg\";s:5:\"width\";i:820;s:6:\"height\";i:980;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(903,169,'_elementor_edit_mode','builder'),(904,169,'_elementor_template_type','section'),(905,169,'_elementor_version','3.23.2'),(906,169,'_elementor_data','[{\"id\":\"6e228428\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0,0,0,0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"21c39bb8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"b5319b5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3f456ad1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1e8cc432\",\"elType\":\"widget\",\"settings\":{\"mf_input_label\":\"Name\",\"mf_input_name\":\"mf-first-name\",\"mf_input_placeholder\":\"Your Name\",\"mf_input_label_typography_typography\":\"custom\",\"mf_input_label_typography_font_family\":\"Inter\",\"mf_input_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"mf_input_label_typography_font_weight\":\"400\",\"mf_input_label_typography_line_height\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"mf_input_min_length\":1,\"mf_input_label_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"mf_input_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"mf_input_color\":\"#272B36\",\"mf_input_border_border\":\"solid\",\"mf_input_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"mf_input_border_color\":\"#ededed\",\"mf_input_typgraphy_typography\":\"custom\",\"mf_input_typgraphy_font_family\":\"Inter\",\"mf_input_typgraphy_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"mf_input_typgraphy_font_weight\":\"400\",\"mf_input_typgraphy_line_height\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"mf_input_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":5,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"mf_input_placeholder_color\":\"#848E9F\",\"mf_input_help_text_typography_typography\":\"custom\",\"mf_input_help_text_typography_font_family\":\"Helvetica\",\"mf_input_help_text_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"mf_input_help_text_typography_font_weight\":\"400\",\"mf_input_help_text_typography_font_style\":\"italic\",\"mf_input_help_text_typography_line_height\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"mf_input_help_text_padding\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"mf_input_required\":\"\",\"mf_input_validation_warning_message\":\"This field is required.\",\"mf_input_required_indicator_color\":\"#FF0000\",\"mf_input_help_text_color\":\"#555555\",\"mf_input_background_background\":\"classic\",\"mf_input_background_color\":\"#FFFFFF00\",\"__globals__\":{\"mf_input_color\":\"\",\"mf_input_place_holder_typography_typography\":\"globals\\/typography?id=f882794\",\"mf_input_label_color\":\"globals\\/colors?id=primary\",\"mf_input_placeholder_color\":\"globals\\/colors?id=text\",\"mf_input_color_hover\":\"globals\\/colors?id=primary\",\"mf_input_color_focus\":\"globals\\/colors?id=primary\",\"mf_input_typgraphy_typography\":\"\"},\"mf_input_border_radius\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"mf_input_label_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"mf_input_label_color\":\"#000E44\",\"mf_input_label_status\":\"\",\"mf_input_warning_text_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"mf_input_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_slideshow_gallery\":[],\"mf_input_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_hover_slideshow_gallery\":[],\"mf_input_background_focus_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_focus_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_focus_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"mf-text\"}],\"isInner\":true},{\"id\":\"67479445\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4acbafb3\",\"elType\":\"widget\",\"settings\":{\"mf_input_label\":\"Email\",\"mf_input_name\":\"mf-email\",\"mf_input_placeholder\":\"Your Email\",\"mf_input_required\":\"\",\"mf_input_label_typography_typography\":\"custom\",\"mf_input_label_typography_font_family\":\"Inter\",\"mf_input_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"mf_input_label_typography_font_weight\":\"400\",\"mf_input_label_typography_line_height\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"mf_input_label_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"mf_input_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"mf_input_color\":\"#272B36\",\"mf_input_border_border\":\"solid\",\"mf_input_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"mf_input_border_color\":\"#ededed\",\"mf_input_typgraphy_typography\":\"custom\",\"mf_input_typgraphy_font_family\":\"Inter\",\"mf_input_typgraphy_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"mf_input_typgraphy_font_weight\":\"400\",\"mf_input_typgraphy_line_height\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"mf_input_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":5,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"mf_input_placeholder_color\":\"#848E9F\",\"mf_input_help_text_typography_typography\":\"custom\",\"mf_input_help_text_typography_font_family\":\"Helvetica\",\"mf_input_help_text_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"mf_input_help_text_typography_font_weight\":\"400\",\"mf_input_help_text_typography_font_style\":\"italic\",\"mf_input_help_text_typography_line_height\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"mf_input_help_text_padding\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"mf_input_validation_warning_message\":\"This field is required.\",\"mf_input_required_indicator_color\":\"#FF0000\",\"mf_input_help_text_color\":\"#555555\",\"show_login_email\":\"\",\"mf_input_background_background\":\"classic\",\"mf_input_background_color\":\"#FFFFFF00\",\"__globals__\":{\"mf_input_color\":\"\",\"mf_input_place_holder_typography_typography\":\"globals\\/typography?id=f882794\",\"mf_input_label_color\":\"globals\\/colors?id=primary\",\"mf_input_placeholder_color\":\"globals\\/colors?id=text\",\"mf_input_color_hover\":\"globals\\/colors?id=primary\",\"mf_input_color_focus\":\"globals\\/colors?id=primary\",\"mf_input_typgraphy_typography\":\"\"},\"mf_input_border_radius\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"mf_input_label_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"mf_input_label_color\":\"#000E44\",\"mf_input_label_status\":\"\",\"mf_input_warning_text_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"mf_input_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_slideshow_gallery\":[],\"mf_input_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_hover_slideshow_gallery\":[],\"mf_input_background_focus_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_focus_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_focus_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"mf-email\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cbc5041\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"58ca2068\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1dcac227\",\"elType\":\"widget\",\"settings\":{\"mf_input_label\":\"Telephone\",\"mf_input_name\":\"mf-telephone\",\"mf_input_placeholder\":\"Your Phone\",\"mf_input_validation_warning_message\":\"This field is required.\",\"mf_input_label_typography_typography\":\"custom\",\"mf_input_label_typography_font_family\":\"Inter\",\"mf_input_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"mf_input_label_typography_font_weight\":\"400\",\"mf_input_label_typography_line_height\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"mf_input_label_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"mf_input_required_indicator_color\":\"#FF0000\",\"mf_input_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"mf_input_color\":\"#272B36\",\"mf_input_border_border\":\"solid\",\"mf_input_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"mf_input_border_color\":\"#ededed\",\"mf_input_typgraphy_typography\":\"custom\",\"mf_input_typgraphy_font_family\":\"Inter\",\"mf_input_typgraphy_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"mf_input_typgraphy_font_weight\":\"400\",\"mf_input_typgraphy_line_height\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"mf_input_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":5,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"mf_input_placeholder_color\":\"#848E9F\",\"mf_input_help_text_typography_typography\":\"custom\",\"mf_input_help_text_typography_font_family\":\"Helvetica\",\"mf_input_help_text_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"mf_input_help_text_typography_font_weight\":\"400\",\"mf_input_help_text_typography_font_style\":\"italic\",\"mf_input_help_text_typography_line_height\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"mf_input_help_text_color\":\"#555555\",\"mf_input_help_text_padding\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"mf_input_background_background\":\"classic\",\"mf_input_background_color\":\"#FFFFFF00\",\"__globals__\":{\"mf_input_color\":\"\",\"mf_input_place_holder_typography_typography\":\"globals\\/typography?id=f882794\",\"mf_input_label_color\":\"globals\\/colors?id=primary\",\"mf_input_placeholder_color\":\"globals\\/colors?id=text\",\"mf_input_color_hover\":\"globals\\/colors?id=primary\",\"mf_input_color_focus\":\"globals\\/colors?id=primary\",\"mf_input_typgraphy_typography\":\"\"},\"mf_input_border_radius\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"mf_input_label_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"mf_input_label_color\":\"#000E44\",\"mf_input_label_status\":\"\",\"mf_input_warning_text_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"mf_input_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_slideshow_gallery\":[],\"mf_input_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_hover_slideshow_gallery\":[],\"mf_input_background_focus_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_focus_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_focus_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"mf-telephone\"}],\"isInner\":true},{\"id\":\"33d6e152\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"557f60a3\",\"elType\":\"widget\",\"settings\":{\"mf_input_label\":\"Date\",\"mf_input_name\":\"mf-date\",\"mf_input_placeholder\":\"Date\",\"mf_input_validation_warning_message\":\"This field is required.\",\"mf_input_disable_date_list\":[],\"mf_input_label_typography_typography\":\"custom\",\"mf_input_label_typography_font_family\":\"Inter\",\"mf_input_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"mf_input_label_typography_font_weight\":\"400\",\"mf_input_label_typography_line_height\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"mf_input_label_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"mf_input_required_indicator_color\":\"#FF0000\",\"mf_input_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"mf_input_color\":\"#272B36\",\"mf_input_background_background\":\"classic\",\"mf_input_background_color\":\"#FFFFFF00\",\"mf_input_border_border\":\"solid\",\"mf_input_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"mf_input_border_color\":\"#ededed\",\"mf_input_typgraphy_typography\":\"custom\",\"mf_input_typgraphy_font_family\":\"Inter\",\"mf_input_typgraphy_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"mf_input_typgraphy_font_weight\":\"400\",\"mf_input_typgraphy_line_height\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"mf_input_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":5,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"mf_input_placeholder_color\":\"#848E9F\",\"mf_input_help_text_typography_typography\":\"custom\",\"mf_input_help_text_typography_font_family\":\"Helvetica\",\"mf_input_help_text_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"mf_input_help_text_typography_font_weight\":\"400\",\"mf_input_help_text_typography_font_style\":\"italic\",\"mf_input_help_text_typography_line_height\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"mf_input_help_text_color\":\"#555555\",\"mf_input_help_text_padding\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"mf_input_color\":\"\",\"mf_input_place_holder_typography_typography\":\"globals\\/typography?id=f882794\",\"mf_input_label_color\":\"globals\\/colors?id=primary\",\"mf_input_placeholder_color\":\"globals\\/colors?id=text\",\"mf_input_color_hover\":\"globals\\/colors?id=primary\",\"mf_input_color_focus\":\"globals\\/colors?id=primary\",\"mf_input_typgraphy_typography\":\"\"},\"mf_input_border_radius\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"mf_input_label_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"mf_input_label_color\":\"#000E44\",\"mf_input_label_status\":\"\",\"mf_input_warning_text_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"mf_input_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_slideshow_gallery\":[],\"mf_input_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_hover_slideshow_gallery\":[],\"mf_input_background_focus_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_focus_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_focus_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"mf-date\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3f8ac5dc\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"20871007\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"242ddff1\",\"elType\":\"widget\",\"settings\":{\"mf_input_label\":\"Services\",\"mf_input_name\":\"mf-select\",\"mf_input_placeholder\":\"Select Services\",\"mf_input_list\":[{\"mf_input_option_text\":\"Water Gardening\",\"mf_input_option_value\":\"value-1\",\"_id\":\"4888e71\",\"mf_input_option_status\":\"\",\"mf_input_option_selected\":\"\"},{\"mf_input_option_text\":\"Lawn Maintenance\",\"mf_input_option_value\":\"value-2\",\"_id\":\"f9ff265\",\"mf_input_option_status\":\"\",\"mf_input_option_selected\":\"\"},{\"mf_input_option_text\":\"Cutting Leaf\",\"mf_input_option_value\":\"value-3\",\"_id\":\"b3a0820\",\"mf_input_option_status\":\"\",\"mf_input_option_selected\":\"\"},{\"mf_input_option_text\":\"Landscaping Design\",\"mf_input_option_value\":\"value-4\",\"_id\":\"7fc25d8\",\"mf_input_option_status\":\"\",\"mf_input_option_selected\":\"\"},{\"mf_input_option_text\":\"Lawn Cleaning\",\"mf_input_option_value\":\"value-5\",\"_id\":\"642c463\",\"mf_input_option_status\":\"\",\"mf_input_option_selected\":\"\"}],\"mf_input_validation_warning_message\":\"This field is required.\",\"mf_input_label_typography_typography\":\"custom\",\"mf_input_label_typography_font_family\":\"Inter\",\"mf_input_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"mf_input_label_typography_font_weight\":\"400\",\"mf_input_label_typography_line_height\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"mf_input_label_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"mf_input_required_indicator_color\":\"#FF0000\",\"mf_input_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"mf_input_border_border\":\"solid\",\"mf_input_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"mf_input_border_color\":\"#ededed\",\"mf_input_typgraphy_typography\":\"custom\",\"mf_input_typgraphy_font_family\":\"Inter\",\"mf_input_typgraphy_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"mf_input_typgraphy_font_weight\":\"400\",\"mf_input_typgraphy_line_height\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"mf_input_border_radius\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"mf_input_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":5,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"mf_input_placeholder_color\":\"#848E9F\",\"mf_input_help_text_typography_typography\":\"custom\",\"mf_input_help_text_typography_font_family\":\"Helvetica\",\"mf_input_help_text_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"mf_input_help_text_typography_font_weight\":\"400\",\"mf_input_help_text_typography_font_style\":\"italic\",\"mf_input_help_text_typography_line_height\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"mf_input_help_text_color\":\"#555555\",\"mf_input_help_text_padding\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"mf_input_background_background\":\"classic\",\"mf_input_background_color\":\"#FFFFFF00\",\"__globals__\":{\"mf_input_place_holder_typography_typography\":\"globals\\/typography?id=f882794\",\"mf_input_color\":\"globals\\/colors?id=primary\",\"mf_input_label_color\":\"globals\\/colors?id=primary\",\"mf_input_placeholder_color\":\"globals\\/colors?id=text\",\"mf_input_color_focus\":\"globals\\/colors?id=primary\",\"mf_input_color_hover\":\"globals\\/colors?id=primary\",\"mf_select_option_colornormal\":\"globals\\/colors?id=primary\",\"mf_select_option_colorhover\":\"globals\\/colors?id=accent\",\"mf_select_option_coloractive\":\"globals\\/colors?id=primary\"},\"mf_input_label_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"mf_input_label_color\":\"#000E44\",\"mf_input_label_status\":\"\",\"mf_input_warning_text_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"mf_input_upload_csv\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_slideshow_gallery\":[],\"mf_input_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_hover_slideshow_gallery\":[],\"mf_input_background_focus_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_focus_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_focus_slideshow_gallery\":[],\"mf_select_option_backgroundnormal_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_select_option_backgroundnormal_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_select_option_backgroundnormal_slideshow_gallery\":[],\"mf_select_option_backgroundhover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_select_option_backgroundhover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_select_option_backgroundhover_slideshow_gallery\":[],\"mf_select_option_backgroundactive_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_select_option_backgroundactive_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_select_option_backgroundactive_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"mf-select\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6c96236e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"59dfa9dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"79cd34ae\",\"elType\":\"widget\",\"settings\":{\"mf_input_label\":\"Additional Details\",\"mf_input_name\":\"mf-comment\",\"mf_input_placeholder\":\"Additional Details\",\"mf_input_required\":\"\",\"mf_input_label_typography_typography\":\"custom\",\"mf_input_label_typography_font_family\":\"Inter\",\"mf_input_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"mf_input_label_typography_font_weight\":\"400\",\"mf_input_label_typography_line_height\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"mf_input_label_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"mf_input_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"mf_input_color\":\"#272B36\",\"mf_input_border_border\":\"solid\",\"mf_input_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"mf_input_border_color\":\"#ededed\",\"mf_input_typgraphy_typography\":\"custom\",\"mf_input_typgraphy_font_family\":\"Inter\",\"mf_input_typgraphy_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"mf_input_typgraphy_font_weight\":\"400\",\"mf_input_typgraphy_line_height\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"mf_input_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":5,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"mf_input_placeholder_color\":\"#848E9F\",\"mf_input_help_text_typography_typography\":\"custom\",\"mf_input_help_text_typography_font_family\":\"Helvetica\",\"mf_input_help_text_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"mf_input_help_text_typography_font_weight\":\"400\",\"mf_input_help_text_typography_font_style\":\"italic\",\"mf_input_help_text_typography_line_height\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"mf_input_help_text_padding\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"mf_textarea_field_height\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"mf_input_validation_warning_message\":\"This field is required.\",\"mf_input_required_indicator_color\":\"#FF0000\",\"mf_input_help_text_color\":\"#555555\",\"mf_input_background_background\":\"classic\",\"mf_input_background_color\":\"#FFFFFF00\",\"__globals__\":{\"mf_input_color\":\"\",\"mf_input_place_holder_typography_typography\":\"globals\\/typography?id=f882794\",\"mf_input_label_color\":\"globals\\/colors?id=primary\",\"mf_input_placeholder_color\":\"globals\\/colors?id=text\",\"mf_input_color_hover\":\"globals\\/colors?id=primary\",\"mf_input_color_focus\":\"globals\\/colors?id=primary\",\"mf_input_typgraphy_typography\":\"\"},\"mf_input_border_radius\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"mf_input_label_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"mf_input_label_color\":\"#000E44\",\"mf_input_label_status\":\"\",\"mf_input_warning_text_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"mf_input_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_slideshow_gallery\":[],\"mf_input_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_hover_slideshow_gallery\":[],\"mf_input_background_focus_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_focus_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_focus_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"mf-textarea\"},{\"id\":\"8f4d649\",\"elType\":\"widget\",\"settings\":{\"mf_btn_text\":\"Make Appointment\",\"mf_btn_align\":\"left\",\"mf_btn_text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"mf_btn_bg_color_background\":\"classic\",\"mf_btn_box_shadow_group_box_shadow_type\":\"yes\",\"mf_btn_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(66,133,244,0.3)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"mf_hidden_input\":[],\"__globals__\":{\"mf_btn_bg_color_color\":\"globals\\/colors?id=accent\",\"mf_btn_typography_typography\":\"globals\\/typography?id=0a50947\",\"mf_btn_text_color\":\"globals\\/colors?id=secondary\",\"mf_btn_bg_hover_color_color\":\"globals\\/colors?id=secondary\",\"mf_btn_hover_color\":\"globals\\/colors?id=accent\"},\"mf_btn_bg_hover_color_background\":\"classic\",\"mf_btn_icon\":{\"value\":\"\",\"library\":\"\"},\"mf_btn_bg_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_btn_bg_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_btn_bg_color_slideshow_gallery\":[],\"mf_btn_bg_hover_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_btn_bg_hover_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_btn_bg_hover_color_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"mf-button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(907,170,'_elementor_edit_mode','builder'),(908,170,'_elementor_template_type','section'),(909,170,'_elementor_version','3.23.2'),(910,170,'_elementor_data','[{\"id\":\"6e228428\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0,0,0,0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"21c39bb8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"b5319b5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3f456ad1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1e8cc432\",\"elType\":\"widget\",\"settings\":{\"mf_input_label\":\"Name\",\"mf_input_name\":\"mf-first-name\",\"mf_input_placeholder\":\"Your Name\",\"mf_input_label_typography_typography\":\"custom\",\"mf_input_label_typography_font_family\":\"Inter\",\"mf_input_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"mf_input_label_typography_font_weight\":\"400\",\"mf_input_label_typography_line_height\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"mf_input_min_length\":1,\"mf_input_label_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"mf_input_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"mf_input_color\":\"#272B36\",\"mf_input_border_border\":\"solid\",\"mf_input_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"mf_input_border_color\":\"#ededed\",\"mf_input_typgraphy_typography\":\"custom\",\"mf_input_typgraphy_font_family\":\"Inter\",\"mf_input_typgraphy_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"mf_input_typgraphy_font_weight\":\"400\",\"mf_input_typgraphy_line_height\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"mf_input_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":5,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"mf_input_placeholder_color\":\"#848E9F\",\"mf_input_help_text_typography_typography\":\"custom\",\"mf_input_help_text_typography_font_family\":\"Helvetica\",\"mf_input_help_text_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"mf_input_help_text_typography_font_weight\":\"400\",\"mf_input_help_text_typography_font_style\":\"italic\",\"mf_input_help_text_typography_line_height\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"mf_input_help_text_padding\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"mf_input_required\":\"\",\"mf_input_validation_warning_message\":\"This field is required.\",\"mf_input_required_indicator_color\":\"#FF0000\",\"mf_input_help_text_color\":\"#555555\",\"mf_input_background_background\":\"classic\",\"mf_input_background_color\":\"#FFFFFF00\",\"__globals__\":{\"mf_input_color\":\"\",\"mf_input_place_holder_typography_typography\":\"globals\\/typography?id=f882794\",\"mf_input_label_color\":\"globals\\/colors?id=primary\",\"mf_input_placeholder_color\":\"globals\\/colors?id=text\",\"mf_input_color_hover\":\"globals\\/colors?id=primary\",\"mf_input_color_focus\":\"globals\\/colors?id=primary\",\"mf_input_typgraphy_typography\":\"\"},\"mf_input_border_radius\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"mf_input_label_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"mf_input_label_color\":\"#000E44\",\"mf_input_label_status\":\"\",\"mf_input_warning_text_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"mf_input_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_slideshow_gallery\":[],\"mf_input_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_hover_slideshow_gallery\":[],\"mf_input_background_focus_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_focus_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_focus_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"mf-text\"}],\"isInner\":true},{\"id\":\"67479445\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4acbafb3\",\"elType\":\"widget\",\"settings\":{\"mf_input_label\":\"Email\",\"mf_input_name\":\"mf-email\",\"mf_input_placeholder\":\"Your Email\",\"mf_input_required\":\"\",\"mf_input_label_typography_typography\":\"custom\",\"mf_input_label_typography_font_family\":\"Inter\",\"mf_input_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"mf_input_label_typography_font_weight\":\"400\",\"mf_input_label_typography_line_height\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"mf_input_label_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"mf_input_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"mf_input_color\":\"#272B36\",\"mf_input_border_border\":\"solid\",\"mf_input_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"mf_input_border_color\":\"#ededed\",\"mf_input_typgraphy_typography\":\"custom\",\"mf_input_typgraphy_font_family\":\"Inter\",\"mf_input_typgraphy_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"mf_input_typgraphy_font_weight\":\"400\",\"mf_input_typgraphy_line_height\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"mf_input_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":5,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"mf_input_placeholder_color\":\"#848E9F\",\"mf_input_help_text_typography_typography\":\"custom\",\"mf_input_help_text_typography_font_family\":\"Helvetica\",\"mf_input_help_text_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"mf_input_help_text_typography_font_weight\":\"400\",\"mf_input_help_text_typography_font_style\":\"italic\",\"mf_input_help_text_typography_line_height\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"mf_input_help_text_padding\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"mf_input_validation_warning_message\":\"This field is required.\",\"mf_input_required_indicator_color\":\"#FF0000\",\"mf_input_help_text_color\":\"#555555\",\"show_login_email\":\"\",\"mf_input_background_background\":\"classic\",\"mf_input_background_color\":\"#FFFFFF00\",\"__globals__\":{\"mf_input_color\":\"\",\"mf_input_place_holder_typography_typography\":\"globals\\/typography?id=f882794\",\"mf_input_label_color\":\"globals\\/colors?id=primary\",\"mf_input_placeholder_color\":\"globals\\/colors?id=text\",\"mf_input_color_hover\":\"globals\\/colors?id=primary\",\"mf_input_color_focus\":\"globals\\/colors?id=primary\",\"mf_input_typgraphy_typography\":\"\"},\"mf_input_border_radius\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"mf_input_label_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"mf_input_label_color\":\"#000E44\",\"mf_input_label_status\":\"\",\"mf_input_warning_text_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"mf_input_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_slideshow_gallery\":[],\"mf_input_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_hover_slideshow_gallery\":[],\"mf_input_background_focus_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_focus_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_focus_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"mf-email\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3cbc5041\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"58ca2068\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1dcac227\",\"elType\":\"widget\",\"settings\":{\"mf_input_label\":\"Telephone\",\"mf_input_name\":\"mf-telephone\",\"mf_input_placeholder\":\"Your Phone\",\"mf_input_validation_warning_message\":\"This field is required.\",\"mf_input_label_typography_typography\":\"custom\",\"mf_input_label_typography_font_family\":\"Inter\",\"mf_input_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"mf_input_label_typography_font_weight\":\"400\",\"mf_input_label_typography_line_height\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"mf_input_label_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"mf_input_required_indicator_color\":\"#FF0000\",\"mf_input_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"mf_input_color\":\"#272B36\",\"mf_input_border_border\":\"solid\",\"mf_input_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"mf_input_border_color\":\"#ededed\",\"mf_input_typgraphy_typography\":\"custom\",\"mf_input_typgraphy_font_family\":\"Inter\",\"mf_input_typgraphy_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"mf_input_typgraphy_font_weight\":\"400\",\"mf_input_typgraphy_line_height\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"mf_input_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":5,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"mf_input_placeholder_color\":\"#848E9F\",\"mf_input_help_text_typography_typography\":\"custom\",\"mf_input_help_text_typography_font_family\":\"Helvetica\",\"mf_input_help_text_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"mf_input_help_text_typography_font_weight\":\"400\",\"mf_input_help_text_typography_font_style\":\"italic\",\"mf_input_help_text_typography_line_height\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"mf_input_help_text_color\":\"#555555\",\"mf_input_help_text_padding\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"mf_input_background_background\":\"classic\",\"mf_input_background_color\":\"#FFFFFF00\",\"__globals__\":{\"mf_input_color\":\"\",\"mf_input_place_holder_typography_typography\":\"globals\\/typography?id=f882794\",\"mf_input_label_color\":\"globals\\/colors?id=primary\",\"mf_input_placeholder_color\":\"globals\\/colors?id=text\",\"mf_input_color_hover\":\"globals\\/colors?id=primary\",\"mf_input_color_focus\":\"globals\\/colors?id=primary\",\"mf_input_typgraphy_typography\":\"\"},\"mf_input_border_radius\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"mf_input_label_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"mf_input_label_color\":\"#000E44\",\"mf_input_label_status\":\"\",\"mf_input_warning_text_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"mf_input_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_slideshow_gallery\":[],\"mf_input_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_hover_slideshow_gallery\":[],\"mf_input_background_focus_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_focus_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_focus_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"mf-telephone\"}],\"isInner\":true},{\"id\":\"33d6e152\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"557f60a3\",\"elType\":\"widget\",\"settings\":{\"mf_input_label\":\"Date\",\"mf_input_name\":\"mf-date\",\"mf_input_placeholder\":\"Date\",\"mf_input_validation_warning_message\":\"This field is required.\",\"mf_input_disable_date_list\":[],\"mf_input_label_typography_typography\":\"custom\",\"mf_input_label_typography_font_family\":\"Inter\",\"mf_input_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"mf_input_label_typography_font_weight\":\"400\",\"mf_input_label_typography_line_height\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"mf_input_label_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"mf_input_required_indicator_color\":\"#FF0000\",\"mf_input_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"mf_input_color\":\"#272B36\",\"mf_input_background_background\":\"classic\",\"mf_input_background_color\":\"#FFFFFF00\",\"mf_input_border_border\":\"solid\",\"mf_input_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"mf_input_border_color\":\"#ededed\",\"mf_input_typgraphy_typography\":\"custom\",\"mf_input_typgraphy_font_family\":\"Inter\",\"mf_input_typgraphy_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"mf_input_typgraphy_font_weight\":\"400\",\"mf_input_typgraphy_line_height\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"mf_input_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":5,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"mf_input_placeholder_color\":\"#848E9F\",\"mf_input_help_text_typography_typography\":\"custom\",\"mf_input_help_text_typography_font_family\":\"Helvetica\",\"mf_input_help_text_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"mf_input_help_text_typography_font_weight\":\"400\",\"mf_input_help_text_typography_font_style\":\"italic\",\"mf_input_help_text_typography_line_height\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"mf_input_help_text_color\":\"#555555\",\"mf_input_help_text_padding\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"mf_input_color\":\"\",\"mf_input_place_holder_typography_typography\":\"globals\\/typography?id=f882794\",\"mf_input_label_color\":\"globals\\/colors?id=primary\",\"mf_input_placeholder_color\":\"globals\\/colors?id=text\",\"mf_input_color_hover\":\"globals\\/colors?id=primary\",\"mf_input_color_focus\":\"globals\\/colors?id=primary\",\"mf_input_typgraphy_typography\":\"\"},\"mf_input_border_radius\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"mf_input_label_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"mf_input_label_color\":\"#000E44\",\"mf_input_label_status\":\"\",\"mf_input_warning_text_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"mf_input_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_slideshow_gallery\":[],\"mf_input_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_hover_slideshow_gallery\":[],\"mf_input_background_focus_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_focus_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_focus_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"mf-date\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3f8ac5dc\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"20871007\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"242ddff1\",\"elType\":\"widget\",\"settings\":{\"mf_input_label\":\"Services\",\"mf_input_name\":\"mf-select\",\"mf_input_placeholder\":\"Select Services\",\"mf_input_list\":[{\"mf_input_option_text\":\"Water Gardening\",\"mf_input_option_value\":\"value-1\",\"_id\":\"4888e71\",\"mf_input_option_status\":\"\",\"mf_input_option_selected\":\"\"},{\"mf_input_option_text\":\"Lawn Maintenance\",\"mf_input_option_value\":\"value-2\",\"_id\":\"f9ff265\",\"mf_input_option_status\":\"\",\"mf_input_option_selected\":\"\"},{\"mf_input_option_text\":\"Cutting Leaf\",\"mf_input_option_value\":\"value-3\",\"_id\":\"b3a0820\",\"mf_input_option_status\":\"\",\"mf_input_option_selected\":\"\"},{\"mf_input_option_text\":\"Landscaping Design\",\"mf_input_option_value\":\"value-4\",\"_id\":\"7fc25d8\",\"mf_input_option_status\":\"\",\"mf_input_option_selected\":\"\"},{\"mf_input_option_text\":\"Lawn Cleaning\",\"mf_input_option_value\":\"value-5\",\"_id\":\"642c463\",\"mf_input_option_status\":\"\",\"mf_input_option_selected\":\"\"}],\"mf_input_validation_warning_message\":\"This field is required.\",\"mf_input_label_typography_typography\":\"custom\",\"mf_input_label_typography_font_family\":\"Inter\",\"mf_input_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"mf_input_label_typography_font_weight\":\"400\",\"mf_input_label_typography_line_height\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"mf_input_label_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"mf_input_required_indicator_color\":\"#FF0000\",\"mf_input_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"mf_input_border_border\":\"solid\",\"mf_input_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"mf_input_border_color\":\"#ededed\",\"mf_input_typgraphy_typography\":\"custom\",\"mf_input_typgraphy_font_family\":\"Inter\",\"mf_input_typgraphy_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"mf_input_typgraphy_font_weight\":\"400\",\"mf_input_typgraphy_line_height\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"mf_input_border_radius\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"mf_input_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":5,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"mf_input_placeholder_color\":\"#848E9F\",\"mf_input_help_text_typography_typography\":\"custom\",\"mf_input_help_text_typography_font_family\":\"Helvetica\",\"mf_input_help_text_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"mf_input_help_text_typography_font_weight\":\"400\",\"mf_input_help_text_typography_font_style\":\"italic\",\"mf_input_help_text_typography_line_height\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"mf_input_help_text_color\":\"#555555\",\"mf_input_help_text_padding\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"mf_input_background_background\":\"classic\",\"mf_input_background_color\":\"#FFFFFF00\",\"__globals__\":{\"mf_input_place_holder_typography_typography\":\"globals\\/typography?id=f882794\",\"mf_input_color\":\"globals\\/colors?id=primary\",\"mf_input_label_color\":\"globals\\/colors?id=primary\",\"mf_input_placeholder_color\":\"globals\\/colors?id=text\",\"mf_input_color_focus\":\"globals\\/colors?id=primary\",\"mf_input_color_hover\":\"globals\\/colors?id=primary\",\"mf_select_option_colornormal\":\"globals\\/colors?id=primary\",\"mf_select_option_colorhover\":\"globals\\/colors?id=accent\",\"mf_select_option_coloractive\":\"globals\\/colors?id=primary\"},\"mf_input_label_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"mf_input_label_color\":\"#000E44\",\"mf_input_label_status\":\"\",\"mf_input_warning_text_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"mf_input_upload_csv\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_slideshow_gallery\":[],\"mf_input_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_hover_slideshow_gallery\":[],\"mf_input_background_focus_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_focus_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_focus_slideshow_gallery\":[],\"mf_select_option_backgroundnormal_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_select_option_backgroundnormal_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_select_option_backgroundnormal_slideshow_gallery\":[],\"mf_select_option_backgroundhover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_select_option_backgroundhover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_select_option_backgroundhover_slideshow_gallery\":[],\"mf_select_option_backgroundactive_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_select_option_backgroundactive_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_select_option_backgroundactive_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"mf-select\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6c96236e\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"59dfa9dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"79cd34ae\",\"elType\":\"widget\",\"settings\":{\"mf_input_label\":\"Additional Details\",\"mf_input_name\":\"mf-comment\",\"mf_input_placeholder\":\"Additional Details\",\"mf_input_required\":\"\",\"mf_input_label_typography_typography\":\"custom\",\"mf_input_label_typography_font_family\":\"Inter\",\"mf_input_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"mf_input_label_typography_font_weight\":\"400\",\"mf_input_label_typography_line_height\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"mf_input_label_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"mf_input_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"mf_input_color\":\"#272B36\",\"mf_input_border_border\":\"solid\",\"mf_input_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"mf_input_border_color\":\"#ededed\",\"mf_input_typgraphy_typography\":\"custom\",\"mf_input_typgraphy_font_family\":\"Inter\",\"mf_input_typgraphy_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"mf_input_typgraphy_font_weight\":\"400\",\"mf_input_typgraphy_line_height\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"mf_input_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":5,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"mf_input_placeholder_color\":\"#848E9F\",\"mf_input_help_text_typography_typography\":\"custom\",\"mf_input_help_text_typography_font_family\":\"Helvetica\",\"mf_input_help_text_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"mf_input_help_text_typography_font_weight\":\"400\",\"mf_input_help_text_typography_font_style\":\"italic\",\"mf_input_help_text_typography_line_height\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"mf_input_help_text_padding\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"mf_textarea_field_height\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"mf_input_validation_warning_message\":\"This field is required.\",\"mf_input_required_indicator_color\":\"#FF0000\",\"mf_input_help_text_color\":\"#555555\",\"mf_input_background_background\":\"classic\",\"mf_input_background_color\":\"#FFFFFF00\",\"__globals__\":{\"mf_input_color\":\"\",\"mf_input_place_holder_typography_typography\":\"globals\\/typography?id=f882794\",\"mf_input_label_color\":\"globals\\/colors?id=primary\",\"mf_input_placeholder_color\":\"globals\\/colors?id=text\",\"mf_input_color_hover\":\"globals\\/colors?id=primary\",\"mf_input_color_focus\":\"globals\\/colors?id=primary\",\"mf_input_typgraphy_typography\":\"\"},\"mf_input_border_radius\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"mf_input_label_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"mf_input_label_color\":\"#000E44\",\"mf_input_label_status\":\"\",\"mf_input_warning_text_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"mf_input_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_slideshow_gallery\":[],\"mf_input_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_hover_slideshow_gallery\":[],\"mf_input_background_focus_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_focus_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_focus_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"mf-textarea\"},{\"id\":\"8f4d649\",\"elType\":\"widget\",\"settings\":{\"mf_btn_text\":\"Make Appointment\",\"mf_btn_align\":\"left\",\"mf_btn_text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"mf_btn_bg_color_background\":\"classic\",\"mf_btn_box_shadow_group_box_shadow_type\":\"yes\",\"mf_btn_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(66,133,244,0.3)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"mf_hidden_input\":[],\"__globals__\":{\"mf_btn_bg_color_color\":\"globals\\/colors?id=accent\",\"mf_btn_typography_typography\":\"globals\\/typography?id=0a50947\",\"mf_btn_text_color\":\"globals\\/colors?id=secondary\",\"mf_btn_bg_hover_color_color\":\"globals\\/colors?id=secondary\",\"mf_btn_hover_color\":\"globals\\/colors?id=accent\"},\"mf_btn_bg_hover_color_background\":\"classic\",\"mf_btn_icon\":{\"value\":\"\",\"library\":\"\"},\"mf_btn_bg_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_btn_bg_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_btn_bg_color_slideshow_gallery\":[],\"mf_btn_bg_hover_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_btn_bg_hover_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_btn_bg_hover_color_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"mf-button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(911,169,'_elementor_page_assets','a:0:{}'),(912,169,'_wp_page_template','elementor_canvas'),(913,169,'envato_tk_source_kit','26'),(914,169,'envato_tk_source_index','1'),(915,171,'_elementor_edit_mode','builder'),(916,171,'_elementor_template_type','wp-page'),(917,171,'_elementor_version','3.23.2'),(918,171,'_wp_page_template','default'),(919,171,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'); INSERT INTO `victorq_postmeta` VALUES (920,171,'_elementor_data','[{\"id\":\"35495243\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"Eldery male gardener using scissors for bushes\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"160\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0,\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_size_tablet\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"top center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00160E\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b\":\"#00000054\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_slideshow_gallery\":[{\"id\":154,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-02-5.jpg\"},{\"id\":155,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-03-3.jpg\"},{\"id\":156,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-04-3.jpg\"},{\"id\":157,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-01-5.jpg\"}]},\"elements\":[{\"id\":\"739a26d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":65,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=06a34e7\"}},\"elements\":[{\"id\":\"132d1a8e\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Complete For All\",\"sg_title_focused\":\" Landscape \",\"sg_title_after\":\" Service And Maintenance\",\"sg_title_html_tag\":\"h1\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=primary\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"7c49583a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"635cb25b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"23cf340e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37.85499999999999687361196265555918216705322265625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":48,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"1c4c950d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4768b6f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":62.14500000000000312638803734444081783294677734375,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"flex-start\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":52,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"34c0badb\",\"elType\":\"widget\",\"settings\":{\"sg_video_button_title\":\"Play Video\",\"sg_video_button_icon\":{\"value\":\"jki jki-play\",\"library\":\"jkiticon\"},\"sg_video_url\":\"#\",\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_width_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_line_height_responsive\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#FFD402\",\"st_button_normal_glow_color_responsive\":\"#00694361\",\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"_element_width\":\"auto\",\"__globals__\":{\"st_button_normal_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=accent\",\"st_border_normal_border_border_color\":\"\",\"st_button_hover_text_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_glow_color_responsive\":\"\"},\"st_button_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_button_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_width_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_line_height_responsive_mobile\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"st_border_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_border_normal_border_border_color\":\"#FFD027\",\"st_button_line_height_responsive_tablet\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"st_button_normal_background_background_color\":\"#006943\",\"st_button_hover_text_color_responsive\":\"#006943\",\"st_button_hover_background_background_color\":\"#FFD402\",\"sg_video_auto_play\":\"\",\"sg_video_mute\":\"\"},\"elements\":[],\"widgetType\":\"jkit_video_button\"},{\"id\":\"232ec8da\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Intro\",\"align\":\"right\",\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"hide_mobile\":\"hidden-mobile\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#00160E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49b348ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"edc2dbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.00200000000000244426701101474463939666748046875,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e2246bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Prestige Luxury Cleanings LLC\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"139cc45f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Landscaping And Garden Care Services\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dc78e71\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"597dc67d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"26cf3840\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b19bda0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"62\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-and-his-flowers.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"980\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a46c929\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c4d8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Public Liability Insurance\",\"_id\":\"a978734\"},{\"text\":\"Environmentally Friendly\",\"_id\":\"1cd10a1\"},{\"text\":\"On Time, Every Time\",\"_id\":\"c6767db\"},{\"text\":\"Beautiful Garden Designs\",\"_id\":\"d4743f4\"},{\"text\":\"Modern Machinery And Tool\",\"_id\":\"535c17d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"398321ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4c7c15d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.9129999999999967030817060731351375579833984375,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5683e90d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":162,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"860\",\"height\":\"980\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b6190b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":163,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"-59\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"250636f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"713aa588\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"51a71b71\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#00160E\",\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=primary\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=06a34e7\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"st_content_title_color_responsive\":\"#7F7F7F\",\"st_super_color_responsive\":\"#FFD402\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\",\"sg_setting_html_tag\":\"span\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5557874f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"73847855\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"65\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/garden-maintenance-performed-by-pro-gardener.jpg\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"b1058a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":224,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":478,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":325,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"69098afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"40\",\"bottom\":\"80\",\"left\":\"40\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"7cb7bf82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91cb5d9\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26358abf\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Have The Perfect Solution For Your Landscape Problems\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15a36cc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42c8d36c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7114454f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76f24ca8\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Variation Gardening\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"138cc39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28a78a06\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Expert Landscapers\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c5ac2bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38fdb183\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3ce0b95b\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Affordable Price\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-save-money-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4c80f133\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7451fb11\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Free Consultation\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-Consultancy-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e93f2c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"39a46e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6773b2a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"87647bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find The Best Service For Your Garden\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e2cc66e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30164d28\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e8639b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":142,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-services.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fa92c14\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2c434fb3\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"5abe2e18\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33425b9f\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Lawn Services\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"472ed309\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"67cb221c\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37c1cce6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":143,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/driveway-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b3e60ba\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3b291bbf\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"20b91942\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5649f719\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Driveway Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6300b69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"256ddf68\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3735f0b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":144,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/deck-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"741128a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3691562\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3c8a0e6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5eb1b3b9\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Deck Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"25f37292\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"61c9ff8e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d41e618\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"8781ee3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":145,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/weed-control.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd84c7d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"14f7965\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fb2459e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0582197\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Weed Control \",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"f7b0fa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0197d9e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f3de9c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":146,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/grass-feed.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"75ba950\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"23edbf4\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"ad70b3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1c4ac7\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Grass Feed\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6f592ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0043a3b\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e6d8a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":147,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/edging-Cleaning.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd233da\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6535a16\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"937e2e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7aee\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Edging Cleaning\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"d9723d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"c908972\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"790dd775\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"360\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"160\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"140\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"background_overlay_color_b\":\"#000414\",\"background_overlay_image\":{\"id\":\"69\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/a-gardener-watering-plants-in-a-flowerbed-2RT8DWL.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]}},\"elements\":[{\"id\":\"a2ed5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7e37f762\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Landscaping\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a092069\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d5099\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need Someone To Take Care Your Garden & Lawn?\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=07ee36d\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1198756c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"66521a56\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":20,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":4},\"elements\":[{\"id\":\"1a89d099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.5090000000000003410605131648480892181396484375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"id\":\"70\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/happy-gardeners-with-plants-and-lawn-mower.jpg\"},\"background_position\":\"initial\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"space-between\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_color\":\"#FFFFFF00\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":9,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"46b821c1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":219,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":183,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"449971a9\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Make Appointment & Take Care Your Garden\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=secondary\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=93191b3\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_content_title_color_hover_responsive\":\"#FFFFFF\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#FFFFFF\",\"st_icon_color_responsive\":\"#00E5CC\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#00E5CC\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":false},{\"id\":\"13747b6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.4909999999999996589394868351519107818603515625,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a13f42e\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"260***1635696832144\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fde8487\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"59883b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1617542a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Process\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29c7aa96\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Complete Every Step Carefully\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ced0d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d62463d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18cf7834\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"41f79872\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-consult-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consultation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65e1b761\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"span\",\"title_color\":\"#FFD402\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#006943\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12cdbf13\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4175d29\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-pencil_art-light\",\"library\":\"jkiticon\"},\"title_text\":\"Design Installation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2adabf01\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b628\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"569b3221\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consturction \",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"67d6b2e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6fff79c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53c9a76e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"title_text\":\"Finished Work\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"555aace0\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d57540b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"71\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardening-background-with-garden-tolls-A9BGNJU.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]}},\"elements\":[{\"id\":\"147831a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"5a53d120\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"20\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Years of Experience\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"488f4727\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"6b8f6eae\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"76666759\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f532f9e\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"2850\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Happy Customers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"265fd738\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5473dc22\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"64\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Expert Landscapers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b38731e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4945f2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"627cd42c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65e3182\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.56499999999999772626324556767940521240234375},\"elements\":[{\"id\":\"43108b53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Projects\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45328989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Project We Have Done\\n\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"f382082\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.49900000000000233058017329312860965728759765625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":40,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"55ecfb57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"67afcbfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.0330000000000012505552149377763271331787109375,\"_inline_size_tablet\":23,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4989aa04\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Projects\",\"align\":\"right\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"left\",\"hover_animation\":\"float\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"32515d84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"3f5753f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"21982cfb\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"72\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-pruning-and-shaping-bushes-.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Cutting Leaf\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"404dc561\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"58d29b54\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"73\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/backyard-garden.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Home Garden\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"3bff1dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"3c24185a\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"64\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Build Backyard\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_image_height_responsive_tablet\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b3cb58d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_image\":{\"id\":\"74\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-moving-aerial-photo-Z8KDGJ9.jpg\"},\"background_overlay_color\":\"#0000007D\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]}},\"elements\":[{\"id\":\"79705206\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"51c9a732\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73b2fe0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"What They Says About Us\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4876e632\",\"elType\":\"widget\",\"settings\":{\"sg_layout_testimonial_choose\":\"style-2\",\"sg_testimonials_image_size_imagesize_size\":\"medium\",\"sg_testimonials_list\":[{\"sg_testimonials_list_client_avatar\":{\"id\":\"75\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/3SUMAU.jpg\"},\"_id\":\"6e9b2e1\",\"sg_testimonials_list_client_name\":\"Regan Traynor\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"76\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/CASCKD8.jpg\"},\"sg_testimonials_list_client_name\":\"Maisha Dunn\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"d069a43\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"77\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/MKLVKTE.jpg\"},\"sg_testimonials_list_client_name\":\"Reis Leonard\",\"sg_testimonials_list_designation\":\"Businessman\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"05c24f5\"}],\"st_wrapper_alignment_responsive\":\"left\",\"st_client_name_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_description_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_client_name_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_client_designation_normal_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_client_designation_normal_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=d343bdf\",\"st_rating_color_responsive\":\"\",\"st_client_name_normal_color_responsive\":\"\",\"st_quote_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_layout_background_background_color\":\"\"},\"st_layout_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_layout_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_wrapper_fix_height\":\"\",\"sg_setting_autoplay\":\"yes\",\"sg_setting_autoplay_pause\":\"\",\"sg_setting_arrow\":\"\",\"sg_setting_arrow_position\":\"middle-edge\",\"sg_setting_dots\":\"\",\"sg_setting_quote\":\"yes\",\"sg_setting_rating\":\"\",\"st_layout_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_layout_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_slide_show_responsive\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"sg_setting_quote_icon\":{\"value\":\"jki jki-quote-light\",\"library\":\"jkiticon\"},\"sg_layout_image_position\":\"below\",\"st_layout_background_background_background\":\"classic\",\"st_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position\":\"\",\"st_quote_override_position_top_responsive\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"st_quote_override_position_left_responsive\":{\"unit\":\"px\",\"size\":442,\"sizes\":[]},\"st_client_name_normal_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_quote_normal_font_size_responsive\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"st_client_image_margin_responsive\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_rating_font_size_responsive\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"st_rating_margin_right_responsive\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_setting_slide_show_responsive_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"st_wrapper_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position_top_responsive_tablet\":{\"unit\":\"px\",\"size\":249,\"sizes\":[]},\"st_quote_override_position_top_responsive_mobile\":{\"unit\":\"px\",\"size\":193,\"sizes\":[]},\"st_quote_override_position_left_responsive_tablet\":{\"unit\":\"px\",\"size\":265,\"sizes\":[]},\"st_quote_override_position_left_responsive_mobile\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]},\"st_quote_normal_font_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"st_description_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_normal_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64afd05f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"746d276b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30338dfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f950be4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ca735b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5d6ca3ad\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_title_hover_color_responsive\":\"globals\\/colors?id=secondary\",\"st_readmore_hover_color_responsive\":\"globals\\/colors?id=secondary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#646974\",\"st_excerpt_color_responsive\":\"#646974\",\"st_title_normal_color_responsive\":\"#272B36\",\"st_thumbnail_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_title_hover_color_responsive\":\"#FA8D25\",\"st_readmore_normal_color_responsive\":\"#FA8D25\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":false}],\"isInner\":false}]'),(921,171,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(922,171,'_elementor_css','a:6:{s:4:\"time\";i:1721830347;s:5:\"fonts\";a:1:{i:0;s:5:\"Inter\";}s:5:\"icons\";a:3:{i:0;s:0:\"\";i:1;s:8:\"jkiticon\";i:3;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(923,172,'_elementor_edit_mode','builder'),(924,172,'_elementor_template_type','wp-page'),(925,172,'_elementor_version','3.23.2'),(926,172,'_wp_page_template','default'),(927,172,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(928,172,'_elementor_data','[{\"id\":\"35495243\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"Eldery male gardener using scissors for bushes\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"160\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0,\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_size_tablet\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"top center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00160E\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b\":\"#00000054\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_slideshow_gallery\":[{\"id\":154,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-02-5.jpg\"},{\"id\":155,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-03-3.jpg\"},{\"id\":156,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-04-3.jpg\"},{\"id\":157,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-01-5.jpg\"}]},\"elements\":[{\"id\":\"739a26d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":65,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=06a34e7\"}},\"elements\":[{\"id\":\"132d1a8e\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Complete For All\",\"sg_title_focused\":\" Landscape \",\"sg_title_after\":\" Service And Maintenance\",\"sg_title_html_tag\":\"h1\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=primary\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"7c49583a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"635cb25b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"23cf340e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37.85499999999999687361196265555918216705322265625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":48,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"1c4c950d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4768b6f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":62.14500000000000312638803734444081783294677734375,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"flex-start\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":52,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"34c0badb\",\"elType\":\"widget\",\"settings\":{\"sg_video_button_title\":\"Play Video\",\"sg_video_button_icon\":{\"value\":\"jki jki-play\",\"library\":\"jkiticon\"},\"sg_video_url\":\"#\",\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_width_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_line_height_responsive\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#FFD402\",\"st_button_normal_glow_color_responsive\":\"#00694361\",\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"_element_width\":\"auto\",\"__globals__\":{\"st_button_normal_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=accent\",\"st_border_normal_border_border_color\":\"\",\"st_button_hover_text_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_glow_color_responsive\":\"\"},\"st_button_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_button_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_width_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_line_height_responsive_mobile\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"st_border_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_border_normal_border_border_color\":\"#FFD027\",\"st_button_line_height_responsive_tablet\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"st_button_normal_background_background_color\":\"#006943\",\"st_button_hover_text_color_responsive\":\"#006943\",\"st_button_hover_background_background_color\":\"#FFD402\",\"sg_video_auto_play\":\"\",\"sg_video_mute\":\"\"},\"elements\":[],\"widgetType\":\"jkit_video_button\"},{\"id\":\"232ec8da\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Intro\",\"align\":\"right\",\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"hide_mobile\":\"hidden-mobile\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#00160E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49b348ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"edc2dbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.00200000000000244426701101474463939666748046875,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e2246bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Prestige Luxury Cleanings LLC\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"139cc45f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Landscaping And Garden Care Services\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dc78e71\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"597dc67d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"26cf3840\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b19bda0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"62\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-and-his-flowers.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"980\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a46c929\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c4d8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Public Liability Insurance\",\"_id\":\"a978734\"},{\"text\":\"Environmentally Friendly\",\"_id\":\"1cd10a1\"},{\"text\":\"On Time, Every Time\",\"_id\":\"c6767db\"},{\"text\":\"Beautiful Garden Designs\",\"_id\":\"d4743f4\"},{\"text\":\"Modern Machinery And Tool\",\"_id\":\"535c17d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"398321ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4c7c15d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.9129999999999967030817060731351375579833984375,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5683e90d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":162,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"860\",\"height\":\"980\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b6190b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":163,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"-59\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"250636f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"713aa588\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"51a71b71\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#00160E\",\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=primary\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=06a34e7\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"st_content_title_color_responsive\":\"#7F7F7F\",\"st_super_color_responsive\":\"#FFD402\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\",\"sg_setting_html_tag\":\"span\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5557874f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"73847855\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"65\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/garden-maintenance-performed-by-pro-gardener.jpg\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"b1058a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":224,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":478,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":325,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"69098afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"40\",\"bottom\":\"80\",\"left\":\"40\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"7cb7bf82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91cb5d9\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26358abf\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Have The Perfect Solution For Your Landscape Problems\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15a36cc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42c8d36c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7114454f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76f24ca8\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Variation Gardening\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"138cc39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28a78a06\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Expert Landscapers\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c5ac2bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38fdb183\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3ce0b95b\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Affordable Price\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-save-money-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4c80f133\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7451fb11\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Free Consultation\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-Consultancy-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e93f2c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"39a46e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6773b2a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"87647bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find The Best Service For Your Garden\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e2cc66e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30164d28\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e8639b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":142,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-services.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fa92c14\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2c434fb3\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"5abe2e18\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33425b9f\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Lawn Services\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"472ed309\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"67cb221c\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37c1cce6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":143,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/driveway-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b3e60ba\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3b291bbf\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"20b91942\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5649f719\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Driveway Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6300b69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"256ddf68\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3735f0b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":144,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/deck-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"741128a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3691562\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3c8a0e6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5eb1b3b9\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Deck Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"25f37292\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"61c9ff8e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d41e618\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"8781ee3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":145,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/weed-control.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd84c7d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"14f7965\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fb2459e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0582197\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Weed Control \",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"f7b0fa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0197d9e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f3de9c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":146,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/grass-feed.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"75ba950\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"23edbf4\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"ad70b3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1c4ac7\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Grass Feed\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6f592ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0043a3b\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e6d8a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":147,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/edging-Cleaning.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd233da\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6535a16\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"937e2e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7aee\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Edging Cleaning\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"d9723d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"c908972\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"790dd775\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"360\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"160\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"140\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"background_overlay_color_b\":\"#000414\",\"background_overlay_image\":{\"id\":\"69\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/a-gardener-watering-plants-in-a-flowerbed-2RT8DWL.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]}},\"elements\":[{\"id\":\"a2ed5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7e37f762\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Landscaping\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a092069\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d5099\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need Someone To Take Care Your Garden & Lawn?\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=07ee36d\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1198756c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"66521a56\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":20,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":4},\"elements\":[{\"id\":\"1a89d099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.5090000000000003410605131648480892181396484375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"id\":\"70\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/happy-gardeners-with-plants-and-lawn-mower.jpg\"},\"background_position\":\"initial\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"space-between\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_color\":\"#FFFFFF00\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":9,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"46b821c1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":219,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":183,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"449971a9\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Make Appointment & Take Care Your Garden\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=secondary\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=93191b3\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_content_title_color_hover_responsive\":\"#FFFFFF\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#FFFFFF\",\"st_icon_color_responsive\":\"#00E5CC\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#00E5CC\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":false},{\"id\":\"13747b6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.4909999999999996589394868351519107818603515625,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a13f42e\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"260***1635696832144\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fde8487\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"59883b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1617542a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Process\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29c7aa96\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Complete Every Step Carefully\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ced0d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d62463d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18cf7834\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"41f79872\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-consult-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consultation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65e1b761\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"span\",\"title_color\":\"#FFD402\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#006943\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12cdbf13\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4175d29\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-pencil_art-light\",\"library\":\"jkiticon\"},\"title_text\":\"Design Installation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2adabf01\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b628\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"569b3221\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consturction \",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"67d6b2e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6fff79c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53c9a76e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"title_text\":\"Finished Work\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"555aace0\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d57540b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"71\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardening-background-with-garden-tolls-A9BGNJU.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]}},\"elements\":[{\"id\":\"147831a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"5a53d120\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"20\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Years of Experience\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"488f4727\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"6b8f6eae\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"76666759\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f532f9e\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"2850\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Happy Customers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"265fd738\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5473dc22\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"64\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Expert Landscapers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b38731e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4945f2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"627cd42c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65e3182\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.56499999999999772626324556767940521240234375},\"elements\":[{\"id\":\"43108b53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Projects\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45328989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Project We Have Done\\n\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"f382082\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.49900000000000233058017329312860965728759765625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":40,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"55ecfb57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"67afcbfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.0330000000000012505552149377763271331787109375,\"_inline_size_tablet\":23,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4989aa04\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Projects\",\"align\":\"right\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"left\",\"hover_animation\":\"float\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"32515d84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"3f5753f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"21982cfb\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"72\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-pruning-and-shaping-bushes-.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Cutting Leaf\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"404dc561\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"58d29b54\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"73\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/backyard-garden.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Home Garden\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"3bff1dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"3c24185a\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"64\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Build Backyard\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_image_height_responsive_tablet\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b3cb58d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_image\":{\"id\":\"74\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-moving-aerial-photo-Z8KDGJ9.jpg\"},\"background_overlay_color\":\"#0000007D\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]}},\"elements\":[{\"id\":\"79705206\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"51c9a732\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73b2fe0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"What They Says About Us\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4876e632\",\"elType\":\"widget\",\"settings\":{\"sg_layout_testimonial_choose\":\"style-2\",\"sg_testimonials_image_size_imagesize_size\":\"medium\",\"sg_testimonials_list\":[{\"sg_testimonials_list_client_avatar\":{\"id\":\"75\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/3SUMAU.jpg\"},\"_id\":\"6e9b2e1\",\"sg_testimonials_list_client_name\":\"Regan Traynor\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"76\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/CASCKD8.jpg\"},\"sg_testimonials_list_client_name\":\"Maisha Dunn\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"d069a43\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"77\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/MKLVKTE.jpg\"},\"sg_testimonials_list_client_name\":\"Reis Leonard\",\"sg_testimonials_list_designation\":\"Businessman\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"05c24f5\"}],\"st_wrapper_alignment_responsive\":\"left\",\"st_client_name_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_description_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_client_name_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_client_designation_normal_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_client_designation_normal_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=d343bdf\",\"st_rating_color_responsive\":\"\",\"st_client_name_normal_color_responsive\":\"\",\"st_quote_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_layout_background_background_color\":\"\"},\"st_layout_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_layout_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_wrapper_fix_height\":\"\",\"sg_setting_autoplay\":\"yes\",\"sg_setting_autoplay_pause\":\"\",\"sg_setting_arrow\":\"\",\"sg_setting_arrow_position\":\"middle-edge\",\"sg_setting_dots\":\"\",\"sg_setting_quote\":\"yes\",\"sg_setting_rating\":\"\",\"st_layout_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_layout_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_slide_show_responsive\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"sg_setting_quote_icon\":{\"value\":\"jki jki-quote-light\",\"library\":\"jkiticon\"},\"sg_layout_image_position\":\"below\",\"st_layout_background_background_background\":\"classic\",\"st_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position\":\"\",\"st_quote_override_position_top_responsive\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"st_quote_override_position_left_responsive\":{\"unit\":\"px\",\"size\":442,\"sizes\":[]},\"st_client_name_normal_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_quote_normal_font_size_responsive\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"st_client_image_margin_responsive\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_rating_font_size_responsive\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"st_rating_margin_right_responsive\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_setting_slide_show_responsive_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"st_wrapper_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position_top_responsive_tablet\":{\"unit\":\"px\",\"size\":249,\"sizes\":[]},\"st_quote_override_position_top_responsive_mobile\":{\"unit\":\"px\",\"size\":193,\"sizes\":[]},\"st_quote_override_position_left_responsive_tablet\":{\"unit\":\"px\",\"size\":265,\"sizes\":[]},\"st_quote_override_position_left_responsive_mobile\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]},\"st_quote_normal_font_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"st_description_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_normal_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64afd05f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"746d276b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30338dfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f950be4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ca735b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5d6ca3ad\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_title_hover_color_responsive\":\"globals\\/colors?id=secondary\",\"st_readmore_hover_color_responsive\":\"globals\\/colors?id=secondary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#646974\",\"st_excerpt_color_responsive\":\"#646974\",\"st_title_normal_color_responsive\":\"#272B36\",\"st_thumbnail_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_title_hover_color_responsive\":\"#FA8D25\",\"st_readmore_normal_color_responsive\":\"#FA8D25\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":false}],\"isInner\":false}]'),(929,172,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(930,172,'_elementor_css','a:6:{s:4:\"time\";i:1721830347;s:5:\"fonts\";a:1:{i:0;s:5:\"Inter\";}s:5:\"icons\";a:3:{i:0;s:0:\"\";i:1;s:8:\"jkiticon\";i:3;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(931,173,'_elementor_edit_mode','builder'),(932,173,'_elementor_template_type','wp-page'),(933,173,'_elementor_version','3.23.2'),(934,173,'_wp_page_template','default'),(935,173,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(936,173,'_elementor_data','[{\"id\":\"35495243\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"Eldery male gardener using scissors for bushes\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"160\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0,\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_size_tablet\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"top center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00160E\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b\":\"#00000054\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_slideshow_gallery\":[{\"id\":154,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-02-5.jpg\"},{\"id\":155,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-03-3.jpg\"},{\"id\":156,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-04-3.jpg\"},{\"id\":157,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-01-5.jpg\"}]},\"elements\":[{\"id\":\"739a26d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":65,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=06a34e7\"}},\"elements\":[{\"id\":\"132d1a8e\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Complete For All\",\"sg_title_focused\":\" Landscape \",\"sg_title_after\":\" Service And Maintenance\",\"sg_title_html_tag\":\"h1\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=primary\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"7c49583a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"635cb25b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"23cf340e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37.85499999999999687361196265555918216705322265625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":48,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"1c4c950d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4768b6f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":62.14500000000000312638803734444081783294677734375,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"flex-start\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":52,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"34c0badb\",\"elType\":\"widget\",\"settings\":{\"sg_video_button_title\":\"Play Video\",\"sg_video_button_icon\":{\"value\":\"jki jki-play\",\"library\":\"jkiticon\"},\"sg_video_url\":\"#\",\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_width_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_line_height_responsive\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#FFD402\",\"st_button_normal_glow_color_responsive\":\"#00694361\",\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"_element_width\":\"auto\",\"__globals__\":{\"st_button_normal_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=accent\",\"st_border_normal_border_border_color\":\"\",\"st_button_hover_text_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_glow_color_responsive\":\"\"},\"st_button_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_button_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_width_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_line_height_responsive_mobile\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"st_border_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_border_normal_border_border_color\":\"#FFD027\",\"st_button_line_height_responsive_tablet\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"st_button_normal_background_background_color\":\"#006943\",\"st_button_hover_text_color_responsive\":\"#006943\",\"st_button_hover_background_background_color\":\"#FFD402\",\"sg_video_auto_play\":\"\",\"sg_video_mute\":\"\"},\"elements\":[],\"widgetType\":\"jkit_video_button\"},{\"id\":\"232ec8da\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Intro\",\"align\":\"right\",\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"hide_mobile\":\"hidden-mobile\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#00160E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49b348ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"edc2dbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.00200000000000244426701101474463939666748046875,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e2246bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Prestige Luxury Cleanings LLC\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"139cc45f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Landscaping And Garden Care Services\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dc78e71\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"597dc67d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"26cf3840\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b19bda0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":167,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"980\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a46c929\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c4d8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Public Liability Insurance\",\"_id\":\"a978734\"},{\"text\":\"Environmentally Friendly\",\"_id\":\"1cd10a1\"},{\"text\":\"On Time, Every Time\",\"_id\":\"c6767db\"},{\"text\":\"Beautiful Garden Designs\",\"_id\":\"d4743f4\"},{\"text\":\"Modern Machinery And Tool\",\"_id\":\"535c17d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"398321ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4c7c15d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.9129999999999967030817060731351375579833984375,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5683e90d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":162,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"860\",\"height\":\"980\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b6190b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":163,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"-59\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"250636f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"713aa588\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"51a71b71\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#00160E\",\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=primary\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=06a34e7\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"st_content_title_color_responsive\":\"#7F7F7F\",\"st_super_color_responsive\":\"#FFD402\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\",\"sg_setting_html_tag\":\"span\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5557874f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"73847855\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"65\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/garden-maintenance-performed-by-pro-gardener.jpg\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"b1058a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":224,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":478,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":325,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"69098afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"40\",\"bottom\":\"80\",\"left\":\"40\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"7cb7bf82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91cb5d9\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26358abf\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Have The Perfect Solution For Your Landscape Problems\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15a36cc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42c8d36c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7114454f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76f24ca8\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Variation Gardening\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"138cc39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28a78a06\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Expert Landscapers\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c5ac2bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38fdb183\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3ce0b95b\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Affordable Price\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-save-money-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4c80f133\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7451fb11\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Free Consultation\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-Consultancy-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e93f2c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"39a46e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6773b2a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"87647bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find The Best Service For Your Garden\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e2cc66e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30164d28\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e8639b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":142,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-services.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fa92c14\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2c434fb3\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"5abe2e18\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33425b9f\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Lawn Services\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"472ed309\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"67cb221c\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37c1cce6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":143,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/driveway-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b3e60ba\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3b291bbf\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"20b91942\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5649f719\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Driveway Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6300b69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"256ddf68\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3735f0b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":144,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/deck-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"741128a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3691562\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3c8a0e6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5eb1b3b9\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Deck Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"25f37292\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"61c9ff8e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d41e618\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"8781ee3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":145,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/weed-control.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd84c7d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"14f7965\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fb2459e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0582197\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Weed Control \",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"f7b0fa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0197d9e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f3de9c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":146,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/grass-feed.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"75ba950\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"23edbf4\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"ad70b3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1c4ac7\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Grass Feed\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6f592ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0043a3b\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e6d8a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":147,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/edging-Cleaning.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd233da\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6535a16\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"937e2e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7aee\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Edging Cleaning\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"d9723d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"c908972\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"790dd775\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"360\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"160\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"140\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"background_overlay_color_b\":\"#000414\",\"background_overlay_image\":{\"id\":\"69\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/a-gardener-watering-plants-in-a-flowerbed-2RT8DWL.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]}},\"elements\":[{\"id\":\"a2ed5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7e37f762\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Landscaping\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a092069\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d5099\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need Someone To Take Care Your Garden & Lawn?\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=07ee36d\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1198756c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"66521a56\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":20,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":4},\"elements\":[{\"id\":\"1a89d099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.5090000000000003410605131648480892181396484375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"id\":\"70\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/happy-gardeners-with-plants-and-lawn-mower.jpg\"},\"background_position\":\"initial\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"space-between\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_color\":\"#FFFFFF00\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":9,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"46b821c1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":219,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":183,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"449971a9\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Make Appointment & Take Care Your Garden\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=secondary\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=93191b3\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_content_title_color_hover_responsive\":\"#FFFFFF\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#FFFFFF\",\"st_icon_color_responsive\":\"#00E5CC\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#00E5CC\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":false},{\"id\":\"13747b6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.4909999999999996589394868351519107818603515625,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a13f42e\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"260***1635696832144\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fde8487\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"59883b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1617542a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Process\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29c7aa96\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Complete Every Step Carefully\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ced0d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d62463d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18cf7834\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"41f79872\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-consult-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consultation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65e1b761\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"span\",\"title_color\":\"#FFD402\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#006943\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12cdbf13\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4175d29\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-pencil_art-light\",\"library\":\"jkiticon\"},\"title_text\":\"Design Installation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2adabf01\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b628\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"569b3221\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consturction \",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"67d6b2e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6fff79c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53c9a76e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"title_text\":\"Finished Work\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"555aace0\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d57540b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"71\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardening-background-with-garden-tolls-A9BGNJU.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]}},\"elements\":[{\"id\":\"147831a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"5a53d120\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"20\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Years of Experience\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"488f4727\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"6b8f6eae\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"76666759\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f532f9e\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"2850\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Happy Customers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"265fd738\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5473dc22\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"64\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Expert Landscapers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b38731e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4945f2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"627cd42c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65e3182\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.56499999999999772626324556767940521240234375},\"elements\":[{\"id\":\"43108b53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Projects\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45328989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Project We Have Done\\n\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"f382082\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.49900000000000233058017329312860965728759765625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":40,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"55ecfb57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"67afcbfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.0330000000000012505552149377763271331787109375,\"_inline_size_tablet\":23,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4989aa04\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Projects\",\"align\":\"right\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"left\",\"hover_animation\":\"float\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"32515d84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"3f5753f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"21982cfb\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"72\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-pruning-and-shaping-bushes-.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Cutting Leaf\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"404dc561\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"58d29b54\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"73\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/backyard-garden.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Home Garden\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"3bff1dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"3c24185a\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"64\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Build Backyard\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_image_height_responsive_tablet\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b3cb58d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_image\":{\"id\":\"74\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-moving-aerial-photo-Z8KDGJ9.jpg\"},\"background_overlay_color\":\"#0000007D\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]}},\"elements\":[{\"id\":\"79705206\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"51c9a732\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73b2fe0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"What They Says About Us\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4876e632\",\"elType\":\"widget\",\"settings\":{\"sg_layout_testimonial_choose\":\"style-2\",\"sg_testimonials_image_size_imagesize_size\":\"medium\",\"sg_testimonials_list\":[{\"sg_testimonials_list_client_avatar\":{\"id\":\"75\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/3SUMAU.jpg\"},\"_id\":\"6e9b2e1\",\"sg_testimonials_list_client_name\":\"Regan Traynor\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"76\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/CASCKD8.jpg\"},\"sg_testimonials_list_client_name\":\"Maisha Dunn\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"d069a43\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"77\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/MKLVKTE.jpg\"},\"sg_testimonials_list_client_name\":\"Reis Leonard\",\"sg_testimonials_list_designation\":\"Businessman\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"05c24f5\"}],\"st_wrapper_alignment_responsive\":\"left\",\"st_client_name_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_description_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_client_name_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_client_designation_normal_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_client_designation_normal_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=d343bdf\",\"st_rating_color_responsive\":\"\",\"st_client_name_normal_color_responsive\":\"\",\"st_quote_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_layout_background_background_color\":\"\"},\"st_layout_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_layout_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_wrapper_fix_height\":\"\",\"sg_setting_autoplay\":\"yes\",\"sg_setting_autoplay_pause\":\"\",\"sg_setting_arrow\":\"\",\"sg_setting_arrow_position\":\"middle-edge\",\"sg_setting_dots\":\"\",\"sg_setting_quote\":\"yes\",\"sg_setting_rating\":\"\",\"st_layout_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_layout_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_slide_show_responsive\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"sg_setting_quote_icon\":{\"value\":\"jki jki-quote-light\",\"library\":\"jkiticon\"},\"sg_layout_image_position\":\"below\",\"st_layout_background_background_background\":\"classic\",\"st_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position\":\"\",\"st_quote_override_position_top_responsive\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"st_quote_override_position_left_responsive\":{\"unit\":\"px\",\"size\":442,\"sizes\":[]},\"st_client_name_normal_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_quote_normal_font_size_responsive\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"st_client_image_margin_responsive\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_rating_font_size_responsive\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"st_rating_margin_right_responsive\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_setting_slide_show_responsive_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"st_wrapper_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position_top_responsive_tablet\":{\"unit\":\"px\",\"size\":249,\"sizes\":[]},\"st_quote_override_position_top_responsive_mobile\":{\"unit\":\"px\",\"size\":193,\"sizes\":[]},\"st_quote_override_position_left_responsive_tablet\":{\"unit\":\"px\",\"size\":265,\"sizes\":[]},\"st_quote_override_position_left_responsive_mobile\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]},\"st_quote_normal_font_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"st_description_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_normal_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64afd05f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"746d276b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30338dfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f950be4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ca735b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5d6ca3ad\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_title_hover_color_responsive\":\"globals\\/colors?id=secondary\",\"st_readmore_hover_color_responsive\":\"globals\\/colors?id=secondary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#646974\",\"st_excerpt_color_responsive\":\"#646974\",\"st_title_normal_color_responsive\":\"#272B36\",\"st_thumbnail_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_title_hover_color_responsive\":\"#FA8D25\",\"st_readmore_normal_color_responsive\":\"#FA8D25\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":false}],\"isInner\":false}]'),(937,173,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(938,173,'_elementor_css','a:6:{s:4:\"time\";i:1721830347;s:5:\"fonts\";a:1:{i:0;s:5:\"Inter\";}s:5:\"icons\";a:3:{i:0;s:0:\"\";i:1;s:8:\"jkiticon\";i:3;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(939,174,'_wp_attached_file','2024/07/garden-maintenance-performed-by-pro-gardener-1.jpg'),(940,174,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2000;s:6:\"height\";i:1332;s:4:\"file\";s:58:\"2024/07/garden-maintenance-performed-by-pro-gardener-1.jpg\";s:8:\"filesize\";i:1775406;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:58:\"garden-maintenance-performed-by-pro-gardener-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:21217;}s:5:\"large\";a:5:{s:4:\"file\";s:59:\"garden-maintenance-performed-by-pro-gardener-1-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:150714;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:58:\"garden-maintenance-performed-by-pro-gardener-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:9347;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:58:\"garden-maintenance-performed-by-pro-gardener-1-768x511.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:96467;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:60:\"garden-maintenance-performed-by-pro-gardener-1-1536x1023.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1023;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:271286;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(941,175,'_elementor_edit_mode','builder'),(942,175,'_elementor_template_type','wp-page'),(943,175,'_elementor_version','3.23.2'),(944,175,'_wp_page_template','default'),(945,175,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(946,175,'_elementor_data','[{\"id\":\"35495243\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"Eldery male gardener using scissors for bushes\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"160\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0,\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_size_tablet\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"top center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00160E\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b\":\"#00000054\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_slideshow_gallery\":[{\"id\":154,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-02-5.jpg\"},{\"id\":155,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-03-3.jpg\"},{\"id\":156,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-04-3.jpg\"},{\"id\":157,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-01-5.jpg\"}]},\"elements\":[{\"id\":\"739a26d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":65,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=06a34e7\"}},\"elements\":[{\"id\":\"132d1a8e\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Complete For All\",\"sg_title_focused\":\" Landscape \",\"sg_title_after\":\" Service And Maintenance\",\"sg_title_html_tag\":\"h1\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=primary\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"7c49583a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"635cb25b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"23cf340e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37.85499999999999687361196265555918216705322265625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":48,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"1c4c950d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4768b6f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":62.14500000000000312638803734444081783294677734375,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"flex-start\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":52,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"34c0badb\",\"elType\":\"widget\",\"settings\":{\"sg_video_button_title\":\"Play Video\",\"sg_video_button_icon\":{\"value\":\"jki jki-play\",\"library\":\"jkiticon\"},\"sg_video_url\":\"#\",\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_width_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_line_height_responsive\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#FFD402\",\"st_button_normal_glow_color_responsive\":\"#00694361\",\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"_element_width\":\"auto\",\"__globals__\":{\"st_button_normal_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=accent\",\"st_border_normal_border_border_color\":\"\",\"st_button_hover_text_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_glow_color_responsive\":\"\"},\"st_button_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_button_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_width_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_line_height_responsive_mobile\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"st_border_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_border_normal_border_border_color\":\"#FFD027\",\"st_button_line_height_responsive_tablet\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"st_button_normal_background_background_color\":\"#006943\",\"st_button_hover_text_color_responsive\":\"#006943\",\"st_button_hover_background_background_color\":\"#FFD402\",\"sg_video_auto_play\":\"\",\"sg_video_mute\":\"\"},\"elements\":[],\"widgetType\":\"jkit_video_button\"},{\"id\":\"232ec8da\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Intro\",\"align\":\"right\",\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"hide_mobile\":\"hidden-mobile\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#00160E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49b348ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"edc2dbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.00200000000000244426701101474463939666748046875,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e2246bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Prestige Luxury Cleanings LLC\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"139cc45f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Landscaping And Garden Care Services\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dc78e71\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"597dc67d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"26cf3840\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b19bda0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":167,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"980\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a46c929\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c4d8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Public Liability Insurance\",\"_id\":\"a978734\"},{\"text\":\"Environmentally Friendly\",\"_id\":\"1cd10a1\"},{\"text\":\"On Time, Every Time\",\"_id\":\"c6767db\"},{\"text\":\"Beautiful Garden Designs\",\"_id\":\"d4743f4\"},{\"text\":\"Modern Machinery And Tool\",\"_id\":\"535c17d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"398321ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4c7c15d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.9129999999999967030817060731351375579833984375,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5683e90d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":162,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"860\",\"height\":\"980\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b6190b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":163,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"-59\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"250636f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"713aa588\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"51a71b71\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#00160E\",\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=primary\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=06a34e7\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"st_content_title_color_responsive\":\"#7F7F7F\",\"st_super_color_responsive\":\"#FFD402\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\",\"sg_setting_html_tag\":\"span\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5557874f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"73847855\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"65\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/garden-maintenance-performed-by-pro-gardener.jpg\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"b1058a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":224,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":478,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":325,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"69098afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"40\",\"bottom\":\"80\",\"left\":\"40\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"7cb7bf82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91cb5d9\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26358abf\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Have The Perfect Solution For Your Landscape Problems\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15a36cc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42c8d36c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7114454f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76f24ca8\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Variation Gardening\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"138cc39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28a78a06\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Expert Landscapers\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c5ac2bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38fdb183\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3ce0b95b\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Affordable Price\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-save-money-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4c80f133\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7451fb11\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Free Consultation\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-Consultancy-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e93f2c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"39a46e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6773b2a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"87647bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find The Best Service For Your Garden\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e2cc66e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30164d28\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e8639b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":142,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-services.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fa92c14\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2c434fb3\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"5abe2e18\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33425b9f\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Lawn Services\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"472ed309\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"67cb221c\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37c1cce6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":143,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/driveway-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b3e60ba\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3b291bbf\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"20b91942\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5649f719\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Driveway Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6300b69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"256ddf68\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3735f0b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":144,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/deck-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"741128a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3691562\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3c8a0e6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5eb1b3b9\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Deck Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"25f37292\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"61c9ff8e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d41e618\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"8781ee3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":145,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/weed-control.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd84c7d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"14f7965\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fb2459e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0582197\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Weed Control \",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"f7b0fa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0197d9e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f3de9c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":146,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/grass-feed.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"75ba950\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"23edbf4\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"ad70b3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1c4ac7\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Grass Feed\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6f592ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0043a3b\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e6d8a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":147,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/edging-Cleaning.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd233da\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6535a16\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"937e2e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7aee\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Edging Cleaning\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"d9723d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"c908972\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"790dd775\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"360\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"160\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"140\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"background_overlay_color_b\":\"#000414\",\"background_overlay_image\":{\"id\":\"69\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/a-gardener-watering-plants-in-a-flowerbed-2RT8DWL.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]}},\"elements\":[{\"id\":\"a2ed5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7e37f762\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Landscaping\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a092069\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d5099\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need Someone To Take Care Your Garden & Lawn?\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=07ee36d\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1198756c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"66521a56\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":20,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":4},\"elements\":[{\"id\":\"1a89d099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.5090000000000003410605131648480892181396484375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"id\":\"70\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/happy-gardeners-with-plants-and-lawn-mower.jpg\"},\"background_position\":\"initial\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"space-between\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_color\":\"#FFFFFF00\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":9,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"46b821c1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":219,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":183,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"449971a9\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Make Appointment & Take Care Your Garden\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=secondary\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=93191b3\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_content_title_color_hover_responsive\":\"#FFFFFF\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#FFFFFF\",\"st_icon_color_responsive\":\"#00E5CC\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#00E5CC\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":false},{\"id\":\"13747b6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.4909999999999996589394868351519107818603515625,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a13f42e\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"260***1635696832144\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fde8487\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"59883b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1617542a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Process\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29c7aa96\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Complete Every Step Carefully\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ced0d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d62463d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18cf7834\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"41f79872\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-consult-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consultation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65e1b761\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"span\",\"title_color\":\"#FFD402\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#006943\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12cdbf13\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4175d29\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-pencil_art-light\",\"library\":\"jkiticon\"},\"title_text\":\"Design Installation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2adabf01\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b628\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"569b3221\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consturction \",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"67d6b2e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6fff79c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53c9a76e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"title_text\":\"Finished Work\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"555aace0\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d57540b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"71\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardening-background-with-garden-tolls-A9BGNJU.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]}},\"elements\":[{\"id\":\"147831a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"5a53d120\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"20\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Years of Experience\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"488f4727\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"6b8f6eae\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"76666759\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f532f9e\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"2850\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Happy Customers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"265fd738\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5473dc22\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"64\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Expert Landscapers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b38731e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4945f2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"627cd42c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65e3182\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.56499999999999772626324556767940521240234375},\"elements\":[{\"id\":\"43108b53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Projects\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45328989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Project We Have Done\\n\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"f382082\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.49900000000000233058017329312860965728759765625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":40,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"55ecfb57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"67afcbfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.0330000000000012505552149377763271331787109375,\"_inline_size_tablet\":23,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4989aa04\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Projects\",\"align\":\"right\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"left\",\"hover_animation\":\"float\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"32515d84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"3f5753f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"21982cfb\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"72\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-pruning-and-shaping-bushes-.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Cutting Leaf\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"404dc561\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"58d29b54\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"73\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/backyard-garden.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Home Garden\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"3bff1dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"3c24185a\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"64\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Build Backyard\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_image_height_responsive_tablet\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b3cb58d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_image\":{\"id\":\"74\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-moving-aerial-photo-Z8KDGJ9.jpg\"},\"background_overlay_color\":\"#0000007D\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]}},\"elements\":[{\"id\":\"79705206\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"51c9a732\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73b2fe0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"What They Says About Us\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4876e632\",\"elType\":\"widget\",\"settings\":{\"sg_layout_testimonial_choose\":\"style-2\",\"sg_testimonials_image_size_imagesize_size\":\"medium\",\"sg_testimonials_list\":[{\"sg_testimonials_list_client_avatar\":{\"id\":\"75\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/3SUMAU.jpg\"},\"_id\":\"6e9b2e1\",\"sg_testimonials_list_client_name\":\"Regan Traynor\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"76\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/CASCKD8.jpg\"},\"sg_testimonials_list_client_name\":\"Maisha Dunn\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"d069a43\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"77\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/MKLVKTE.jpg\"},\"sg_testimonials_list_client_name\":\"Reis Leonard\",\"sg_testimonials_list_designation\":\"Businessman\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"05c24f5\"}],\"st_wrapper_alignment_responsive\":\"left\",\"st_client_name_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_description_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_client_name_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_client_designation_normal_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_client_designation_normal_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=d343bdf\",\"st_rating_color_responsive\":\"\",\"st_client_name_normal_color_responsive\":\"\",\"st_quote_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_layout_background_background_color\":\"\"},\"st_layout_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_layout_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_wrapper_fix_height\":\"\",\"sg_setting_autoplay\":\"yes\",\"sg_setting_autoplay_pause\":\"\",\"sg_setting_arrow\":\"\",\"sg_setting_arrow_position\":\"middle-edge\",\"sg_setting_dots\":\"\",\"sg_setting_quote\":\"yes\",\"sg_setting_rating\":\"\",\"st_layout_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_layout_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_slide_show_responsive\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"sg_setting_quote_icon\":{\"value\":\"jki jki-quote-light\",\"library\":\"jkiticon\"},\"sg_layout_image_position\":\"below\",\"st_layout_background_background_background\":\"classic\",\"st_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position\":\"\",\"st_quote_override_position_top_responsive\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"st_quote_override_position_left_responsive\":{\"unit\":\"px\",\"size\":442,\"sizes\":[]},\"st_client_name_normal_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_quote_normal_font_size_responsive\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"st_client_image_margin_responsive\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_rating_font_size_responsive\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"st_rating_margin_right_responsive\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_setting_slide_show_responsive_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"st_wrapper_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position_top_responsive_tablet\":{\"unit\":\"px\",\"size\":249,\"sizes\":[]},\"st_quote_override_position_top_responsive_mobile\":{\"unit\":\"px\",\"size\":193,\"sizes\":[]},\"st_quote_override_position_left_responsive_tablet\":{\"unit\":\"px\",\"size\":265,\"sizes\":[]},\"st_quote_override_position_left_responsive_mobile\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]},\"st_quote_normal_font_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"st_description_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_normal_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64afd05f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"746d276b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30338dfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f950be4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ca735b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5d6ca3ad\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_title_hover_color_responsive\":\"globals\\/colors?id=secondary\",\"st_readmore_hover_color_responsive\":\"globals\\/colors?id=secondary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#646974\",\"st_excerpt_color_responsive\":\"#646974\",\"st_title_normal_color_responsive\":\"#272B36\",\"st_thumbnail_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_title_hover_color_responsive\":\"#FA8D25\",\"st_readmore_normal_color_responsive\":\"#FA8D25\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":false}],\"isInner\":false}]'),(947,175,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(948,176,'_elementor_edit_mode','builder'),(949,176,'_elementor_template_type','wp-page'),(950,176,'_elementor_version','3.23.2'),(951,176,'_wp_page_template','default'),(952,176,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(953,176,'_elementor_data','[{\"id\":\"35495243\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"Eldery male gardener using scissors for bushes\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"160\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0,\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_size_tablet\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"top center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00160E\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b\":\"#00000054\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_slideshow_gallery\":[{\"id\":154,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-02-5.jpg\"},{\"id\":155,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-03-3.jpg\"},{\"id\":156,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-04-3.jpg\"},{\"id\":157,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-01-5.jpg\"}]},\"elements\":[{\"id\":\"739a26d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":65,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=06a34e7\"}},\"elements\":[{\"id\":\"132d1a8e\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Complete For All\",\"sg_title_focused\":\" Landscape \",\"sg_title_after\":\" Service And Maintenance\",\"sg_title_html_tag\":\"h1\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=primary\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"7c49583a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"635cb25b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"23cf340e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37.85499999999999687361196265555918216705322265625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":48,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"1c4c950d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4768b6f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":62.14500000000000312638803734444081783294677734375,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"flex-start\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":52,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"34c0badb\",\"elType\":\"widget\",\"settings\":{\"sg_video_button_title\":\"Play Video\",\"sg_video_button_icon\":{\"value\":\"jki jki-play\",\"library\":\"jkiticon\"},\"sg_video_url\":\"#\",\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_width_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_line_height_responsive\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#FFD402\",\"st_button_normal_glow_color_responsive\":\"#00694361\",\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"_element_width\":\"auto\",\"__globals__\":{\"st_button_normal_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=accent\",\"st_border_normal_border_border_color\":\"\",\"st_button_hover_text_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_glow_color_responsive\":\"\"},\"st_button_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_button_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_width_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_line_height_responsive_mobile\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"st_border_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_border_normal_border_border_color\":\"#FFD027\",\"st_button_line_height_responsive_tablet\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"st_button_normal_background_background_color\":\"#006943\",\"st_button_hover_text_color_responsive\":\"#006943\",\"st_button_hover_background_background_color\":\"#FFD402\",\"sg_video_auto_play\":\"\",\"sg_video_mute\":\"\"},\"elements\":[],\"widgetType\":\"jkit_video_button\"},{\"id\":\"232ec8da\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Intro\",\"align\":\"right\",\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"hide_mobile\":\"hidden-mobile\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#00160E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49b348ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"edc2dbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.00200000000000244426701101474463939666748046875,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e2246bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Prestige Luxury Cleanings LLC\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"139cc45f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Landscaping And Garden Care Services\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dc78e71\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"597dc67d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"26cf3840\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b19bda0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":167,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"980\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a46c929\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c4d8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Public Liability Insurance\",\"_id\":\"a978734\"},{\"text\":\"Environmentally Friendly\",\"_id\":\"1cd10a1\"},{\"text\":\"On Time, Every Time\",\"_id\":\"c6767db\"},{\"text\":\"Beautiful Garden Designs\",\"_id\":\"d4743f4\"},{\"text\":\"Modern Machinery And Tool\",\"_id\":\"535c17d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"398321ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4c7c15d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.9129999999999967030817060731351375579833984375,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5683e90d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":162,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"860\",\"height\":\"980\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b6190b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":163,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"-59\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"250636f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"713aa588\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"51a71b71\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#00160E\",\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=primary\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=06a34e7\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"st_content_title_color_responsive\":\"#7F7F7F\",\"st_super_color_responsive\":\"#FFD402\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\",\"sg_setting_html_tag\":\"span\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5557874f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"73847855\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"65\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/garden-maintenance-performed-by-pro-gardener.jpg\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"b1058a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":224,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":478,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":325,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"69098afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"40\",\"bottom\":\"80\",\"left\":\"40\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"7cb7bf82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91cb5d9\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26358abf\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Have The Perfect Solution For Your Landscape Problems\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15a36cc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42c8d36c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7114454f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76f24ca8\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Variation Gardening\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"138cc39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28a78a06\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Expert Landscapers\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c5ac2bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38fdb183\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3ce0b95b\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Affordable Price\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-save-money-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4c80f133\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7451fb11\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Free Consultation\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-Consultancy-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e93f2c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"39a46e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6773b2a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"87647bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find The Best Service For Your Garden\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e2cc66e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30164d28\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e8639b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":142,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-services.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fa92c14\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2c434fb3\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"5abe2e18\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33425b9f\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Lawn Services\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"472ed309\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"67cb221c\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37c1cce6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":143,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/driveway-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b3e60ba\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3b291bbf\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"20b91942\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5649f719\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Driveway Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6300b69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"256ddf68\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3735f0b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":144,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/deck-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"741128a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3691562\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3c8a0e6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5eb1b3b9\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Deck Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"25f37292\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"61c9ff8e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d41e618\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"8781ee3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":145,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/weed-control.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd84c7d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"14f7965\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fb2459e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0582197\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Weed Control \",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"f7b0fa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0197d9e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f3de9c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":146,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/grass-feed.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"75ba950\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"23edbf4\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"ad70b3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1c4ac7\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Grass Feed\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6f592ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0043a3b\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e6d8a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":147,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/edging-Cleaning.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd233da\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6535a16\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"937e2e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7aee\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Edging Cleaning\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"d9723d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"c908972\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"790dd775\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"360\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"160\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"140\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"background_overlay_color_b\":\"#000414\",\"background_overlay_image\":{\"id\":\"69\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/a-gardener-watering-plants-in-a-flowerbed-2RT8DWL.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]}},\"elements\":[{\"id\":\"a2ed5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7e37f762\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Landscaping\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a092069\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d5099\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need Someone To Take Care Your Garden & Lawn?\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=07ee36d\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1198756c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"66521a56\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":20,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":4},\"elements\":[{\"id\":\"1a89d099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.5090000000000003410605131648480892181396484375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"id\":\"70\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/happy-gardeners-with-plants-and-lawn-mower.jpg\"},\"background_position\":\"initial\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"space-between\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_color\":\"#FFFFFF00\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":9,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"46b821c1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":219,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":183,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"449971a9\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Make Appointment & Take Care Your Garden\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=secondary\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=93191b3\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_content_title_color_hover_responsive\":\"#FFFFFF\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#FFFFFF\",\"st_icon_color_responsive\":\"#00E5CC\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#00E5CC\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":false},{\"id\":\"13747b6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.4909999999999996589394868351519107818603515625,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a13f42e\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"260***1635696832144\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fde8487\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"59883b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1617542a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Process\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29c7aa96\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Complete Every Step Carefully\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ced0d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d62463d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18cf7834\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"41f79872\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-consult-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consultation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65e1b761\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"span\",\"title_color\":\"#FFD402\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#006943\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12cdbf13\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4175d29\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-pencil_art-light\",\"library\":\"jkiticon\"},\"title_text\":\"Design Installation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2adabf01\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b628\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"569b3221\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consturction \",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"67d6b2e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6fff79c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53c9a76e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"title_text\":\"Finished Work\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"555aace0\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d57540b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"71\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardening-background-with-garden-tolls-A9BGNJU.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]}},\"elements\":[{\"id\":\"147831a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"5a53d120\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"20\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Years of Experience\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"488f4727\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"6b8f6eae\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"76666759\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f532f9e\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"2850\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Happy Customers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"265fd738\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5473dc22\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"64\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Expert Landscapers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b38731e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4945f2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"627cd42c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65e3182\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.56499999999999772626324556767940521240234375},\"elements\":[{\"id\":\"43108b53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Projects\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45328989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Project We Have Done\\n\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"f382082\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.49900000000000233058017329312860965728759765625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":40,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"55ecfb57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"67afcbfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.0330000000000012505552149377763271331787109375,\"_inline_size_tablet\":23,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4989aa04\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Projects\",\"align\":\"right\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"left\",\"hover_animation\":\"float\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"32515d84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"3f5753f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"21982cfb\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"72\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-pruning-and-shaping-bushes-.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Cutting Leaf\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"404dc561\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"58d29b54\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"73\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/backyard-garden.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Home Garden\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"3bff1dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"3c24185a\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"64\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Build Backyard\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_image_height_responsive_tablet\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b3cb58d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_image\":{\"id\":\"74\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-moving-aerial-photo-Z8KDGJ9.jpg\"},\"background_overlay_color\":\"#0000007D\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]}},\"elements\":[{\"id\":\"79705206\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"51c9a732\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73b2fe0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"What They Says About Us\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4876e632\",\"elType\":\"widget\",\"settings\":{\"sg_layout_testimonial_choose\":\"style-2\",\"sg_testimonials_image_size_imagesize_size\":\"medium\",\"sg_testimonials_list\":[{\"sg_testimonials_list_client_avatar\":{\"id\":\"75\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/3SUMAU.jpg\"},\"_id\":\"6e9b2e1\",\"sg_testimonials_list_client_name\":\"Regan Traynor\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"76\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/CASCKD8.jpg\"},\"sg_testimonials_list_client_name\":\"Maisha Dunn\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"d069a43\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"77\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/MKLVKTE.jpg\"},\"sg_testimonials_list_client_name\":\"Reis Leonard\",\"sg_testimonials_list_designation\":\"Businessman\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"05c24f5\"}],\"st_wrapper_alignment_responsive\":\"left\",\"st_client_name_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_description_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_client_name_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_client_designation_normal_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_client_designation_normal_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=d343bdf\",\"st_rating_color_responsive\":\"\",\"st_client_name_normal_color_responsive\":\"\",\"st_quote_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_layout_background_background_color\":\"\"},\"st_layout_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_layout_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_wrapper_fix_height\":\"\",\"sg_setting_autoplay\":\"yes\",\"sg_setting_autoplay_pause\":\"\",\"sg_setting_arrow\":\"\",\"sg_setting_arrow_position\":\"middle-edge\",\"sg_setting_dots\":\"\",\"sg_setting_quote\":\"yes\",\"sg_setting_rating\":\"\",\"st_layout_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_layout_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_slide_show_responsive\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"sg_setting_quote_icon\":{\"value\":\"jki jki-quote-light\",\"library\":\"jkiticon\"},\"sg_layout_image_position\":\"below\",\"st_layout_background_background_background\":\"classic\",\"st_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position\":\"\",\"st_quote_override_position_top_responsive\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"st_quote_override_position_left_responsive\":{\"unit\":\"px\",\"size\":442,\"sizes\":[]},\"st_client_name_normal_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_quote_normal_font_size_responsive\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"st_client_image_margin_responsive\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_rating_font_size_responsive\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"st_rating_margin_right_responsive\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_setting_slide_show_responsive_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"st_wrapper_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position_top_responsive_tablet\":{\"unit\":\"px\",\"size\":249,\"sizes\":[]},\"st_quote_override_position_top_responsive_mobile\":{\"unit\":\"px\",\"size\":193,\"sizes\":[]},\"st_quote_override_position_left_responsive_tablet\":{\"unit\":\"px\",\"size\":265,\"sizes\":[]},\"st_quote_override_position_left_responsive_mobile\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]},\"st_quote_normal_font_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"st_description_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_normal_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64afd05f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"746d276b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30338dfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f950be4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ca735b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5d6ca3ad\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_title_hover_color_responsive\":\"globals\\/colors?id=secondary\",\"st_readmore_hover_color_responsive\":\"globals\\/colors?id=secondary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#646974\",\"st_excerpt_color_responsive\":\"#646974\",\"st_title_normal_color_responsive\":\"#272B36\",\"st_thumbnail_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_title_hover_color_responsive\":\"#FA8D25\",\"st_readmore_normal_color_responsive\":\"#FA8D25\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":false}],\"isInner\":false}]'),(954,176,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(955,177,'_elementor_edit_mode','builder'),(956,177,'_elementor_template_type','wp-page'),(957,177,'_elementor_version','3.23.2'),(958,177,'_wp_page_template','default'),(959,177,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(960,177,'_elementor_data','[{\"id\":\"35495243\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"Eldery male gardener using scissors for bushes\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"160\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0,\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_size_tablet\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"top center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00160E\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b\":\"#00000054\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_slideshow_gallery\":[{\"id\":154,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-02-5.jpg\"},{\"id\":155,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-03-3.jpg\"},{\"id\":156,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-04-3.jpg\"},{\"id\":157,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-01-5.jpg\"}]},\"elements\":[{\"id\":\"739a26d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":65,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=06a34e7\"}},\"elements\":[{\"id\":\"132d1a8e\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Complete For All\",\"sg_title_focused\":\" Landscape \",\"sg_title_after\":\" Service And Maintenance\",\"sg_title_html_tag\":\"h1\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=primary\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"7c49583a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"635cb25b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"23cf340e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37.85499999999999687361196265555918216705322265625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":48,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"1c4c950d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4768b6f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":62.14500000000000312638803734444081783294677734375,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"flex-start\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":52,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"34c0badb\",\"elType\":\"widget\",\"settings\":{\"sg_video_button_title\":\"Play Video\",\"sg_video_button_icon\":{\"value\":\"jki jki-play\",\"library\":\"jkiticon\"},\"sg_video_url\":\"#\",\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_width_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_line_height_responsive\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#FFD402\",\"st_button_normal_glow_color_responsive\":\"#00694361\",\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"_element_width\":\"auto\",\"__globals__\":{\"st_button_normal_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=accent\",\"st_border_normal_border_border_color\":\"\",\"st_button_hover_text_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_glow_color_responsive\":\"\"},\"st_button_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_button_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_width_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_line_height_responsive_mobile\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"st_border_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_border_normal_border_border_color\":\"#FFD027\",\"st_button_line_height_responsive_tablet\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"st_button_normal_background_background_color\":\"#006943\",\"st_button_hover_text_color_responsive\":\"#006943\",\"st_button_hover_background_background_color\":\"#FFD402\",\"sg_video_auto_play\":\"\",\"sg_video_mute\":\"\"},\"elements\":[],\"widgetType\":\"jkit_video_button\"},{\"id\":\"232ec8da\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Intro\",\"align\":\"right\",\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"hide_mobile\":\"hidden-mobile\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#00160E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49b348ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"edc2dbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.00200000000000244426701101474463939666748046875,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e2246bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Prestige Luxury Cleanings LLC\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"139cc45f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Landscaping And Garden Care Services\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dc78e71\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"597dc67d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"26cf3840\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b19bda0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":167,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"980\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a46c929\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c4d8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Public Liability Insurance\",\"_id\":\"a978734\"},{\"text\":\"Environmentally Friendly\",\"_id\":\"1cd10a1\"},{\"text\":\"On Time, Every Time\",\"_id\":\"c6767db\"},{\"text\":\"Beautiful Garden Designs\",\"_id\":\"d4743f4\"},{\"text\":\"Modern Machinery And Tool\",\"_id\":\"535c17d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"398321ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4c7c15d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.9129999999999967030817060731351375579833984375,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5683e90d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":162,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"860\",\"height\":\"980\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b6190b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":163,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"-59\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"250636f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"713aa588\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"51a71b71\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#00160E\",\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=primary\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=06a34e7\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"st_content_title_color_responsive\":\"#7F7F7F\",\"st_super_color_responsive\":\"#FFD402\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\",\"sg_setting_html_tag\":\"span\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5557874f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"73847855\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":174,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/garden-maintenance-performed-by-pro-gardener-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"b1058a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":224,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":478,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":325,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"69098afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"40\",\"bottom\":\"80\",\"left\":\"40\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"7cb7bf82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91cb5d9\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26358abf\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Have The Perfect Solution For Your Landscape Problems\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15a36cc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42c8d36c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7114454f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76f24ca8\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Variation Gardening\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"138cc39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28a78a06\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Expert Landscapers\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c5ac2bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38fdb183\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3ce0b95b\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Affordable Price\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-save-money-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4c80f133\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7451fb11\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Free Consultation\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-Consultancy-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e93f2c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"39a46e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6773b2a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"87647bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find The Best Service For Your Garden\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e2cc66e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30164d28\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e8639b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":142,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-services.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fa92c14\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2c434fb3\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"5abe2e18\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33425b9f\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Lawn Services\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"472ed309\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"67cb221c\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37c1cce6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":143,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/driveway-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b3e60ba\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3b291bbf\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"20b91942\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5649f719\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Driveway Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6300b69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"256ddf68\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3735f0b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":144,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/deck-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"741128a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3691562\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3c8a0e6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5eb1b3b9\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Deck Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"25f37292\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"61c9ff8e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d41e618\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"8781ee3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":145,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/weed-control.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd84c7d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"14f7965\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fb2459e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0582197\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Weed Control \",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"f7b0fa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0197d9e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f3de9c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":146,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/grass-feed.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"75ba950\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"23edbf4\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"ad70b3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1c4ac7\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Grass Feed\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6f592ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0043a3b\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e6d8a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":147,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/edging-Cleaning.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd233da\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6535a16\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"937e2e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7aee\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Edging Cleaning\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"d9723d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"c908972\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"790dd775\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"360\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"160\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"140\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"background_overlay_color_b\":\"#000414\",\"background_overlay_image\":{\"id\":\"69\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/a-gardener-watering-plants-in-a-flowerbed-2RT8DWL.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]}},\"elements\":[{\"id\":\"a2ed5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7e37f762\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Landscaping\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a092069\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d5099\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need Someone To Take Care Your Garden & Lawn?\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=07ee36d\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1198756c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"66521a56\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":20,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":4},\"elements\":[{\"id\":\"1a89d099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.5090000000000003410605131648480892181396484375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"id\":\"70\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/happy-gardeners-with-plants-and-lawn-mower.jpg\"},\"background_position\":\"initial\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"space-between\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_color\":\"#FFFFFF00\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":9,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"46b821c1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":219,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":183,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"449971a9\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Make Appointment & Take Care Your Garden\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=secondary\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=93191b3\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_content_title_color_hover_responsive\":\"#FFFFFF\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#FFFFFF\",\"st_icon_color_responsive\":\"#00E5CC\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#00E5CC\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":false},{\"id\":\"13747b6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.4909999999999996589394868351519107818603515625,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a13f42e\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"260***1635696832144\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fde8487\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"59883b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1617542a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Process\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29c7aa96\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Complete Every Step Carefully\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ced0d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d62463d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18cf7834\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"41f79872\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-consult-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consultation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65e1b761\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"span\",\"title_color\":\"#FFD402\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#006943\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12cdbf13\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4175d29\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-pencil_art-light\",\"library\":\"jkiticon\"},\"title_text\":\"Design Installation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2adabf01\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b628\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"569b3221\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consturction \",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"67d6b2e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6fff79c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53c9a76e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"title_text\":\"Finished Work\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"555aace0\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d57540b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"71\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardening-background-with-garden-tolls-A9BGNJU.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]}},\"elements\":[{\"id\":\"147831a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"5a53d120\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"20\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Years of Experience\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"488f4727\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"6b8f6eae\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"76666759\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f532f9e\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"2850\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Happy Customers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"265fd738\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5473dc22\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"64\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Expert Landscapers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b38731e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4945f2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"627cd42c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65e3182\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.56499999999999772626324556767940521240234375},\"elements\":[{\"id\":\"43108b53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Projects\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45328989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Project We Have Done\\n\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"f382082\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.49900000000000233058017329312860965728759765625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":40,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"55ecfb57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"67afcbfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.0330000000000012505552149377763271331787109375,\"_inline_size_tablet\":23,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4989aa04\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Projects\",\"align\":\"right\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"left\",\"hover_animation\":\"float\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"32515d84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"3f5753f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"21982cfb\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"72\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-pruning-and-shaping-bushes-.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Cutting Leaf\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"404dc561\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"58d29b54\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"73\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/backyard-garden.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Home Garden\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"3bff1dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"3c24185a\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"64\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Build Backyard\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_image_height_responsive_tablet\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b3cb58d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_image\":{\"id\":\"74\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-moving-aerial-photo-Z8KDGJ9.jpg\"},\"background_overlay_color\":\"#0000007D\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]}},\"elements\":[{\"id\":\"79705206\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"51c9a732\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73b2fe0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"What They Says About Us\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4876e632\",\"elType\":\"widget\",\"settings\":{\"sg_layout_testimonial_choose\":\"style-2\",\"sg_testimonials_image_size_imagesize_size\":\"medium\",\"sg_testimonials_list\":[{\"sg_testimonials_list_client_avatar\":{\"id\":\"75\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/3SUMAU.jpg\"},\"_id\":\"6e9b2e1\",\"sg_testimonials_list_client_name\":\"Regan Traynor\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"76\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/CASCKD8.jpg\"},\"sg_testimonials_list_client_name\":\"Maisha Dunn\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"d069a43\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"77\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/MKLVKTE.jpg\"},\"sg_testimonials_list_client_name\":\"Reis Leonard\",\"sg_testimonials_list_designation\":\"Businessman\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"05c24f5\"}],\"st_wrapper_alignment_responsive\":\"left\",\"st_client_name_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_description_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_client_name_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_client_designation_normal_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_client_designation_normal_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=d343bdf\",\"st_rating_color_responsive\":\"\",\"st_client_name_normal_color_responsive\":\"\",\"st_quote_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_layout_background_background_color\":\"\"},\"st_layout_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_layout_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_wrapper_fix_height\":\"\",\"sg_setting_autoplay\":\"yes\",\"sg_setting_autoplay_pause\":\"\",\"sg_setting_arrow\":\"\",\"sg_setting_arrow_position\":\"middle-edge\",\"sg_setting_dots\":\"\",\"sg_setting_quote\":\"yes\",\"sg_setting_rating\":\"\",\"st_layout_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_layout_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_slide_show_responsive\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"sg_setting_quote_icon\":{\"value\":\"jki jki-quote-light\",\"library\":\"jkiticon\"},\"sg_layout_image_position\":\"below\",\"st_layout_background_background_background\":\"classic\",\"st_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position\":\"\",\"st_quote_override_position_top_responsive\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"st_quote_override_position_left_responsive\":{\"unit\":\"px\",\"size\":442,\"sizes\":[]},\"st_client_name_normal_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_quote_normal_font_size_responsive\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"st_client_image_margin_responsive\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_rating_font_size_responsive\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"st_rating_margin_right_responsive\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_setting_slide_show_responsive_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"st_wrapper_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position_top_responsive_tablet\":{\"unit\":\"px\",\"size\":249,\"sizes\":[]},\"st_quote_override_position_top_responsive_mobile\":{\"unit\":\"px\",\"size\":193,\"sizes\":[]},\"st_quote_override_position_left_responsive_tablet\":{\"unit\":\"px\",\"size\":265,\"sizes\":[]},\"st_quote_override_position_left_responsive_mobile\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]},\"st_quote_normal_font_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"st_description_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_normal_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64afd05f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"746d276b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30338dfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f950be4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ca735b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5d6ca3ad\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_title_hover_color_responsive\":\"globals\\/colors?id=secondary\",\"st_readmore_hover_color_responsive\":\"globals\\/colors?id=secondary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#646974\",\"st_excerpt_color_responsive\":\"#646974\",\"st_title_normal_color_responsive\":\"#272B36\",\"st_thumbnail_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_title_hover_color_responsive\":\"#FA8D25\",\"st_readmore_normal_color_responsive\":\"#FA8D25\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":false}],\"isInner\":false}]'),(961,177,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(963,178,'_wp_page_template','elementor_canvas'),(964,178,'metform_form__form_setting','a:137:{s:10:\"form_title\";s:16:\"Appointment Form\";s:9:\"form_type\";s:12:\"general-form\";s:15:\"success_message\";s:39:\"Thank you! Form submitted successfully.\";s:12:\"quiz_summery\";s:0:\"\";s:13:\"store_entries\";s:1:\"1\";s:11:\"entry_title\";s:0:\"\";s:26:\"hide_form_after_submission\";s:0:\"\";s:11:\"redirect_to\";s:0:\"\";s:11:\"success_url\";s:0:\"\";s:17:\"failed_cancel_url\";s:0:\"\";s:13:\"require_login\";s:0:\"\";s:26:\"limit_total_entries_status\";s:0:\"\";s:19:\"limit_total_entries\";s:0:\"\";s:11:\"count_views\";s:0:\"\";s:26:\"mf_stop_vertical_scrolling\";s:0:\"\";s:19:\"multiple_submission\";s:0:\"\";s:16:\"enable_recaptcha\";s:0:\"\";s:25:\"capture_user_browser_data\";s:0:\"\";s:24:\"enable_user_notification\";s:0:\"\";s:18:\"user_email_subject\";s:0:\"\";s:15:\"user_email_from\";s:0:\"\";s:19:\"user_email_reply_to\";s:0:\"\";s:15:\"user_email_body\";s:0:\"\";s:33:\"user_email_attach_submission_copy\";s:0:\"\";s:25:\"enable_admin_notification\";s:0:\"\";s:19:\"admin_email_subject\";s:0:\"\";s:16:\"admin_email_from\";s:0:\"\";s:14:\"admin_email_to\";s:0:\"\";s:20:\"admin_email_reply_to\";s:0:\"\";s:16:\"admin_email_body\";s:0:\"\";s:34:\"admin_email_attach_submission_copy\";s:0:\"\";s:13:\"mf_mail_chimp\";s:0:\"\";s:15:\"mf_get_response\";s:0:\"\";s:22:\"mf_get_reponse_api_key\";s:0:\"\";s:23:\"mf_get_response_list_id\";s:0:\"\";s:11:\"mf_automizy\";s:0:\"\";s:21:\"mf_automizy_api_token\";s:0:\"\";s:19:\"mf_automizy_list_id\";s:0:\"\";s:11:\"mf_rest_api\";s:0:\"\";s:15:\"mf_rest_api_url\";s:0:\"\";s:18:\"mf_rest_api_method\";s:0:\"\";s:20:\"mf_mailchimp_api_key\";s:0:\"\";s:26:\"mf_active_campaign_api_key\";s:0:\"\";s:22:\"mf_active_campaign_url\";s:0:\"\";s:20:\"mf_mailchimp_list_id\";s:0:\"\";s:9:\"mf_zapier\";s:0:\"\";s:17:\"mf_zapier_webhook\";s:0:\"\";s:8:\"mf_slack\";s:0:\"\";s:16:\"mf_slack_webhook\";s:0:\"\";s:9:\"mf_fluent\";s:0:\"\";s:17:\"mf_fluent_webhook\";s:0:\"\";s:17:\"mf_thank_you_page\";s:0:\"\";s:14:\"mf_cancel_page\";s:0:\"\";s:9:\"mf_paypal\";s:0:\"\";s:19:\"mf_payment_currency\";s:0:\"\";s:15:\"mf_paypal_email\";s:0:\"\";s:15:\"mf_paypal_token\";s:0:\"\";s:17:\"mf_paypal_sandbox\";s:0:\"\";s:9:\"mf_stripe\";s:0:\"\";s:19:\"mf_stripe_image_url\";s:0:\"\";s:31:\"mf_stripe_live_publishiable_key\";s:0:\"\";s:25:\"mf_stripe_live_secret_key\";s:0:\"\";s:17:\"mf_stripe_sandbox\";s:0:\"\";s:31:\"mf_stripe_test_publishiable_key\";s:0:\"\";s:25:\"mf_stripe_test_secret_key\";s:0:\"\";s:21:\"mf_google_map_api_key\";s:0:\"\";s:16:\"mf_save_progress\";s:0:\"\";s:18:\"mf_field_name_show\";s:0:\"\";s:12:\"mf_recaptcha\";s:0:\"\";s:20:\"mf_recaptcha_version\";s:0:\"\";s:21:\"mf_recaptcha_site_key\";s:0:\"\";s:23:\"mf_recaptcha_secret_key\";s:0:\"\";s:24:\"mf_recaptcha_site_key_v3\";s:0:\"\";s:26:\"mf_recaptcha_secret_key_v3\";s:0:\"\";s:14:\"mf_convert_kit\";s:0:\"\";s:15:\"mf_ckit_list_id\";s:0:\"\";s:15:\"mf_ckit_api_key\";s:0:\"\";s:15:\"mf_ckit_sec_key\";s:0:\"\";s:21:\"mf_aweber_dev_api_key\";s:0:\"\";s:21:\"mf_aweber_dev_api_sec\";s:0:\"\";s:14:\"mf_mail_aweber\";s:0:\"\";s:17:\"mf_aweber_list_id\";s:0:\"\";s:18:\"mf_active_campaign\";s:0:\"\";s:26:\"mf_active_campaign_list_id\";s:0:\"\";s:25:\"mf_active_campaign_tag_id\";s:0:\"\";s:12:\"mf_mail_poet\";s:0:\"\";s:20:\"mf_mail_poet_list_id\";s:0:\"\";s:10:\"mf_hubspot\";s:0:\"\";s:16:\"mf_hubspot_forms\";s:0:\"\";s:16:\"mf_hubsopt_token\";s:0:\"\";s:24:\"mf_hubsopt_refresh_token\";s:0:\"\";s:21:\"mf_hubsopt_token_type\";s:0:\"\";s:21:\"mf_hubsopt_expires_in\";s:0:\"\";s:20:\"mf_hubspot_form_guid\";s:0:\"\";s:24:\"mf_hubspot_form_portalId\";s:0:\"\";s:7:\"mf_zoho\";s:0:\"\";s:13:\"mf_zoho_token\";s:0:\"\";s:15:\"mf_registration\";s:0:\"\";s:8:\"mf_login\";s:0:\"\";s:15:\"mf_form_to_post\";s:0:\"\";s:11:\"mf_mailster\";s:0:\"\";s:19:\"mf_mailster_list_id\";s:0:\"\";s:18:\"mf_mailster_fields\";s:0:\"\";s:28:\"mf_post_submission_post_type\";s:0:\"\";s:24:\"mf_post_submission_title\";s:0:\"\";s:26:\"mf_post_submission_content\";s:0:\"\";s:25:\"mf_post_submission_author\";s:0:\"\";s:33:\"mf_post_submission_featured_image\";s:0:\"\";s:12:\"mf_helpscout\";s:0:\"\";s:19:\"mf_helpscout_app_id\";s:0:\"\";s:23:\"mf_helpscout_app_secret\";s:0:\"\";s:18:\"mf_helpscout_token\";s:0:\"\";s:20:\"mf_helpscout_mailbox\";s:0:\"\";s:33:\"mf_helpscout_conversation_subject\";s:0:\"\";s:40:\"mf_helpscout_conversation_customer_email\";s:0:\"\";s:45:\"mf_helpscout_conversation_customer_first_name\";s:0:\"\";s:44:\"mf_helpscout_conversation_customer_last_name\";s:0:\"\";s:42:\"mf_helpscout_conversation_customer_message\";s:0:\"\";s:15:\"mf_google_sheet\";s:0:\"\";s:30:\"mf_google_spreadsheets_list_id\";s:0:\"\";s:24:\"mf_google_sheets_list_id\";s:0:\"\";s:25:\"mf_google_sheet_client_id\";s:0:\"\";s:29:\"mf_google_sheet_client_secret\";s:0:\"\";s:25:\"email_verification_enable\";s:0:\"\";s:32:\"email_verification_email_subject\";s:0:\"\";s:35:\"email_verification_confirm_redirect\";s:0:\"\";s:26:\"email_verification_heading\";s:0:\"\";s:28:\"email_verification_paragraph\";s:0:\"\";s:13:\"mf_sms_status\";s:0:\"\";s:11:\"mf_sms_from\";s:0:\"\";s:25:\"mf_sms_twilio_account_sid\";s:0:\"\";s:24:\"mf_sms_twilio_auth_token\";s:0:\"\";s:18:\"mf_sms_user_status\";s:0:\"\";s:16:\"mf_sms_user_body\";s:0:\"\";s:19:\"mf_sms_admin_status\";s:0:\"\";s:17:\"mf_sms_admin_body\";s:0:\"\";s:15:\"mf_sms_admin_to\";s:0:\"\";}'),(965,178,'_elementor_edit_mode','builder'),(966,178,'_metform_cloned_id','template-undefined'),(967,178,'_elementor_template_type','wp-post'),(968,178,'_elementor_version','3.23.2'),(969,178,'_edit_lock','1721832840:1'),(976,180,'_wp_page_template','elementor_canvas'),(977,180,'_elementor_edit_mode','builder'),(978,180,'_elementor_template_type','wp-post'),(979,180,'_elementor_version','3.23.2'),(980,181,'_wp_page_template','elementor_canvas'),(981,181,'_elementor_edit_mode','builder'),(982,181,'_elementor_template_type','wp-post'),(983,181,'_elementor_version','3.23.2'),(984,178,'_elementor_data','[{\"id\":\"2064d0f0\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0,0,0,0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"749bc6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ab27e14\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"73d8d8fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5c131118\",\"elType\":\"widget\",\"settings\":{\"mf_input_label\":\"Name\",\"mf_input_name\":\"mf-first-name\",\"mf_input_placeholder\":\"Your Name\",\"mf_input_label_typography_typography\":\"custom\",\"mf_input_label_typography_font_family\":\"Inter\",\"mf_input_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"mf_input_label_typography_font_weight\":\"400\",\"mf_input_label_typography_line_height\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"mf_input_min_length\":1,\"mf_input_label_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"mf_input_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"mf_input_color\":\"#272B36\",\"mf_input_border_border\":\"solid\",\"mf_input_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"mf_input_border_color\":\"#ededed\",\"mf_input_typgraphy_typography\":\"custom\",\"mf_input_typgraphy_font_family\":\"Inter\",\"mf_input_typgraphy_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"mf_input_typgraphy_font_weight\":\"400\",\"mf_input_typgraphy_line_height\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"mf_input_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":5,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"mf_input_placeholder_color\":\"#848E9F\",\"mf_input_help_text_typography_typography\":\"custom\",\"mf_input_help_text_typography_font_family\":\"Helvetica\",\"mf_input_help_text_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"mf_input_help_text_typography_font_weight\":\"400\",\"mf_input_help_text_typography_font_style\":\"italic\",\"mf_input_help_text_typography_line_height\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"mf_input_help_text_padding\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"mf_input_required\":\"\",\"mf_input_validation_warning_message\":\"This field is required.\",\"mf_input_required_indicator_color\":\"#FF0000\",\"mf_input_help_text_color\":\"#555555\",\"mf_input_background_background\":\"classic\",\"mf_input_background_color\":\"#FFFFFF00\",\"__globals__\":{\"mf_input_color\":\"\",\"mf_input_place_holder_typography_typography\":\"globals\\/typography?id=f882794\",\"mf_input_label_color\":\"globals\\/colors?id=primary\",\"mf_input_placeholder_color\":\"globals\\/colors?id=text\",\"mf_input_color_hover\":\"globals\\/colors?id=primary\",\"mf_input_color_focus\":\"globals\\/colors?id=primary\",\"mf_input_typgraphy_typography\":\"\"},\"mf_input_border_radius\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"mf_input_label_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"mf_input_label_color\":\"#000E44\",\"mf_input_label_status\":\"\",\"mf_input_warning_text_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"mf-text\"}],\"isInner\":true},{\"id\":\"73f2d1d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2fbcfaaa\",\"elType\":\"widget\",\"settings\":{\"mf_input_label\":\"Email\",\"mf_input_name\":\"mf-email\",\"mf_input_placeholder\":\"Your Email\",\"mf_input_required\":\"\",\"mf_input_label_typography_typography\":\"custom\",\"mf_input_label_typography_font_family\":\"Inter\",\"mf_input_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"mf_input_label_typography_font_weight\":\"400\",\"mf_input_label_typography_line_height\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"mf_input_label_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"mf_input_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"mf_input_color\":\"#272B36\",\"mf_input_border_border\":\"solid\",\"mf_input_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"mf_input_border_color\":\"#ededed\",\"mf_input_typgraphy_typography\":\"custom\",\"mf_input_typgraphy_font_family\":\"Inter\",\"mf_input_typgraphy_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"mf_input_typgraphy_font_weight\":\"400\",\"mf_input_typgraphy_line_height\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"mf_input_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":5,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"mf_input_placeholder_color\":\"#848E9F\",\"mf_input_help_text_typography_typography\":\"custom\",\"mf_input_help_text_typography_font_family\":\"Helvetica\",\"mf_input_help_text_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"mf_input_help_text_typography_font_weight\":\"400\",\"mf_input_help_text_typography_font_style\":\"italic\",\"mf_input_help_text_typography_line_height\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"mf_input_help_text_padding\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"mf_input_validation_warning_message\":\"This field is required.\",\"mf_input_required_indicator_color\":\"#FF0000\",\"mf_input_help_text_color\":\"#555555\",\"show_login_email\":\"\",\"mf_input_background_background\":\"classic\",\"mf_input_background_color\":\"#FFFFFF00\",\"__globals__\":{\"mf_input_color\":\"\",\"mf_input_place_holder_typography_typography\":\"globals\\/typography?id=f882794\",\"mf_input_label_color\":\"globals\\/colors?id=primary\",\"mf_input_placeholder_color\":\"globals\\/colors?id=text\",\"mf_input_color_hover\":\"globals\\/colors?id=primary\",\"mf_input_color_focus\":\"globals\\/colors?id=primary\",\"mf_input_typgraphy_typography\":\"\"},\"mf_input_border_radius\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"mf_input_label_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"mf_input_label_color\":\"#000E44\",\"mf_input_label_status\":\"\",\"mf_input_warning_text_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"mf-email\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ab199c8\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"7353c94f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3dd55821\",\"elType\":\"widget\",\"settings\":{\"mf_input_label\":\"Telephone\",\"mf_input_name\":\"mf-telephone\",\"mf_input_placeholder\":\"Your Phone\",\"mf_input_validation_warning_message\":\"This field is required.\",\"mf_input_label_typography_typography\":\"custom\",\"mf_input_label_typography_font_family\":\"Inter\",\"mf_input_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"mf_input_label_typography_font_weight\":\"400\",\"mf_input_label_typography_line_height\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"mf_input_label_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"mf_input_required_indicator_color\":\"#FF0000\",\"mf_input_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"mf_input_color\":\"#272B36\",\"mf_input_border_border\":\"solid\",\"mf_input_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"mf_input_border_color\":\"#ededed\",\"mf_input_typgraphy_typography\":\"custom\",\"mf_input_typgraphy_font_family\":\"Inter\",\"mf_input_typgraphy_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"mf_input_typgraphy_font_weight\":\"400\",\"mf_input_typgraphy_line_height\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"mf_input_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":5,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"mf_input_placeholder_color\":\"#848E9F\",\"mf_input_help_text_typography_typography\":\"custom\",\"mf_input_help_text_typography_font_family\":\"Helvetica\",\"mf_input_help_text_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"mf_input_help_text_typography_font_weight\":\"400\",\"mf_input_help_text_typography_font_style\":\"italic\",\"mf_input_help_text_typography_line_height\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"mf_input_help_text_color\":\"#555555\",\"mf_input_help_text_padding\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"mf_input_background_background\":\"classic\",\"mf_input_background_color\":\"#FFFFFF00\",\"__globals__\":{\"mf_input_color\":\"\",\"mf_input_place_holder_typography_typography\":\"globals\\/typography?id=f882794\",\"mf_input_label_color\":\"globals\\/colors?id=primary\",\"mf_input_placeholder_color\":\"globals\\/colors?id=text\",\"mf_input_color_hover\":\"globals\\/colors?id=primary\",\"mf_input_color_focus\":\"globals\\/colors?id=primary\",\"mf_input_typgraphy_typography\":\"\"},\"mf_input_border_radius\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"mf_input_label_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"mf_input_label_color\":\"#000E44\",\"mf_input_label_status\":\"\",\"mf_input_warning_text_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"mf-telephone\"}],\"isInner\":true},{\"id\":\"24132728\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"487b3a69\",\"elType\":\"widget\",\"settings\":{\"mf_input_label\":\"Date\",\"mf_input_name\":\"mf-date\",\"mf_input_placeholder\":\"Date\",\"mf_input_validation_warning_message\":\"This field is required.\",\"mf_input_disable_date_list\":[],\"mf_input_label_typography_typography\":\"custom\",\"mf_input_label_typography_font_family\":\"Inter\",\"mf_input_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"mf_input_label_typography_font_weight\":\"400\",\"mf_input_label_typography_line_height\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"mf_input_label_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"mf_input_required_indicator_color\":\"#FF0000\",\"mf_input_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"mf_input_color\":\"#272B36\",\"mf_input_background_background\":\"classic\",\"mf_input_background_color\":\"#FFFFFF00\",\"mf_input_border_border\":\"solid\",\"mf_input_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"mf_input_border_color\":\"#ededed\",\"mf_input_typgraphy_typography\":\"custom\",\"mf_input_typgraphy_font_family\":\"Inter\",\"mf_input_typgraphy_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"mf_input_typgraphy_font_weight\":\"400\",\"mf_input_typgraphy_line_height\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"mf_input_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":5,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"mf_input_placeholder_color\":\"#848E9F\",\"mf_input_help_text_typography_typography\":\"custom\",\"mf_input_help_text_typography_font_family\":\"Helvetica\",\"mf_input_help_text_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"mf_input_help_text_typography_font_weight\":\"400\",\"mf_input_help_text_typography_font_style\":\"italic\",\"mf_input_help_text_typography_line_height\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"mf_input_help_text_color\":\"#555555\",\"mf_input_help_text_padding\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"mf_input_color\":\"\",\"mf_input_place_holder_typography_typography\":\"globals\\/typography?id=f882794\",\"mf_input_label_color\":\"globals\\/colors?id=primary\",\"mf_input_placeholder_color\":\"globals\\/colors?id=text\",\"mf_input_color_hover\":\"globals\\/colors?id=primary\",\"mf_input_color_focus\":\"globals\\/colors?id=primary\",\"mf_input_typgraphy_typography\":\"\"},\"mf_input_border_radius\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"mf_input_label_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"mf_input_label_color\":\"#000E44\",\"mf_input_label_status\":\"\",\"mf_input_warning_text_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"mf-date\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"21a572a5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"3444a239\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f7194b\",\"elType\":\"widget\",\"settings\":{\"mf_input_label\":\"Services\",\"mf_input_name\":\"mf-select\",\"mf_input_placeholder\":\"Select Services\",\"mf_input_list\":[{\"mf_input_option_text\":\"Water Gardening\",\"mf_input_option_value\":\"value-1\",\"_id\":\"4888e71\"},{\"mf_input_option_text\":\"Lawn Maintenance\",\"mf_input_option_value\":\"value-2\",\"_id\":\"f9ff265\"},{\"mf_input_option_text\":\"Cutting Leaf\",\"mf_input_option_value\":\"value-3\",\"_id\":\"b3a0820\"},{\"mf_input_option_text\":\"Landscaping Design\",\"mf_input_option_value\":\"value-4\",\"_id\":\"7fc25d8\"},{\"mf_input_option_text\":\"Lawn Cleaning\",\"mf_input_option_value\":\"value-5\",\"_id\":\"642c463\"}],\"mf_input_validation_warning_message\":\"This field is required.\",\"mf_input_label_typography_typography\":\"custom\",\"mf_input_label_typography_font_family\":\"Inter\",\"mf_input_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"mf_input_label_typography_font_weight\":\"400\",\"mf_input_label_typography_line_height\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"mf_input_label_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"mf_input_required_indicator_color\":\"#FF0000\",\"mf_input_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"mf_input_border_border\":\"solid\",\"mf_input_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"mf_input_border_color\":\"#ededed\",\"mf_input_typgraphy_typography\":\"custom\",\"mf_input_typgraphy_font_family\":\"Inter\",\"mf_input_typgraphy_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"mf_input_typgraphy_font_weight\":\"400\",\"mf_input_typgraphy_line_height\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"mf_input_border_radius\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"mf_input_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":5,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"mf_input_placeholder_color\":\"#848E9F\",\"mf_input_help_text_typography_typography\":\"custom\",\"mf_input_help_text_typography_font_family\":\"Helvetica\",\"mf_input_help_text_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"mf_input_help_text_typography_font_weight\":\"400\",\"mf_input_help_text_typography_font_style\":\"italic\",\"mf_input_help_text_typography_line_height\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"mf_input_help_text_color\":\"#555555\",\"mf_input_help_text_padding\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"mf_input_background_background\":\"classic\",\"mf_input_background_color\":\"#FFFFFF00\",\"__globals__\":{\"mf_input_place_holder_typography_typography\":\"globals\\/typography?id=f882794\",\"mf_input_color\":\"globals\\/colors?id=primary\",\"mf_input_label_color\":\"globals\\/colors?id=primary\",\"mf_input_placeholder_color\":\"globals\\/colors?id=text\",\"mf_input_color_focus\":\"globals\\/colors?id=primary\",\"mf_input_color_hover\":\"globals\\/colors?id=primary\",\"mf_select_option_colornormal\":\"globals\\/colors?id=primary\",\"mf_select_option_colorhover\":\"globals\\/colors?id=accent\",\"mf_select_option_coloractive\":\"globals\\/colors?id=primary\"},\"mf_input_label_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"mf_input_label_color\":\"#000E44\",\"mf_input_label_status\":\"\",\"mf_input_warning_text_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"mf-select\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1ebf3ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"1a802d1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"114c61f9\",\"elType\":\"widget\",\"settings\":{\"mf_input_label\":\"Additional Details\",\"mf_input_name\":\"mf-comment\",\"mf_input_placeholder\":\"Additional Details\",\"mf_input_required\":\"\",\"mf_input_label_typography_typography\":\"custom\",\"mf_input_label_typography_font_family\":\"Inter\",\"mf_input_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"mf_input_label_typography_font_weight\":\"400\",\"mf_input_label_typography_line_height\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"mf_input_label_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"mf_input_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"mf_input_color\":\"#272B36\",\"mf_input_border_border\":\"solid\",\"mf_input_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"mf_input_border_color\":\"#ededed\",\"mf_input_typgraphy_typography\":\"custom\",\"mf_input_typgraphy_font_family\":\"Inter\",\"mf_input_typgraphy_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"mf_input_typgraphy_font_weight\":\"400\",\"mf_input_typgraphy_line_height\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"mf_input_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":5,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"mf_input_placeholder_color\":\"#848E9F\",\"mf_input_help_text_typography_typography\":\"custom\",\"mf_input_help_text_typography_font_family\":\"Helvetica\",\"mf_input_help_text_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"mf_input_help_text_typography_font_weight\":\"400\",\"mf_input_help_text_typography_font_style\":\"italic\",\"mf_input_help_text_typography_line_height\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"mf_input_help_text_padding\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"mf_textarea_field_height\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"mf_input_validation_warning_message\":\"This field is required.\",\"mf_input_required_indicator_color\":\"#FF0000\",\"mf_input_help_text_color\":\"#555555\",\"mf_input_background_background\":\"classic\",\"mf_input_background_color\":\"#FFFFFF00\",\"__globals__\":{\"mf_input_color\":\"\",\"mf_input_place_holder_typography_typography\":\"globals\\/typography?id=f882794\",\"mf_input_label_color\":\"globals\\/colors?id=primary\",\"mf_input_placeholder_color\":\"globals\\/colors?id=text\",\"mf_input_color_hover\":\"globals\\/colors?id=primary\",\"mf_input_color_focus\":\"globals\\/colors?id=primary\",\"mf_input_typgraphy_typography\":\"\"},\"mf_input_border_radius\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"mf_input_label_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"mf_input_label_color\":\"#000E44\",\"mf_input_label_status\":\"\",\"mf_input_warning_text_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"mf-textarea\"},{\"id\":\"5aa55a91\",\"elType\":\"widget\",\"settings\":{\"mf_btn_text\":\"Make Appointment\",\"mf_btn_align\":\"left\",\"mf_btn_text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"mf_btn_bg_color_background\":\"classic\",\"mf_btn_box_shadow_group_box_shadow_type\":\"yes\",\"mf_btn_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(66,133,244,0.3)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"mf_hidden_input\":[],\"__globals__\":{\"mf_btn_bg_color_color\":\"globals\\/colors?id=accent\",\"mf_btn_typography_typography\":\"globals\\/typography?id=0a50947\",\"mf_btn_text_color\":\"globals\\/colors?id=secondary\",\"mf_btn_bg_hover_color_color\":\"globals\\/colors?id=secondary\",\"mf_btn_hover_color\":\"globals\\/colors?id=accent\"},\"mf_btn_bg_hover_color_background\":\"classic\"},\"elements\":[],\"widgetType\":\"mf-button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(985,182,'_wp_page_template','elementor_canvas'),(986,182,'_elementor_edit_mode','builder'),(987,182,'_elementor_template_type','wp-post'),(988,182,'_elementor_version','3.23.2'); INSERT INTO `victorq_postmeta` VALUES (989,182,'_elementor_data','[{\"id\":\"2064d0f0\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0,0,0,0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"749bc6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1ab27e14\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"73d8d8fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5c131118\",\"elType\":\"widget\",\"settings\":{\"mf_input_label\":\"Name\",\"mf_input_name\":\"mf-first-name\",\"mf_input_placeholder\":\"Your Name\",\"mf_input_label_typography_typography\":\"custom\",\"mf_input_label_typography_font_family\":\"Inter\",\"mf_input_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"mf_input_label_typography_font_weight\":\"400\",\"mf_input_label_typography_line_height\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"mf_input_min_length\":1,\"mf_input_label_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"mf_input_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"mf_input_color\":\"#272B36\",\"mf_input_border_border\":\"solid\",\"mf_input_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"mf_input_border_color\":\"#ededed\",\"mf_input_typgraphy_typography\":\"custom\",\"mf_input_typgraphy_font_family\":\"Inter\",\"mf_input_typgraphy_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"mf_input_typgraphy_font_weight\":\"400\",\"mf_input_typgraphy_line_height\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"mf_input_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":5,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"mf_input_placeholder_color\":\"#848E9F\",\"mf_input_help_text_typography_typography\":\"custom\",\"mf_input_help_text_typography_font_family\":\"Helvetica\",\"mf_input_help_text_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"mf_input_help_text_typography_font_weight\":\"400\",\"mf_input_help_text_typography_font_style\":\"italic\",\"mf_input_help_text_typography_line_height\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"mf_input_help_text_padding\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"mf_input_required\":\"\",\"mf_input_validation_warning_message\":\"This field is required.\",\"mf_input_required_indicator_color\":\"#FF0000\",\"mf_input_help_text_color\":\"#555555\",\"mf_input_background_background\":\"classic\",\"mf_input_background_color\":\"#FFFFFF00\",\"__globals__\":{\"mf_input_color\":\"\",\"mf_input_place_holder_typography_typography\":\"globals\\/typography?id=f882794\",\"mf_input_label_color\":\"globals\\/colors?id=primary\",\"mf_input_placeholder_color\":\"globals\\/colors?id=text\",\"mf_input_color_hover\":\"globals\\/colors?id=primary\",\"mf_input_color_focus\":\"globals\\/colors?id=primary\",\"mf_input_typgraphy_typography\":\"\"},\"mf_input_border_radius\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"mf_input_label_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"mf_input_label_color\":\"#000E44\",\"mf_input_label_status\":\"\",\"mf_input_warning_text_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"mf-text\"}],\"isInner\":true},{\"id\":\"73f2d1d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2fbcfaaa\",\"elType\":\"widget\",\"settings\":{\"mf_input_label\":\"Email\",\"mf_input_name\":\"mf-email\",\"mf_input_placeholder\":\"Your Email\",\"mf_input_required\":\"\",\"mf_input_label_typography_typography\":\"custom\",\"mf_input_label_typography_font_family\":\"Inter\",\"mf_input_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"mf_input_label_typography_font_weight\":\"400\",\"mf_input_label_typography_line_height\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"mf_input_label_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"mf_input_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"mf_input_color\":\"#272B36\",\"mf_input_border_border\":\"solid\",\"mf_input_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"mf_input_border_color\":\"#ededed\",\"mf_input_typgraphy_typography\":\"custom\",\"mf_input_typgraphy_font_family\":\"Inter\",\"mf_input_typgraphy_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"mf_input_typgraphy_font_weight\":\"400\",\"mf_input_typgraphy_line_height\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"mf_input_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":5,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"mf_input_placeholder_color\":\"#848E9F\",\"mf_input_help_text_typography_typography\":\"custom\",\"mf_input_help_text_typography_font_family\":\"Helvetica\",\"mf_input_help_text_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"mf_input_help_text_typography_font_weight\":\"400\",\"mf_input_help_text_typography_font_style\":\"italic\",\"mf_input_help_text_typography_line_height\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"mf_input_help_text_padding\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"mf_input_validation_warning_message\":\"This field is required.\",\"mf_input_required_indicator_color\":\"#FF0000\",\"mf_input_help_text_color\":\"#555555\",\"show_login_email\":\"\",\"mf_input_background_background\":\"classic\",\"mf_input_background_color\":\"#FFFFFF00\",\"__globals__\":{\"mf_input_color\":\"\",\"mf_input_place_holder_typography_typography\":\"globals\\/typography?id=f882794\",\"mf_input_label_color\":\"globals\\/colors?id=primary\",\"mf_input_placeholder_color\":\"globals\\/colors?id=text\",\"mf_input_color_hover\":\"globals\\/colors?id=primary\",\"mf_input_color_focus\":\"globals\\/colors?id=primary\",\"mf_input_typgraphy_typography\":\"\"},\"mf_input_border_radius\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"mf_input_label_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"mf_input_label_color\":\"#000E44\",\"mf_input_label_status\":\"\",\"mf_input_warning_text_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"mf-email\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5ab199c8\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"7353c94f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3dd55821\",\"elType\":\"widget\",\"settings\":{\"mf_input_label\":\"Telephone\",\"mf_input_name\":\"mf-telephone\",\"mf_input_placeholder\":\"Your Phone\",\"mf_input_validation_warning_message\":\"This field is required.\",\"mf_input_label_typography_typography\":\"custom\",\"mf_input_label_typography_font_family\":\"Inter\",\"mf_input_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"mf_input_label_typography_font_weight\":\"400\",\"mf_input_label_typography_line_height\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"mf_input_label_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"mf_input_required_indicator_color\":\"#FF0000\",\"mf_input_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"mf_input_color\":\"#272B36\",\"mf_input_border_border\":\"solid\",\"mf_input_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"mf_input_border_color\":\"#ededed\",\"mf_input_typgraphy_typography\":\"custom\",\"mf_input_typgraphy_font_family\":\"Inter\",\"mf_input_typgraphy_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"mf_input_typgraphy_font_weight\":\"400\",\"mf_input_typgraphy_line_height\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"mf_input_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":5,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"mf_input_placeholder_color\":\"#848E9F\",\"mf_input_help_text_typography_typography\":\"custom\",\"mf_input_help_text_typography_font_family\":\"Helvetica\",\"mf_input_help_text_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"mf_input_help_text_typography_font_weight\":\"400\",\"mf_input_help_text_typography_font_style\":\"italic\",\"mf_input_help_text_typography_line_height\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"mf_input_help_text_color\":\"#555555\",\"mf_input_help_text_padding\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"mf_input_background_background\":\"classic\",\"mf_input_background_color\":\"#FFFFFF00\",\"__globals__\":{\"mf_input_color\":\"\",\"mf_input_place_holder_typography_typography\":\"globals\\/typography?id=f882794\",\"mf_input_label_color\":\"globals\\/colors?id=primary\",\"mf_input_placeholder_color\":\"globals\\/colors?id=text\",\"mf_input_color_hover\":\"globals\\/colors?id=primary\",\"mf_input_color_focus\":\"globals\\/colors?id=primary\",\"mf_input_typgraphy_typography\":\"\"},\"mf_input_border_radius\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"mf_input_label_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"mf_input_label_color\":\"#000E44\",\"mf_input_label_status\":\"\",\"mf_input_warning_text_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"mf-telephone\"}],\"isInner\":true},{\"id\":\"24132728\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"487b3a69\",\"elType\":\"widget\",\"settings\":{\"mf_input_label\":\"Date\",\"mf_input_name\":\"mf-date\",\"mf_input_placeholder\":\"Date\",\"mf_input_validation_warning_message\":\"This field is required.\",\"mf_input_disable_date_list\":[],\"mf_input_label_typography_typography\":\"custom\",\"mf_input_label_typography_font_family\":\"Inter\",\"mf_input_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"mf_input_label_typography_font_weight\":\"400\",\"mf_input_label_typography_line_height\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"mf_input_label_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"mf_input_required_indicator_color\":\"#FF0000\",\"mf_input_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"mf_input_color\":\"#272B36\",\"mf_input_background_background\":\"classic\",\"mf_input_background_color\":\"#FFFFFF00\",\"mf_input_border_border\":\"solid\",\"mf_input_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"mf_input_border_color\":\"#ededed\",\"mf_input_typgraphy_typography\":\"custom\",\"mf_input_typgraphy_font_family\":\"Inter\",\"mf_input_typgraphy_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"mf_input_typgraphy_font_weight\":\"400\",\"mf_input_typgraphy_line_height\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"mf_input_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":5,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"mf_input_placeholder_color\":\"#848E9F\",\"mf_input_help_text_typography_typography\":\"custom\",\"mf_input_help_text_typography_font_family\":\"Helvetica\",\"mf_input_help_text_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"mf_input_help_text_typography_font_weight\":\"400\",\"mf_input_help_text_typography_font_style\":\"italic\",\"mf_input_help_text_typography_line_height\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"mf_input_help_text_color\":\"#555555\",\"mf_input_help_text_padding\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"mf_input_color\":\"\",\"mf_input_place_holder_typography_typography\":\"globals\\/typography?id=f882794\",\"mf_input_label_color\":\"globals\\/colors?id=primary\",\"mf_input_placeholder_color\":\"globals\\/colors?id=text\",\"mf_input_color_hover\":\"globals\\/colors?id=primary\",\"mf_input_color_focus\":\"globals\\/colors?id=primary\",\"mf_input_typgraphy_typography\":\"\"},\"mf_input_border_radius\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"mf_input_label_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"mf_input_label_color\":\"#000E44\",\"mf_input_label_status\":\"\",\"mf_input_warning_text_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"mf-date\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"21a572a5\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"3444a239\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9f7194b\",\"elType\":\"widget\",\"settings\":{\"mf_input_label\":\"Services\",\"mf_input_name\":\"mf-select\",\"mf_input_placeholder\":\"Select Services\",\"mf_input_list\":[{\"mf_input_option_text\":\"Water Gardening\",\"mf_input_option_value\":\"value-1\",\"_id\":\"4888e71\"},{\"mf_input_option_text\":\"Lawn Maintenance\",\"mf_input_option_value\":\"value-2\",\"_id\":\"f9ff265\"},{\"mf_input_option_text\":\"Cutting Leaf\",\"mf_input_option_value\":\"value-3\",\"_id\":\"b3a0820\"},{\"mf_input_option_text\":\"Landscaping Design\",\"mf_input_option_value\":\"value-4\",\"_id\":\"7fc25d8\"},{\"mf_input_option_text\":\"Lawn Cleaning\",\"mf_input_option_value\":\"value-5\",\"_id\":\"642c463\"}],\"mf_input_validation_warning_message\":\"This field is required.\",\"mf_input_label_typography_typography\":\"custom\",\"mf_input_label_typography_font_family\":\"Inter\",\"mf_input_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"mf_input_label_typography_font_weight\":\"400\",\"mf_input_label_typography_line_height\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"mf_input_label_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"mf_input_required_indicator_color\":\"#FF0000\",\"mf_input_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"mf_input_border_border\":\"solid\",\"mf_input_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"mf_input_border_color\":\"#ededed\",\"mf_input_typgraphy_typography\":\"custom\",\"mf_input_typgraphy_font_family\":\"Inter\",\"mf_input_typgraphy_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"mf_input_typgraphy_font_weight\":\"400\",\"mf_input_typgraphy_line_height\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"mf_input_border_radius\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"mf_input_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":5,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"mf_input_placeholder_color\":\"#848E9F\",\"mf_input_help_text_typography_typography\":\"custom\",\"mf_input_help_text_typography_font_family\":\"Helvetica\",\"mf_input_help_text_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"mf_input_help_text_typography_font_weight\":\"400\",\"mf_input_help_text_typography_font_style\":\"italic\",\"mf_input_help_text_typography_line_height\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"mf_input_help_text_color\":\"#555555\",\"mf_input_help_text_padding\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"mf_input_background_background\":\"classic\",\"mf_input_background_color\":\"#FFFFFF00\",\"__globals__\":{\"mf_input_place_holder_typography_typography\":\"globals\\/typography?id=f882794\",\"mf_input_color\":\"globals\\/colors?id=primary\",\"mf_input_label_color\":\"globals\\/colors?id=primary\",\"mf_input_placeholder_color\":\"globals\\/colors?id=text\",\"mf_input_color_focus\":\"globals\\/colors?id=primary\",\"mf_input_color_hover\":\"globals\\/colors?id=primary\",\"mf_select_option_colornormal\":\"globals\\/colors?id=primary\",\"mf_select_option_colorhover\":\"globals\\/colors?id=accent\",\"mf_select_option_coloractive\":\"globals\\/colors?id=primary\"},\"mf_input_label_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"mf_input_label_color\":\"#000E44\",\"mf_input_label_status\":\"\",\"mf_input_warning_text_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"mf-select\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1ebf3ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\"},\"elements\":[{\"id\":\"1a802d1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"114c61f9\",\"elType\":\"widget\",\"settings\":{\"mf_input_label\":\"Additional Details\",\"mf_input_name\":\"mf-comment\",\"mf_input_placeholder\":\"Additional Details\",\"mf_input_required\":\"\",\"mf_input_label_typography_typography\":\"custom\",\"mf_input_label_typography_font_family\":\"Inter\",\"mf_input_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"mf_input_label_typography_font_weight\":\"400\",\"mf_input_label_typography_line_height\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"mf_input_label_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"mf_input_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"mf_input_color\":\"#272B36\",\"mf_input_border_border\":\"solid\",\"mf_input_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"mf_input_border_color\":\"#ededed\",\"mf_input_typgraphy_typography\":\"custom\",\"mf_input_typgraphy_font_family\":\"Inter\",\"mf_input_typgraphy_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"mf_input_typgraphy_font_weight\":\"400\",\"mf_input_typgraphy_line_height\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"mf_input_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":5,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"mf_input_placeholder_color\":\"#848E9F\",\"mf_input_help_text_typography_typography\":\"custom\",\"mf_input_help_text_typography_font_family\":\"Helvetica\",\"mf_input_help_text_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"mf_input_help_text_typography_font_weight\":\"400\",\"mf_input_help_text_typography_font_style\":\"italic\",\"mf_input_help_text_typography_line_height\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"mf_input_help_text_padding\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"mf_textarea_field_height\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"mf_input_validation_warning_message\":\"This field is required.\",\"mf_input_required_indicator_color\":\"#FF0000\",\"mf_input_help_text_color\":\"#555555\",\"mf_input_background_background\":\"classic\",\"mf_input_background_color\":\"#FFFFFF00\",\"__globals__\":{\"mf_input_color\":\"\",\"mf_input_place_holder_typography_typography\":\"globals\\/typography?id=f882794\",\"mf_input_label_color\":\"globals\\/colors?id=primary\",\"mf_input_placeholder_color\":\"globals\\/colors?id=text\",\"mf_input_color_hover\":\"globals\\/colors?id=primary\",\"mf_input_color_focus\":\"globals\\/colors?id=primary\",\"mf_input_typgraphy_typography\":\"\"},\"mf_input_border_radius\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"mf_input_label_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"mf_input_label_color\":\"#000E44\",\"mf_input_label_status\":\"\",\"mf_input_warning_text_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"mf-textarea\"},{\"id\":\"5aa55a91\",\"elType\":\"widget\",\"settings\":{\"mf_btn_text\":\"Make Appointment\",\"mf_btn_align\":\"left\",\"mf_btn_text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"mf_btn_bg_color_background\":\"classic\",\"mf_btn_box_shadow_group_box_shadow_type\":\"yes\",\"mf_btn_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(66,133,244,0.3)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"mf_hidden_input\":[],\"__globals__\":{\"mf_btn_bg_color_color\":\"globals\\/colors?id=accent\",\"mf_btn_typography_typography\":\"globals\\/typography?id=0a50947\",\"mf_btn_text_color\":\"globals\\/colors?id=secondary\",\"mf_btn_bg_hover_color_color\":\"globals\\/colors?id=secondary\",\"mf_btn_hover_color\":\"globals\\/colors?id=accent\"},\"mf_btn_bg_hover_color_background\":\"classic\"},\"elements\":[],\"widgetType\":\"mf-button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(990,178,'_elementor_page_assets','a:0:{}'),(991,178,'_elementor_css','a:6:{s:4:\"time\";i:1721830796;s:5:\"fonts\";a:1:{i:0;s:5:\"Inter\";}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(992,183,'_elementor_edit_mode','builder'),(993,183,'_elementor_template_type','wp-page'),(994,183,'_elementor_version','3.23.2'),(995,183,'_wp_page_template','default'),(996,183,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(997,183,'_elementor_data','[{\"id\":\"35495243\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"Eldery male gardener using scissors for bushes\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"160\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0,\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_size_tablet\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"top center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00160E\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b\":\"#00000054\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_slideshow_gallery\":[{\"id\":154,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-02-5.jpg\"},{\"id\":155,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-03-3.jpg\"},{\"id\":156,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-04-3.jpg\"},{\"id\":157,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-01-5.jpg\"}]},\"elements\":[{\"id\":\"739a26d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":65,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=06a34e7\"}},\"elements\":[{\"id\":\"132d1a8e\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Complete For All\",\"sg_title_focused\":\" Landscape \",\"sg_title_after\":\" Service And Maintenance\",\"sg_title_html_tag\":\"h1\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=primary\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"7c49583a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"635cb25b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"23cf340e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37.85499999999999687361196265555918216705322265625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":48,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"1c4c950d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4768b6f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":62.14500000000000312638803734444081783294677734375,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"flex-start\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":52,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"34c0badb\",\"elType\":\"widget\",\"settings\":{\"sg_video_button_title\":\"Play Video\",\"sg_video_button_icon\":{\"value\":\"jki jki-play\",\"library\":\"jkiticon\"},\"sg_video_url\":\"#\",\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_width_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_line_height_responsive\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#FFD402\",\"st_button_normal_glow_color_responsive\":\"#00694361\",\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"_element_width\":\"auto\",\"__globals__\":{\"st_button_normal_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=accent\",\"st_border_normal_border_border_color\":\"\",\"st_button_hover_text_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_glow_color_responsive\":\"\"},\"st_button_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_button_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_width_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_line_height_responsive_mobile\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"st_border_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_border_normal_border_border_color\":\"#FFD027\",\"st_button_line_height_responsive_tablet\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"st_button_normal_background_background_color\":\"#006943\",\"st_button_hover_text_color_responsive\":\"#006943\",\"st_button_hover_background_background_color\":\"#FFD402\",\"sg_video_auto_play\":\"\",\"sg_video_mute\":\"\"},\"elements\":[],\"widgetType\":\"jkit_video_button\"},{\"id\":\"232ec8da\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Intro\",\"align\":\"right\",\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"hide_mobile\":\"hidden-mobile\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#00160E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49b348ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"edc2dbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.00200000000000244426701101474463939666748046875,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e2246bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Prestige Luxury Cleanings LLC\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"139cc45f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Landscaping And Garden Care Services\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dc78e71\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"597dc67d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"26cf3840\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b19bda0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":167,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"980\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a46c929\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c4d8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Public Liability Insurance\",\"_id\":\"a978734\"},{\"text\":\"Environmentally Friendly\",\"_id\":\"1cd10a1\"},{\"text\":\"On Time, Every Time\",\"_id\":\"c6767db\"},{\"text\":\"Beautiful Garden Designs\",\"_id\":\"d4743f4\"},{\"text\":\"Modern Machinery And Tool\",\"_id\":\"535c17d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"398321ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4c7c15d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.9129999999999967030817060731351375579833984375,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5683e90d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":162,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"860\",\"height\":\"980\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b6190b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":163,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"-59\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"250636f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"713aa588\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"51a71b71\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#00160E\",\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=primary\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=06a34e7\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"st_content_title_color_responsive\":\"#7F7F7F\",\"st_super_color_responsive\":\"#FFD402\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\",\"sg_setting_html_tag\":\"span\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5557874f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"73847855\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":174,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/garden-maintenance-performed-by-pro-gardener-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"b1058a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":224,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":478,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":325,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"69098afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"40\",\"bottom\":\"80\",\"left\":\"40\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"7cb7bf82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91cb5d9\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26358abf\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Have The Perfect Solution For Your Landscape Problems\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15a36cc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42c8d36c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7114454f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76f24ca8\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Variation Gardening\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"138cc39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28a78a06\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Expert Landscapers\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c5ac2bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38fdb183\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3ce0b95b\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Affordable Price\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-save-money-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4c80f133\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7451fb11\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Free Consultation\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-Consultancy-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e93f2c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"39a46e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6773b2a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"87647bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find The Best Service For Your Garden\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e2cc66e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30164d28\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e8639b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":142,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-services.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fa92c14\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2c434fb3\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"5abe2e18\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33425b9f\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Lawn Services\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"472ed309\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"67cb221c\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37c1cce6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":143,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/driveway-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b3e60ba\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3b291bbf\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"20b91942\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5649f719\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Driveway Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6300b69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"256ddf68\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3735f0b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":144,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/deck-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"741128a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3691562\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3c8a0e6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5eb1b3b9\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Deck Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"25f37292\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"61c9ff8e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d41e618\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"8781ee3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":145,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/weed-control.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd84c7d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"14f7965\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fb2459e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0582197\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Weed Control \",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"f7b0fa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0197d9e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f3de9c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":146,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/grass-feed.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"75ba950\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"23edbf4\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"ad70b3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1c4ac7\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Grass Feed\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6f592ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0043a3b\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e6d8a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":147,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/edging-Cleaning.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd233da\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6535a16\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"937e2e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7aee\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Edging Cleaning\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"d9723d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"c908972\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"790dd775\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"360\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"160\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"140\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"background_overlay_color_b\":\"#000414\",\"background_overlay_image\":{\"id\":\"69\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/a-gardener-watering-plants-in-a-flowerbed-2RT8DWL.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]}},\"elements\":[{\"id\":\"a2ed5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7e37f762\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Landscaping\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a092069\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d5099\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need Someone To Take Care Your Garden & Lawn?\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=07ee36d\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1198756c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"66521a56\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":20,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":4},\"elements\":[{\"id\":\"1a89d099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.5090000000000003410605131648480892181396484375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"id\":\"70\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/happy-gardeners-with-plants-and-lawn-mower.jpg\"},\"background_position\":\"initial\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"space-between\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_color\":\"#FFFFFF00\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":9,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"46b821c1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":219,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":183,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"449971a9\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Make Appointment & Take Care Your Garden\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=secondary\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=93191b3\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_content_title_color_hover_responsive\":\"#FFFFFF\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#FFFFFF\",\"st_icon_color_responsive\":\"#00E5CC\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#00E5CC\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":false},{\"id\":\"13747b6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.4909999999999996589394868351519107818603515625,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a13f42e\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"260***1635696832144\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fde8487\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"59883b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1617542a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Process\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29c7aa96\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Complete Every Step Carefully\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ced0d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d62463d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18cf7834\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"41f79872\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-consult-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consultation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65e1b761\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"span\",\"title_color\":\"#FFD402\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#006943\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12cdbf13\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4175d29\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-pencil_art-light\",\"library\":\"jkiticon\"},\"title_text\":\"Design Installation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2adabf01\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b628\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"569b3221\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consturction \",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"67d6b2e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6fff79c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53c9a76e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"title_text\":\"Finished Work\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"555aace0\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d57540b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"71\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardening-background-with-garden-tolls-A9BGNJU.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]}},\"elements\":[{\"id\":\"147831a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"5a53d120\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"20\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Years of Experience\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"488f4727\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"6b8f6eae\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"76666759\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f532f9e\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"2850\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Happy Customers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"265fd738\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5473dc22\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"64\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Expert Landscapers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b38731e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4945f2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"627cd42c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65e3182\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.56499999999999772626324556767940521240234375},\"elements\":[{\"id\":\"43108b53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Projects\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45328989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Project We Have Done\\n\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"f382082\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.49900000000000233058017329312860965728759765625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":40,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"55ecfb57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"67afcbfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.0330000000000012505552149377763271331787109375,\"_inline_size_tablet\":23,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4989aa04\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Projects\",\"align\":\"right\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"left\",\"hover_animation\":\"float\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"32515d84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"3f5753f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"21982cfb\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"72\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-pruning-and-shaping-bushes-.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Cutting Leaf\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"404dc561\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"58d29b54\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"73\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/backyard-garden.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Home Garden\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"3bff1dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"3c24185a\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"64\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Build Backyard\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_image_height_responsive_tablet\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b3cb58d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_image\":{\"id\":\"74\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-moving-aerial-photo-Z8KDGJ9.jpg\"},\"background_overlay_color\":\"#0000007D\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]}},\"elements\":[{\"id\":\"79705206\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"51c9a732\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73b2fe0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"What They Says About Us\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4876e632\",\"elType\":\"widget\",\"settings\":{\"sg_layout_testimonial_choose\":\"style-2\",\"sg_testimonials_image_size_imagesize_size\":\"medium\",\"sg_testimonials_list\":[{\"sg_testimonials_list_client_avatar\":{\"id\":\"75\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/3SUMAU.jpg\"},\"_id\":\"6e9b2e1\",\"sg_testimonials_list_client_name\":\"Regan Traynor\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"76\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/CASCKD8.jpg\"},\"sg_testimonials_list_client_name\":\"Maisha Dunn\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"d069a43\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"77\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/MKLVKTE.jpg\"},\"sg_testimonials_list_client_name\":\"Reis Leonard\",\"sg_testimonials_list_designation\":\"Businessman\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"05c24f5\"}],\"st_wrapper_alignment_responsive\":\"left\",\"st_client_name_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_description_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_client_name_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_client_designation_normal_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_client_designation_normal_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=d343bdf\",\"st_rating_color_responsive\":\"\",\"st_client_name_normal_color_responsive\":\"\",\"st_quote_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_layout_background_background_color\":\"\"},\"st_layout_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_layout_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_wrapper_fix_height\":\"\",\"sg_setting_autoplay\":\"yes\",\"sg_setting_autoplay_pause\":\"\",\"sg_setting_arrow\":\"\",\"sg_setting_arrow_position\":\"middle-edge\",\"sg_setting_dots\":\"\",\"sg_setting_quote\":\"yes\",\"sg_setting_rating\":\"\",\"st_layout_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_layout_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_slide_show_responsive\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"sg_setting_quote_icon\":{\"value\":\"jki jki-quote-light\",\"library\":\"jkiticon\"},\"sg_layout_image_position\":\"below\",\"st_layout_background_background_background\":\"classic\",\"st_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position\":\"\",\"st_quote_override_position_top_responsive\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"st_quote_override_position_left_responsive\":{\"unit\":\"px\",\"size\":442,\"sizes\":[]},\"st_client_name_normal_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_quote_normal_font_size_responsive\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"st_client_image_margin_responsive\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_rating_font_size_responsive\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"st_rating_margin_right_responsive\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_setting_slide_show_responsive_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"st_wrapper_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position_top_responsive_tablet\":{\"unit\":\"px\",\"size\":249,\"sizes\":[]},\"st_quote_override_position_top_responsive_mobile\":{\"unit\":\"px\",\"size\":193,\"sizes\":[]},\"st_quote_override_position_left_responsive_tablet\":{\"unit\":\"px\",\"size\":265,\"sizes\":[]},\"st_quote_override_position_left_responsive_mobile\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]},\"st_quote_normal_font_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"st_description_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_normal_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64afd05f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"746d276b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30338dfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f950be4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ca735b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5d6ca3ad\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_title_hover_color_responsive\":\"globals\\/colors?id=secondary\",\"st_readmore_hover_color_responsive\":\"globals\\/colors?id=secondary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#646974\",\"st_excerpt_color_responsive\":\"#646974\",\"st_title_normal_color_responsive\":\"#272B36\",\"st_thumbnail_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_title_hover_color_responsive\":\"#FA8D25\",\"st_readmore_normal_color_responsive\":\"#FA8D25\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":false}],\"isInner\":false}]'),(998,183,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(999,183,'_elementor_css','a:6:{s:4:\"time\";i:1721830602;s:5:\"fonts\";a:1:{i:0;s:5:\"Inter\";}s:5:\"icons\";a:3:{i:0;s:0:\"\";i:1;s:8:\"jkiticon\";i:3;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1000,184,'_elementor_edit_mode','builder'),(1001,184,'_elementor_template_type','wp-page'),(1002,184,'_elementor_version','3.23.2'),(1003,184,'_wp_page_template','default'),(1004,184,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1005,184,'_elementor_data','[{\"id\":\"35495243\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"Eldery male gardener using scissors for bushes\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"160\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0,\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_size_tablet\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"top center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00160E\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b\":\"#00000054\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_slideshow_gallery\":[{\"id\":154,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-02-5.jpg\"},{\"id\":155,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-03-3.jpg\"},{\"id\":156,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-04-3.jpg\"},{\"id\":157,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-01-5.jpg\"}]},\"elements\":[{\"id\":\"739a26d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":65,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=06a34e7\"}},\"elements\":[{\"id\":\"132d1a8e\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Complete For All\",\"sg_title_focused\":\" Landscape \",\"sg_title_after\":\" Service And Maintenance\",\"sg_title_html_tag\":\"h1\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=primary\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"7c49583a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"635cb25b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"23cf340e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37.85499999999999687361196265555918216705322265625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":48,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"1c4c950d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4768b6f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":62.14500000000000312638803734444081783294677734375,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"flex-start\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":52,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"34c0badb\",\"elType\":\"widget\",\"settings\":{\"sg_video_button_title\":\"Play Video\",\"sg_video_button_icon\":{\"value\":\"jki jki-play\",\"library\":\"jkiticon\"},\"sg_video_url\":\"#\",\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_width_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_line_height_responsive\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#FFD402\",\"st_button_normal_glow_color_responsive\":\"#00694361\",\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"_element_width\":\"auto\",\"__globals__\":{\"st_button_normal_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=accent\",\"st_border_normal_border_border_color\":\"\",\"st_button_hover_text_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_glow_color_responsive\":\"\"},\"st_button_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_button_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_width_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_line_height_responsive_mobile\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"st_border_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_border_normal_border_border_color\":\"#FFD027\",\"st_button_line_height_responsive_tablet\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"st_button_normal_background_background_color\":\"#006943\",\"st_button_hover_text_color_responsive\":\"#006943\",\"st_button_hover_background_background_color\":\"#FFD402\",\"sg_video_auto_play\":\"\",\"sg_video_mute\":\"\"},\"elements\":[],\"widgetType\":\"jkit_video_button\"},{\"id\":\"232ec8da\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Intro\",\"align\":\"right\",\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"hide_mobile\":\"hidden-mobile\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#00160E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49b348ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"edc2dbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.00200000000000244426701101474463939666748046875,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e2246bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Prestige Luxury Cleanings LLC\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"139cc45f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Landscaping And Garden Care Services\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dc78e71\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"597dc67d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"26cf3840\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b19bda0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":167,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"980\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a46c929\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c4d8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Public Liability Insurance\",\"_id\":\"a978734\"},{\"text\":\"Environmentally Friendly\",\"_id\":\"1cd10a1\"},{\"text\":\"On Time, Every Time\",\"_id\":\"c6767db\"},{\"text\":\"Beautiful Garden Designs\",\"_id\":\"d4743f4\"},{\"text\":\"Modern Machinery And Tool\",\"_id\":\"535c17d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"398321ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4c7c15d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.9129999999999967030817060731351375579833984375,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5683e90d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":162,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"860\",\"height\":\"980\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b6190b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":163,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"-59\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"250636f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"713aa588\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"51a71b71\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#00160E\",\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=primary\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=06a34e7\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"st_content_title_color_responsive\":\"#7F7F7F\",\"st_super_color_responsive\":\"#FFD402\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\",\"sg_setting_html_tag\":\"span\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5557874f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"73847855\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":174,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/garden-maintenance-performed-by-pro-gardener-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"b1058a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":224,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":478,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":325,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"69098afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"40\",\"bottom\":\"80\",\"left\":\"40\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"7cb7bf82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91cb5d9\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26358abf\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Have The Perfect Solution For Your Landscape Problems\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15a36cc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42c8d36c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7114454f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76f24ca8\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Variation Gardening\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"138cc39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28a78a06\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Expert Landscapers\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c5ac2bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38fdb183\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3ce0b95b\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Affordable Price\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-save-money-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4c80f133\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7451fb11\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Free Consultation\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-Consultancy-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e93f2c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"39a46e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6773b2a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"87647bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find The Best Service For Your Garden\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e2cc66e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30164d28\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e8639b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":142,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-services.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fa92c14\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2c434fb3\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"5abe2e18\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33425b9f\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Lawn Services\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"472ed309\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"67cb221c\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37c1cce6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":143,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/driveway-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b3e60ba\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3b291bbf\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"20b91942\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5649f719\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Driveway Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6300b69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"256ddf68\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3735f0b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":144,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/deck-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"741128a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3691562\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3c8a0e6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5eb1b3b9\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Deck Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"25f37292\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"61c9ff8e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d41e618\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"8781ee3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":145,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/weed-control.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd84c7d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"14f7965\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fb2459e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0582197\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Weed Control \",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"f7b0fa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0197d9e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f3de9c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":146,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/grass-feed.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"75ba950\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"23edbf4\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"ad70b3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1c4ac7\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Grass Feed\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6f592ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0043a3b\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e6d8a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":147,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/edging-Cleaning.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd233da\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6535a16\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"937e2e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7aee\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Edging Cleaning\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"d9723d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"c908972\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"790dd775\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"360\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"160\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"140\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"background_overlay_color_b\":\"#000414\",\"background_overlay_image\":{\"id\":\"69\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/a-gardener-watering-plants-in-a-flowerbed-2RT8DWL.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]}},\"elements\":[{\"id\":\"a2ed5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7e37f762\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Landscaping\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a092069\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d5099\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need Someone To Take Care Your Garden & Lawn?\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=07ee36d\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1198756c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"66521a56\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":20,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":4},\"elements\":[{\"id\":\"1a89d099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.5090000000000003410605131648480892181396484375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"id\":\"70\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/happy-gardeners-with-plants-and-lawn-mower.jpg\"},\"background_position\":\"initial\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"space-between\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_color\":\"#FFFFFF00\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":9,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"46b821c1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":219,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":183,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"449971a9\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Make Appointment & Take Care Your Garden\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=secondary\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=93191b3\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_content_title_color_hover_responsive\":\"#FFFFFF\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#FFFFFF\",\"st_icon_color_responsive\":\"#00E5CC\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#00E5CC\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":false},{\"id\":\"13747b6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.4909999999999996589394868351519107818603515625,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a13f42e\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"260***1635696832144\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fde8487\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"59883b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1617542a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Process\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29c7aa96\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Complete Every Step Carefully\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ced0d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d62463d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18cf7834\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"41f79872\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-consult-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consultation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65e1b761\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"span\",\"title_color\":\"#FFD402\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#006943\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12cdbf13\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4175d29\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-pencil_art-light\",\"library\":\"jkiticon\"},\"title_text\":\"Design Installation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2adabf01\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b628\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"569b3221\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consturction \",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"67d6b2e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6fff79c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53c9a76e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"title_text\":\"Finished Work\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"555aace0\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d57540b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"71\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardening-background-with-garden-tolls-A9BGNJU.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]}},\"elements\":[{\"id\":\"147831a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"5a53d120\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"20\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Years of Experience\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"488f4727\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"6b8f6eae\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"76666759\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f532f9e\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"2850\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Happy Customers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"265fd738\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5473dc22\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"64\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Expert Landscapers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b38731e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4945f2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"627cd42c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65e3182\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.56499999999999772626324556767940521240234375},\"elements\":[{\"id\":\"43108b53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Projects\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45328989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Project We Have Done\\n\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"f382082\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.49900000000000233058017329312860965728759765625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":40,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"55ecfb57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"67afcbfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.0330000000000012505552149377763271331787109375,\"_inline_size_tablet\":23,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4989aa04\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Projects\",\"align\":\"right\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"left\",\"hover_animation\":\"float\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"32515d84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"3f5753f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"21982cfb\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"72\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-pruning-and-shaping-bushes-.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Cutting Leaf\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"404dc561\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"58d29b54\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"73\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/backyard-garden.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Home Garden\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"3bff1dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"3c24185a\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"64\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Build Backyard\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_image_height_responsive_tablet\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b3cb58d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_image\":{\"id\":\"74\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-moving-aerial-photo-Z8KDGJ9.jpg\"},\"background_overlay_color\":\"#0000007D\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]}},\"elements\":[{\"id\":\"79705206\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"51c9a732\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73b2fe0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"What They Says About Us\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4876e632\",\"elType\":\"widget\",\"settings\":{\"sg_layout_testimonial_choose\":\"style-2\",\"sg_testimonials_image_size_imagesize_size\":\"medium\",\"sg_testimonials_list\":[{\"sg_testimonials_list_client_avatar\":{\"id\":\"75\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/3SUMAU.jpg\"},\"_id\":\"6e9b2e1\",\"sg_testimonials_list_client_name\":\"Regan Traynor\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"76\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/CASCKD8.jpg\"},\"sg_testimonials_list_client_name\":\"Maisha Dunn\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"d069a43\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"77\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/MKLVKTE.jpg\"},\"sg_testimonials_list_client_name\":\"Reis Leonard\",\"sg_testimonials_list_designation\":\"Businessman\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"05c24f5\"}],\"st_wrapper_alignment_responsive\":\"left\",\"st_client_name_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_description_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_client_name_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_client_designation_normal_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_client_designation_normal_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=d343bdf\",\"st_rating_color_responsive\":\"\",\"st_client_name_normal_color_responsive\":\"\",\"st_quote_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_layout_background_background_color\":\"\"},\"st_layout_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_layout_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_wrapper_fix_height\":\"\",\"sg_setting_autoplay\":\"yes\",\"sg_setting_autoplay_pause\":\"\",\"sg_setting_arrow\":\"\",\"sg_setting_arrow_position\":\"middle-edge\",\"sg_setting_dots\":\"\",\"sg_setting_quote\":\"yes\",\"sg_setting_rating\":\"\",\"st_layout_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_layout_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_slide_show_responsive\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"sg_setting_quote_icon\":{\"value\":\"jki jki-quote-light\",\"library\":\"jkiticon\"},\"sg_layout_image_position\":\"below\",\"st_layout_background_background_background\":\"classic\",\"st_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position\":\"\",\"st_quote_override_position_top_responsive\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"st_quote_override_position_left_responsive\":{\"unit\":\"px\",\"size\":442,\"sizes\":[]},\"st_client_name_normal_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_quote_normal_font_size_responsive\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"st_client_image_margin_responsive\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_rating_font_size_responsive\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"st_rating_margin_right_responsive\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_setting_slide_show_responsive_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"st_wrapper_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position_top_responsive_tablet\":{\"unit\":\"px\",\"size\":249,\"sizes\":[]},\"st_quote_override_position_top_responsive_mobile\":{\"unit\":\"px\",\"size\":193,\"sizes\":[]},\"st_quote_override_position_left_responsive_tablet\":{\"unit\":\"px\",\"size\":265,\"sizes\":[]},\"st_quote_override_position_left_responsive_mobile\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]},\"st_quote_normal_font_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"st_description_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_normal_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64afd05f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"746d276b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30338dfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f950be4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ca735b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5d6ca3ad\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_title_hover_color_responsive\":\"globals\\/colors?id=secondary\",\"st_readmore_hover_color_responsive\":\"globals\\/colors?id=secondary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#646974\",\"st_excerpt_color_responsive\":\"#646974\",\"st_title_normal_color_responsive\":\"#272B36\",\"st_thumbnail_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_title_hover_color_responsive\":\"#FA8D25\",\"st_readmore_normal_color_responsive\":\"#FA8D25\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":false}],\"isInner\":false}]'),(1006,184,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1007,184,'_elementor_css','a:6:{s:4:\"time\";i:1721830602;s:5:\"fonts\";a:1:{i:0;s:5:\"Inter\";}s:5:\"icons\";a:3:{i:0;s:0:\"\";i:1;s:8:\"jkiticon\";i:3;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1008,185,'_elementor_edit_mode','builder'),(1009,185,'_elementor_template_type','wp-page'),(1010,185,'_elementor_version','3.23.2'),(1011,185,'_wp_page_template','default'),(1012,185,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1013,185,'_elementor_data','[{\"id\":\"35495243\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"Eldery male gardener using scissors for bushes\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"160\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0,\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_size_tablet\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"top center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00160E\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b\":\"#00000054\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_slideshow_gallery\":[{\"id\":154,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-02-5.jpg\"},{\"id\":155,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-03-3.jpg\"},{\"id\":156,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-04-3.jpg\"},{\"id\":157,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-01-5.jpg\"}]},\"elements\":[{\"id\":\"739a26d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":65,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=06a34e7\"}},\"elements\":[{\"id\":\"132d1a8e\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Complete For All\",\"sg_title_focused\":\" Landscape \",\"sg_title_after\":\" Service And Maintenance\",\"sg_title_html_tag\":\"h1\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=primary\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"7c49583a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"635cb25b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"23cf340e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37.85499999999999687361196265555918216705322265625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":48,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"1c4c950d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4768b6f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":62.14500000000000312638803734444081783294677734375,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"flex-start\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":52,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"34c0badb\",\"elType\":\"widget\",\"settings\":{\"sg_video_button_title\":\"Play Video\",\"sg_video_button_icon\":{\"value\":\"jki jki-play\",\"library\":\"jkiticon\"},\"sg_video_url\":\"#\",\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_width_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_line_height_responsive\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#FFD402\",\"st_button_normal_glow_color_responsive\":\"#00694361\",\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"_element_width\":\"auto\",\"__globals__\":{\"st_button_normal_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=accent\",\"st_border_normal_border_border_color\":\"\",\"st_button_hover_text_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_glow_color_responsive\":\"\"},\"st_button_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_button_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_width_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_line_height_responsive_mobile\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"st_border_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_border_normal_border_border_color\":\"#FFD027\",\"st_button_line_height_responsive_tablet\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"st_button_normal_background_background_color\":\"#006943\",\"st_button_hover_text_color_responsive\":\"#006943\",\"st_button_hover_background_background_color\":\"#FFD402\",\"sg_video_auto_play\":\"\",\"sg_video_mute\":\"\"},\"elements\":[],\"widgetType\":\"jkit_video_button\"},{\"id\":\"232ec8da\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Intro\",\"align\":\"right\",\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"hide_mobile\":\"hidden-mobile\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#00160E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49b348ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"edc2dbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.00200000000000244426701101474463939666748046875,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e2246bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Prestige Luxury Cleanings LLC\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"139cc45f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Landscaping And Garden Care Services\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dc78e71\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"597dc67d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"26cf3840\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b19bda0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":167,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"980\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a46c929\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c4d8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Public Liability Insurance\",\"_id\":\"a978734\"},{\"text\":\"Environmentally Friendly\",\"_id\":\"1cd10a1\"},{\"text\":\"On Time, Every Time\",\"_id\":\"c6767db\"},{\"text\":\"Beautiful Garden Designs\",\"_id\":\"d4743f4\"},{\"text\":\"Modern Machinery And Tool\",\"_id\":\"535c17d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"398321ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4c7c15d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.9129999999999967030817060731351375579833984375,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5683e90d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":162,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"860\",\"height\":\"980\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b6190b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":163,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"-59\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"250636f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"713aa588\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"51a71b71\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#00160E\",\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=primary\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=06a34e7\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"st_content_title_color_responsive\":\"#7F7F7F\",\"st_super_color_responsive\":\"#FFD402\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\",\"sg_setting_html_tag\":\"span\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5557874f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"73847855\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":174,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/garden-maintenance-performed-by-pro-gardener-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"b1058a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":224,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":478,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":325,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"69098afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"40\",\"bottom\":\"80\",\"left\":\"40\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"7cb7bf82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91cb5d9\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26358abf\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Have The Perfect Solution For Your Landscape Problems\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15a36cc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42c8d36c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7114454f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76f24ca8\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Variation Gardening\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"138cc39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28a78a06\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Expert Landscapers\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c5ac2bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38fdb183\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3ce0b95b\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Affordable Price\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-save-money-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4c80f133\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7451fb11\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Free Consultation\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-Consultancy-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e93f2c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"39a46e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6773b2a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"87647bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find The Best Service For Your Garden\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e2cc66e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30164d28\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e8639b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":142,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-services.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fa92c14\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2c434fb3\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"5abe2e18\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33425b9f\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Lawn Services\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"472ed309\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"67cb221c\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37c1cce6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":143,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/driveway-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b3e60ba\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3b291bbf\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"20b91942\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5649f719\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Driveway Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6300b69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"256ddf68\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3735f0b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":144,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/deck-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"741128a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3691562\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3c8a0e6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5eb1b3b9\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Deck Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"25f37292\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"61c9ff8e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d41e618\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"8781ee3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":145,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/weed-control.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd84c7d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"14f7965\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fb2459e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0582197\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Weed Control \",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"f7b0fa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0197d9e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f3de9c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":146,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/grass-feed.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"75ba950\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"23edbf4\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"ad70b3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1c4ac7\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Grass Feed\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6f592ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0043a3b\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e6d8a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":147,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/edging-Cleaning.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd233da\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6535a16\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"937e2e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7aee\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Edging Cleaning\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"d9723d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"c908972\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"790dd775\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"360\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"160\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"140\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"background_overlay_color_b\":\"#000414\",\"background_overlay_image\":{\"id\":\"69\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/a-gardener-watering-plants-in-a-flowerbed-2RT8DWL.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]}},\"elements\":[{\"id\":\"a2ed5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7e37f762\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Landscaping\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a092069\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d5099\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need Someone To Take Care Your Garden & Lawn?\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=07ee36d\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1198756c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"66521a56\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":20,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":4},\"elements\":[{\"id\":\"1a89d099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.5090000000000003410605131648480892181396484375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"id\":\"70\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/happy-gardeners-with-plants-and-lawn-mower.jpg\"},\"background_position\":\"initial\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"space-between\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_color\":\"#FFFFFF00\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":9,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"46b821c1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":219,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":183,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"449971a9\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Make Appointment & Take Care Your Garden\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=secondary\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=93191b3\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_content_title_color_hover_responsive\":\"#FFFFFF\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#FFFFFF\",\"st_icon_color_responsive\":\"#00E5CC\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#00E5CC\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":false},{\"id\":\"13747b6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.4909999999999996589394868351519107818603515625,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a13f42e\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"178***1721830795182\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fde8487\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"59883b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1617542a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Process\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29c7aa96\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Complete Every Step Carefully\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ced0d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d62463d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18cf7834\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"41f79872\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-consult-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consultation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65e1b761\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"span\",\"title_color\":\"#FFD402\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#006943\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12cdbf13\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4175d29\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-pencil_art-light\",\"library\":\"jkiticon\"},\"title_text\":\"Design Installation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2adabf01\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b628\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"569b3221\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consturction \",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"67d6b2e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6fff79c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53c9a76e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"title_text\":\"Finished Work\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"555aace0\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d57540b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"71\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardening-background-with-garden-tolls-A9BGNJU.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]}},\"elements\":[{\"id\":\"147831a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"5a53d120\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"20\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Years of Experience\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"488f4727\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"6b8f6eae\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"76666759\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f532f9e\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"2850\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Happy Customers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"265fd738\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5473dc22\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"64\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Expert Landscapers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b38731e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4945f2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"627cd42c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65e3182\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.56499999999999772626324556767940521240234375},\"elements\":[{\"id\":\"43108b53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Projects\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45328989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Project We Have Done\\n\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"f382082\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.49900000000000233058017329312860965728759765625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":40,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"55ecfb57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"67afcbfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.0330000000000012505552149377763271331787109375,\"_inline_size_tablet\":23,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4989aa04\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Projects\",\"align\":\"right\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"left\",\"hover_animation\":\"float\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"32515d84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"3f5753f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"21982cfb\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"72\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-pruning-and-shaping-bushes-.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Cutting Leaf\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"404dc561\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"58d29b54\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"73\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/backyard-garden.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Home Garden\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"3bff1dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"3c24185a\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"64\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Build Backyard\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_image_height_responsive_tablet\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b3cb58d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_image\":{\"id\":\"74\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-moving-aerial-photo-Z8KDGJ9.jpg\"},\"background_overlay_color\":\"#0000007D\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]}},\"elements\":[{\"id\":\"79705206\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"51c9a732\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73b2fe0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"What They Says About Us\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4876e632\",\"elType\":\"widget\",\"settings\":{\"sg_layout_testimonial_choose\":\"style-2\",\"sg_testimonials_image_size_imagesize_size\":\"medium\",\"sg_testimonials_list\":[{\"sg_testimonials_list_client_avatar\":{\"id\":\"75\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/3SUMAU.jpg\"},\"_id\":\"6e9b2e1\",\"sg_testimonials_list_client_name\":\"Regan Traynor\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"76\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/CASCKD8.jpg\"},\"sg_testimonials_list_client_name\":\"Maisha Dunn\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"d069a43\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"77\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/MKLVKTE.jpg\"},\"sg_testimonials_list_client_name\":\"Reis Leonard\",\"sg_testimonials_list_designation\":\"Businessman\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"05c24f5\"}],\"st_wrapper_alignment_responsive\":\"left\",\"st_client_name_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_description_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_client_name_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_client_designation_normal_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_client_designation_normal_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=d343bdf\",\"st_rating_color_responsive\":\"\",\"st_client_name_normal_color_responsive\":\"\",\"st_quote_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_layout_background_background_color\":\"\"},\"st_layout_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_layout_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_wrapper_fix_height\":\"\",\"sg_setting_autoplay\":\"yes\",\"sg_setting_autoplay_pause\":\"\",\"sg_setting_arrow\":\"\",\"sg_setting_arrow_position\":\"middle-edge\",\"sg_setting_dots\":\"\",\"sg_setting_quote\":\"yes\",\"sg_setting_rating\":\"\",\"st_layout_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_layout_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_slide_show_responsive\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"sg_setting_quote_icon\":{\"value\":\"jki jki-quote-light\",\"library\":\"jkiticon\"},\"sg_layout_image_position\":\"below\",\"st_layout_background_background_background\":\"classic\",\"st_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position\":\"\",\"st_quote_override_position_top_responsive\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"st_quote_override_position_left_responsive\":{\"unit\":\"px\",\"size\":442,\"sizes\":[]},\"st_client_name_normal_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_quote_normal_font_size_responsive\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"st_client_image_margin_responsive\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_rating_font_size_responsive\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"st_rating_margin_right_responsive\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_setting_slide_show_responsive_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"st_wrapper_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position_top_responsive_tablet\":{\"unit\":\"px\",\"size\":249,\"sizes\":[]},\"st_quote_override_position_top_responsive_mobile\":{\"unit\":\"px\",\"size\":193,\"sizes\":[]},\"st_quote_override_position_left_responsive_tablet\":{\"unit\":\"px\",\"size\":265,\"sizes\":[]},\"st_quote_override_position_left_responsive_mobile\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]},\"st_quote_normal_font_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"st_description_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_normal_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64afd05f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"746d276b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30338dfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f950be4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ca735b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5d6ca3ad\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_title_hover_color_responsive\":\"globals\\/colors?id=secondary\",\"st_readmore_hover_color_responsive\":\"globals\\/colors?id=secondary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#646974\",\"st_excerpt_color_responsive\":\"#646974\",\"st_title_normal_color_responsive\":\"#272B36\",\"st_thumbnail_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_title_hover_color_responsive\":\"#FA8D25\",\"st_readmore_normal_color_responsive\":\"#FA8D25\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":false}],\"isInner\":false}]'),(1014,185,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1015,185,'_elementor_css','a:6:{s:4:\"time\";i:1721830602;s:5:\"fonts\";a:1:{i:0;s:5:\"Inter\";}s:5:\"icons\";a:3:{i:0;s:0:\"\";i:1;s:8:\"jkiticon\";i:3;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1017,186,'_wp_attached_file','2024/07/a-gardener-watering-plants-in-a-flowerbed-2RT8DWL-1.jpg'),(1018,186,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:63:\"2024/07/a-gardener-watering-plants-in-a-flowerbed-2RT8DWL-1.jpg\";s:8:\"filesize\";i:2905962;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:63:\"a-gardener-watering-plants-in-a-flowerbed-2RT8DWL-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:18285;}s:5:\"large\";a:5:{s:4:\"file\";s:64:\"a-gardener-watering-plants-in-a-flowerbed-2RT8DWL-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:225771;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:63:\"a-gardener-watering-plants-in-a-flowerbed-2RT8DWL-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:7385;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:63:\"a-gardener-watering-plants-in-a-flowerbed-2RT8DWL-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:130458;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:65:\"a-gardener-watering-plants-in-a-flowerbed-2RT8DWL-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:456697;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:11:\"Mint Images\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:5:\"29711\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1019,187,'_elementor_edit_mode','builder'),(1020,187,'_elementor_template_type','wp-page'),(1021,187,'_elementor_version','3.23.2'),(1022,187,'_wp_page_template','default'),(1023,187,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1024,187,'_elementor_data','[{\"id\":\"35495243\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"Eldery male gardener using scissors for bushes\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"160\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0,\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_size_tablet\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"top center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00160E\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b\":\"#00000054\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_slideshow_gallery\":[{\"id\":154,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-02-5.jpg\"},{\"id\":155,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-03-3.jpg\"},{\"id\":156,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-04-3.jpg\"},{\"id\":157,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-01-5.jpg\"}]},\"elements\":[{\"id\":\"739a26d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":65,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=06a34e7\"}},\"elements\":[{\"id\":\"132d1a8e\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Complete For All\",\"sg_title_focused\":\" Landscape \",\"sg_title_after\":\" Service And Maintenance\",\"sg_title_html_tag\":\"h1\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=primary\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"7c49583a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"635cb25b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"23cf340e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37.85499999999999687361196265555918216705322265625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":48,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"1c4c950d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4768b6f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":62.14500000000000312638803734444081783294677734375,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"flex-start\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":52,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"34c0badb\",\"elType\":\"widget\",\"settings\":{\"sg_video_button_title\":\"Play Video\",\"sg_video_button_icon\":{\"value\":\"jki jki-play\",\"library\":\"jkiticon\"},\"sg_video_url\":\"#\",\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_width_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_line_height_responsive\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#FFD402\",\"st_button_normal_glow_color_responsive\":\"#00694361\",\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"_element_width\":\"auto\",\"__globals__\":{\"st_button_normal_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=accent\",\"st_border_normal_border_border_color\":\"\",\"st_button_hover_text_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_glow_color_responsive\":\"\"},\"st_button_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_button_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_width_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_line_height_responsive_mobile\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"st_border_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_border_normal_border_border_color\":\"#FFD027\",\"st_button_line_height_responsive_tablet\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"st_button_normal_background_background_color\":\"#006943\",\"st_button_hover_text_color_responsive\":\"#006943\",\"st_button_hover_background_background_color\":\"#FFD402\",\"sg_video_auto_play\":\"\",\"sg_video_mute\":\"\"},\"elements\":[],\"widgetType\":\"jkit_video_button\"},{\"id\":\"232ec8da\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Intro\",\"align\":\"right\",\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"hide_mobile\":\"hidden-mobile\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#00160E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49b348ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"edc2dbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.00200000000000244426701101474463939666748046875,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e2246bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Prestige Luxury Cleanings LLC\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"139cc45f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Landscaping And Garden Care Services\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dc78e71\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"597dc67d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"26cf3840\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b19bda0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":167,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"980\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a46c929\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c4d8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Public Liability Insurance\",\"_id\":\"a978734\"},{\"text\":\"Environmentally Friendly\",\"_id\":\"1cd10a1\"},{\"text\":\"On Time, Every Time\",\"_id\":\"c6767db\"},{\"text\":\"Beautiful Garden Designs\",\"_id\":\"d4743f4\"},{\"text\":\"Modern Machinery And Tool\",\"_id\":\"535c17d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"398321ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4c7c15d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.9129999999999967030817060731351375579833984375,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5683e90d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":162,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"860\",\"height\":\"980\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b6190b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":163,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"-59\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"250636f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"713aa588\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"51a71b71\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#00160E\",\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=primary\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=06a34e7\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"st_content_title_color_responsive\":\"#7F7F7F\",\"st_super_color_responsive\":\"#FFD402\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\",\"sg_setting_html_tag\":\"span\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5557874f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"73847855\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":174,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/garden-maintenance-performed-by-pro-gardener-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"b1058a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":224,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":478,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":325,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"69098afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"40\",\"bottom\":\"80\",\"left\":\"40\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"7cb7bf82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91cb5d9\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26358abf\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Have The Perfect Solution For Your Landscape Problems\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15a36cc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42c8d36c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7114454f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76f24ca8\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Variation Gardening\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"138cc39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28a78a06\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Expert Landscapers\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c5ac2bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38fdb183\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3ce0b95b\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Affordable Price\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-save-money-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4c80f133\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7451fb11\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Free Consultation\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-Consultancy-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e93f2c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"39a46e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6773b2a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"87647bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find The Best Service For Your Garden\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e2cc66e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30164d28\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e8639b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":142,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-services.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fa92c14\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2c434fb3\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"5abe2e18\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33425b9f\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Lawn Services\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"472ed309\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"67cb221c\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37c1cce6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":143,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/driveway-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b3e60ba\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3b291bbf\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"20b91942\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5649f719\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Driveway Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6300b69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"256ddf68\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3735f0b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":144,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/deck-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"741128a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3691562\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3c8a0e6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5eb1b3b9\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Deck Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"25f37292\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"61c9ff8e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d41e618\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"8781ee3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":145,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/weed-control.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd84c7d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"14f7965\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fb2459e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0582197\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Weed Control \",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"f7b0fa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0197d9e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f3de9c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":146,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/grass-feed.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"75ba950\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"23edbf4\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"ad70b3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1c4ac7\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Grass Feed\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6f592ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0043a3b\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e6d8a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":147,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/edging-Cleaning.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd233da\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6535a16\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"937e2e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7aee\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Edging Cleaning\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"d9723d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"c908972\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"790dd775\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"360\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"160\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"140\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"background_overlay_color_b\":\"#000414\",\"background_overlay_image\":{\"id\":\"69\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/a-gardener-watering-plants-in-a-flowerbed-2RT8DWL.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]}},\"elements\":[{\"id\":\"a2ed5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7e37f762\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Landscaping\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a092069\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d5099\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need Someone To Take Care Your Garden & Lawn?\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=07ee36d\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1198756c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"66521a56\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":20,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":4},\"elements\":[{\"id\":\"1a89d099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.5090000000000003410605131648480892181396484375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"id\":\"70\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/happy-gardeners-with-plants-and-lawn-mower.jpg\"},\"background_position\":\"initial\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"space-between\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_color\":\"#FFFFFF00\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":9,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"46b821c1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":219,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":183,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"449971a9\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Make Appointment & Take Care Your Garden\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=secondary\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=93191b3\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_content_title_color_hover_responsive\":\"#FFFFFF\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#FFFFFF\",\"st_icon_color_responsive\":\"#00E5CC\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#00E5CC\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":false},{\"id\":\"13747b6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.4909999999999996589394868351519107818603515625,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a13f42e\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"178***1721830795182\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fde8487\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"59883b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1617542a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Process\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29c7aa96\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Complete Every Step Carefully\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ced0d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d62463d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18cf7834\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"41f79872\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-consult-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consultation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65e1b761\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"span\",\"title_color\":\"#FFD402\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#006943\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12cdbf13\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4175d29\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-pencil_art-light\",\"library\":\"jkiticon\"},\"title_text\":\"Design Installation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2adabf01\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b628\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"569b3221\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consturction \",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"67d6b2e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6fff79c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53c9a76e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"title_text\":\"Finished Work\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"555aace0\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d57540b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"71\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardening-background-with-garden-tolls-A9BGNJU.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]}},\"elements\":[{\"id\":\"147831a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"5a53d120\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"20\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Years of Experience\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"488f4727\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"6b8f6eae\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"76666759\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f532f9e\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"2850\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Happy Customers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"265fd738\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5473dc22\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"64\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Expert Landscapers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b38731e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4945f2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"627cd42c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65e3182\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.56499999999999772626324556767940521240234375},\"elements\":[{\"id\":\"43108b53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Projects\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45328989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Project We Have Done\\n\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"f382082\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.49900000000000233058017329312860965728759765625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":40,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"55ecfb57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"67afcbfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.0330000000000012505552149377763271331787109375,\"_inline_size_tablet\":23,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4989aa04\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Projects\",\"align\":\"right\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"left\",\"hover_animation\":\"float\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"32515d84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"3f5753f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"21982cfb\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"72\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-pruning-and-shaping-bushes-.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Cutting Leaf\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"404dc561\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"58d29b54\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"73\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/backyard-garden.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Home Garden\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"3bff1dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"3c24185a\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"64\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Build Backyard\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_image_height_responsive_tablet\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b3cb58d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_image\":{\"id\":\"74\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-moving-aerial-photo-Z8KDGJ9.jpg\"},\"background_overlay_color\":\"#0000007D\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]}},\"elements\":[{\"id\":\"79705206\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"51c9a732\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73b2fe0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"What They Says About Us\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4876e632\",\"elType\":\"widget\",\"settings\":{\"sg_layout_testimonial_choose\":\"style-2\",\"sg_testimonials_image_size_imagesize_size\":\"medium\",\"sg_testimonials_list\":[{\"sg_testimonials_list_client_avatar\":{\"id\":\"75\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/3SUMAU.jpg\"},\"_id\":\"6e9b2e1\",\"sg_testimonials_list_client_name\":\"Regan Traynor\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"76\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/CASCKD8.jpg\"},\"sg_testimonials_list_client_name\":\"Maisha Dunn\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"d069a43\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"77\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/MKLVKTE.jpg\"},\"sg_testimonials_list_client_name\":\"Reis Leonard\",\"sg_testimonials_list_designation\":\"Businessman\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"05c24f5\"}],\"st_wrapper_alignment_responsive\":\"left\",\"st_client_name_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_description_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_client_name_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_client_designation_normal_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_client_designation_normal_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=d343bdf\",\"st_rating_color_responsive\":\"\",\"st_client_name_normal_color_responsive\":\"\",\"st_quote_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_layout_background_background_color\":\"\"},\"st_layout_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_layout_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_wrapper_fix_height\":\"\",\"sg_setting_autoplay\":\"yes\",\"sg_setting_autoplay_pause\":\"\",\"sg_setting_arrow\":\"\",\"sg_setting_arrow_position\":\"middle-edge\",\"sg_setting_dots\":\"\",\"sg_setting_quote\":\"yes\",\"sg_setting_rating\":\"\",\"st_layout_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_layout_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_slide_show_responsive\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"sg_setting_quote_icon\":{\"value\":\"jki jki-quote-light\",\"library\":\"jkiticon\"},\"sg_layout_image_position\":\"below\",\"st_layout_background_background_background\":\"classic\",\"st_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position\":\"\",\"st_quote_override_position_top_responsive\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"st_quote_override_position_left_responsive\":{\"unit\":\"px\",\"size\":442,\"sizes\":[]},\"st_client_name_normal_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_quote_normal_font_size_responsive\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"st_client_image_margin_responsive\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_rating_font_size_responsive\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"st_rating_margin_right_responsive\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_setting_slide_show_responsive_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"st_wrapper_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position_top_responsive_tablet\":{\"unit\":\"px\",\"size\":249,\"sizes\":[]},\"st_quote_override_position_top_responsive_mobile\":{\"unit\":\"px\",\"size\":193,\"sizes\":[]},\"st_quote_override_position_left_responsive_tablet\":{\"unit\":\"px\",\"size\":265,\"sizes\":[]},\"st_quote_override_position_left_responsive_mobile\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]},\"st_quote_normal_font_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"st_description_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_normal_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64afd05f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"746d276b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30338dfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f950be4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ca735b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5d6ca3ad\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_title_hover_color_responsive\":\"globals\\/colors?id=secondary\",\"st_readmore_hover_color_responsive\":\"globals\\/colors?id=secondary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#646974\",\"st_excerpt_color_responsive\":\"#646974\",\"st_title_normal_color_responsive\":\"#272B36\",\"st_thumbnail_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_title_hover_color_responsive\":\"#FA8D25\",\"st_readmore_normal_color_responsive\":\"#FA8D25\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":false}],\"isInner\":false}]'),(1025,187,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1026,187,'_elementor_css','a:6:{s:4:\"time\";i:1721830869;s:5:\"fonts\";a:1:{i:0;s:5:\"Inter\";}s:5:\"icons\";a:3:{i:0;s:0:\"\";i:1;s:8:\"jkiticon\";i:3;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1027,188,'_elementor_edit_mode','builder'),(1028,188,'_elementor_template_type','wp-page'),(1029,188,'_elementor_version','3.23.2'),(1030,188,'_wp_page_template','default'),(1031,188,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1032,188,'_elementor_data','[{\"id\":\"35495243\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"Eldery male gardener using scissors for bushes\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"160\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0,\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_size_tablet\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"top center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00160E\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b\":\"#00000054\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_slideshow_gallery\":[{\"id\":154,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-02-5.jpg\"},{\"id\":155,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-03-3.jpg\"},{\"id\":156,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-04-3.jpg\"},{\"id\":157,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-01-5.jpg\"}]},\"elements\":[{\"id\":\"739a26d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":65,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=06a34e7\"}},\"elements\":[{\"id\":\"132d1a8e\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Complete For All\",\"sg_title_focused\":\" Landscape \",\"sg_title_after\":\" Service And Maintenance\",\"sg_title_html_tag\":\"h1\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=primary\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"7c49583a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"635cb25b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"23cf340e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37.85499999999999687361196265555918216705322265625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":48,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"1c4c950d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4768b6f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":62.14500000000000312638803734444081783294677734375,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"flex-start\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":52,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"34c0badb\",\"elType\":\"widget\",\"settings\":{\"sg_video_button_title\":\"Play Video\",\"sg_video_button_icon\":{\"value\":\"jki jki-play\",\"library\":\"jkiticon\"},\"sg_video_url\":\"#\",\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_width_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_line_height_responsive\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#FFD402\",\"st_button_normal_glow_color_responsive\":\"#00694361\",\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"_element_width\":\"auto\",\"__globals__\":{\"st_button_normal_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=accent\",\"st_border_normal_border_border_color\":\"\",\"st_button_hover_text_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_glow_color_responsive\":\"\"},\"st_button_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_button_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_width_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_line_height_responsive_mobile\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"st_border_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_border_normal_border_border_color\":\"#FFD027\",\"st_button_line_height_responsive_tablet\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"st_button_normal_background_background_color\":\"#006943\",\"st_button_hover_text_color_responsive\":\"#006943\",\"st_button_hover_background_background_color\":\"#FFD402\",\"sg_video_auto_play\":\"\",\"sg_video_mute\":\"\"},\"elements\":[],\"widgetType\":\"jkit_video_button\"},{\"id\":\"232ec8da\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Intro\",\"align\":\"right\",\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"hide_mobile\":\"hidden-mobile\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#00160E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49b348ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"edc2dbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.00200000000000244426701101474463939666748046875,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e2246bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Prestige Luxury Cleanings LLC\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"139cc45f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Landscaping And Garden Care Services\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dc78e71\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"597dc67d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"26cf3840\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b19bda0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":167,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"980\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a46c929\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c4d8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Public Liability Insurance\",\"_id\":\"a978734\"},{\"text\":\"Environmentally Friendly\",\"_id\":\"1cd10a1\"},{\"text\":\"On Time, Every Time\",\"_id\":\"c6767db\"},{\"text\":\"Beautiful Garden Designs\",\"_id\":\"d4743f4\"},{\"text\":\"Modern Machinery And Tool\",\"_id\":\"535c17d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"398321ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4c7c15d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.9129999999999967030817060731351375579833984375,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5683e90d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":162,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"860\",\"height\":\"980\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b6190b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":163,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"-59\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"250636f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"713aa588\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"51a71b71\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#00160E\",\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=primary\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=06a34e7\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"st_content_title_color_responsive\":\"#7F7F7F\",\"st_super_color_responsive\":\"#FFD402\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\",\"sg_setting_html_tag\":\"span\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5557874f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"73847855\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":174,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/garden-maintenance-performed-by-pro-gardener-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"b1058a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":224,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":478,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":325,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"69098afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"40\",\"bottom\":\"80\",\"left\":\"40\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"7cb7bf82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91cb5d9\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26358abf\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Have The Perfect Solution For Your Landscape Problems\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15a36cc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42c8d36c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7114454f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76f24ca8\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Variation Gardening\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"138cc39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28a78a06\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Expert Landscapers\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c5ac2bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38fdb183\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3ce0b95b\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Affordable Price\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-save-money-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4c80f133\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7451fb11\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Free Consultation\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-Consultancy-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e93f2c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"39a46e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6773b2a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"87647bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find The Best Service For Your Garden\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e2cc66e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30164d28\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e8639b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":142,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-services.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fa92c14\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2c434fb3\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"5abe2e18\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33425b9f\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Lawn Services\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"472ed309\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"67cb221c\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37c1cce6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":143,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/driveway-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b3e60ba\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3b291bbf\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"20b91942\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5649f719\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Driveway Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6300b69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"256ddf68\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3735f0b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":144,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/deck-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"741128a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3691562\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3c8a0e6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5eb1b3b9\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Deck Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"25f37292\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"61c9ff8e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d41e618\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"8781ee3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":145,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/weed-control.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd84c7d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"14f7965\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fb2459e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0582197\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Weed Control \",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"f7b0fa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0197d9e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f3de9c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":146,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/grass-feed.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"75ba950\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"23edbf4\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"ad70b3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1c4ac7\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Grass Feed\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6f592ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0043a3b\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e6d8a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":147,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/edging-Cleaning.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd233da\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6535a16\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"937e2e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7aee\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Edging Cleaning\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"d9723d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"c908972\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"790dd775\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"360\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"160\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"140\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"background_overlay_color_b\":\"#000414\",\"background_overlay_image\":{\"id\":\"69\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/a-gardener-watering-plants-in-a-flowerbed-2RT8DWL.jpg\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]}},\"elements\":[{\"id\":\"a2ed5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7e37f762\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Landscaping\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a092069\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d5099\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need Someone To Take Care Your Garden & Lawn?\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=07ee36d\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1198756c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"66521a56\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":20,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":4},\"elements\":[{\"id\":\"1a89d099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.5090000000000003410605131648480892181396484375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"id\":\"70\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/happy-gardeners-with-plants-and-lawn-mower.jpg\"},\"background_position\":\"initial\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"space-between\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_color\":\"#FFFFFF00\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":9,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"46b821c1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":219,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":183,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"449971a9\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Make Appointment & Take Care Your Garden\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=secondary\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=93191b3\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_content_title_color_hover_responsive\":\"#FFFFFF\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#FFFFFF\",\"st_icon_color_responsive\":\"#00E5CC\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#00E5CC\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":false},{\"id\":\"13747b6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.4909999999999996589394868351519107818603515625,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a13f42e\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"178***1721830795182\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fde8487\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"59883b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1617542a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Process\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29c7aa96\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Complete Every Step Carefully\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ced0d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d62463d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18cf7834\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"41f79872\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-consult-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consultation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65e1b761\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"span\",\"title_color\":\"#FFD402\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#006943\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12cdbf13\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4175d29\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-pencil_art-light\",\"library\":\"jkiticon\"},\"title_text\":\"Design Installation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2adabf01\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b628\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"569b3221\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consturction \",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"67d6b2e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6fff79c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53c9a76e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"title_text\":\"Finished Work\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"555aace0\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d57540b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"71\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardening-background-with-garden-tolls-A9BGNJU.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]}},\"elements\":[{\"id\":\"147831a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"5a53d120\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"20\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Years of Experience\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"488f4727\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"6b8f6eae\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"76666759\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f532f9e\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"2850\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Happy Customers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"265fd738\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5473dc22\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"64\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Expert Landscapers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b38731e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4945f2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"627cd42c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65e3182\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.56499999999999772626324556767940521240234375},\"elements\":[{\"id\":\"43108b53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Projects\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45328989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Project We Have Done\\n\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"f382082\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.49900000000000233058017329312860965728759765625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":40,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"55ecfb57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"67afcbfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.0330000000000012505552149377763271331787109375,\"_inline_size_tablet\":23,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4989aa04\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Projects\",\"align\":\"right\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"left\",\"hover_animation\":\"float\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"32515d84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"3f5753f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"21982cfb\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"72\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-pruning-and-shaping-bushes-.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Cutting Leaf\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"404dc561\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"58d29b54\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"73\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/backyard-garden.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Home Garden\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"3bff1dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"3c24185a\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"64\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Build Backyard\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_image_height_responsive_tablet\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b3cb58d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_image\":{\"id\":\"74\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-moving-aerial-photo-Z8KDGJ9.jpg\"},\"background_overlay_color\":\"#0000007D\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]}},\"elements\":[{\"id\":\"79705206\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"51c9a732\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73b2fe0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"What They Says About Us\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4876e632\",\"elType\":\"widget\",\"settings\":{\"sg_layout_testimonial_choose\":\"style-2\",\"sg_testimonials_image_size_imagesize_size\":\"medium\",\"sg_testimonials_list\":[{\"sg_testimonials_list_client_avatar\":{\"id\":\"75\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/3SUMAU.jpg\"},\"_id\":\"6e9b2e1\",\"sg_testimonials_list_client_name\":\"Regan Traynor\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"76\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/CASCKD8.jpg\"},\"sg_testimonials_list_client_name\":\"Maisha Dunn\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"d069a43\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"77\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/MKLVKTE.jpg\"},\"sg_testimonials_list_client_name\":\"Reis Leonard\",\"sg_testimonials_list_designation\":\"Businessman\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"05c24f5\"}],\"st_wrapper_alignment_responsive\":\"left\",\"st_client_name_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_description_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_client_name_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_client_designation_normal_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_client_designation_normal_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=d343bdf\",\"st_rating_color_responsive\":\"\",\"st_client_name_normal_color_responsive\":\"\",\"st_quote_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_layout_background_background_color\":\"\"},\"st_layout_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_layout_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_wrapper_fix_height\":\"\",\"sg_setting_autoplay\":\"yes\",\"sg_setting_autoplay_pause\":\"\",\"sg_setting_arrow\":\"\",\"sg_setting_arrow_position\":\"middle-edge\",\"sg_setting_dots\":\"\",\"sg_setting_quote\":\"yes\",\"sg_setting_rating\":\"\",\"st_layout_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_layout_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_slide_show_responsive\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"sg_setting_quote_icon\":{\"value\":\"jki jki-quote-light\",\"library\":\"jkiticon\"},\"sg_layout_image_position\":\"below\",\"st_layout_background_background_background\":\"classic\",\"st_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position\":\"\",\"st_quote_override_position_top_responsive\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"st_quote_override_position_left_responsive\":{\"unit\":\"px\",\"size\":442,\"sizes\":[]},\"st_client_name_normal_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_quote_normal_font_size_responsive\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"st_client_image_margin_responsive\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_rating_font_size_responsive\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"st_rating_margin_right_responsive\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_setting_slide_show_responsive_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"st_wrapper_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position_top_responsive_tablet\":{\"unit\":\"px\",\"size\":249,\"sizes\":[]},\"st_quote_override_position_top_responsive_mobile\":{\"unit\":\"px\",\"size\":193,\"sizes\":[]},\"st_quote_override_position_left_responsive_tablet\":{\"unit\":\"px\",\"size\":265,\"sizes\":[]},\"st_quote_override_position_left_responsive_mobile\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]},\"st_quote_normal_font_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"st_description_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_normal_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64afd05f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"746d276b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30338dfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f950be4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ca735b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5d6ca3ad\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_title_hover_color_responsive\":\"globals\\/colors?id=secondary\",\"st_readmore_hover_color_responsive\":\"globals\\/colors?id=secondary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#646974\",\"st_excerpt_color_responsive\":\"#646974\",\"st_title_normal_color_responsive\":\"#272B36\",\"st_thumbnail_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_title_hover_color_responsive\":\"#FA8D25\",\"st_readmore_normal_color_responsive\":\"#FA8D25\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":false}],\"isInner\":false}]'),(1033,188,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1034,188,'_elementor_css','a:6:{s:4:\"time\";i:1721830869;s:5:\"fonts\";a:1:{i:0;s:5:\"Inter\";}s:5:\"icons\";a:3:{i:0;s:0:\"\";i:1;s:8:\"jkiticon\";i:3;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1035,189,'_elementor_edit_mode','builder'),(1036,189,'_elementor_template_type','wp-page'),(1037,189,'_elementor_version','3.23.2'),(1038,189,'_wp_page_template','default'),(1039,189,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1040,189,'_elementor_data','[{\"id\":\"35495243\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"Eldery male gardener using scissors for bushes\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"160\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0,\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_size_tablet\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"top center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00160E\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b\":\"#00000054\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_slideshow_gallery\":[{\"id\":154,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-02-5.jpg\"},{\"id\":155,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-03-3.jpg\"},{\"id\":156,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-04-3.jpg\"},{\"id\":157,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-01-5.jpg\"}]},\"elements\":[{\"id\":\"739a26d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":65,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=06a34e7\"}},\"elements\":[{\"id\":\"132d1a8e\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Complete For All\",\"sg_title_focused\":\" Landscape \",\"sg_title_after\":\" Service And Maintenance\",\"sg_title_html_tag\":\"h1\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=primary\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"7c49583a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"635cb25b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"23cf340e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37.85499999999999687361196265555918216705322265625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":48,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"1c4c950d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4768b6f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":62.14500000000000312638803734444081783294677734375,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"flex-start\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":52,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"34c0badb\",\"elType\":\"widget\",\"settings\":{\"sg_video_button_title\":\"Play Video\",\"sg_video_button_icon\":{\"value\":\"jki jki-play\",\"library\":\"jkiticon\"},\"sg_video_url\":\"#\",\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_width_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_line_height_responsive\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#FFD402\",\"st_button_normal_glow_color_responsive\":\"#00694361\",\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"_element_width\":\"auto\",\"__globals__\":{\"st_button_normal_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=accent\",\"st_border_normal_border_border_color\":\"\",\"st_button_hover_text_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_glow_color_responsive\":\"\"},\"st_button_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_button_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_width_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_line_height_responsive_mobile\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"st_border_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_border_normal_border_border_color\":\"#FFD027\",\"st_button_line_height_responsive_tablet\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"st_button_normal_background_background_color\":\"#006943\",\"st_button_hover_text_color_responsive\":\"#006943\",\"st_button_hover_background_background_color\":\"#FFD402\",\"sg_video_auto_play\":\"\",\"sg_video_mute\":\"\"},\"elements\":[],\"widgetType\":\"jkit_video_button\"},{\"id\":\"232ec8da\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Intro\",\"align\":\"right\",\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"hide_mobile\":\"hidden-mobile\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#00160E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49b348ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"edc2dbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.00200000000000244426701101474463939666748046875,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e2246bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Prestige Luxury Cleanings LLC\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"139cc45f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Landscaping And Garden Care Services\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dc78e71\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"597dc67d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"26cf3840\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b19bda0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":167,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"980\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a46c929\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c4d8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Public Liability Insurance\",\"_id\":\"a978734\"},{\"text\":\"Environmentally Friendly\",\"_id\":\"1cd10a1\"},{\"text\":\"On Time, Every Time\",\"_id\":\"c6767db\"},{\"text\":\"Beautiful Garden Designs\",\"_id\":\"d4743f4\"},{\"text\":\"Modern Machinery And Tool\",\"_id\":\"535c17d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"398321ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4c7c15d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.9129999999999967030817060731351375579833984375,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5683e90d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":162,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"860\",\"height\":\"980\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b6190b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":163,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"-59\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"250636f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"713aa588\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"51a71b71\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#00160E\",\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=primary\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=06a34e7\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"st_content_title_color_responsive\":\"#7F7F7F\",\"st_super_color_responsive\":\"#FFD402\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\",\"sg_setting_html_tag\":\"span\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5557874f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"73847855\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":174,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/garden-maintenance-performed-by-pro-gardener-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"b1058a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":224,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":478,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":325,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"69098afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"40\",\"bottom\":\"80\",\"left\":\"40\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"7cb7bf82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91cb5d9\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26358abf\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Have The Perfect Solution For Your Landscape Problems\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15a36cc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42c8d36c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7114454f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76f24ca8\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Variation Gardening\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"138cc39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28a78a06\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Expert Landscapers\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c5ac2bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38fdb183\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3ce0b95b\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Affordable Price\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-save-money-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4c80f133\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7451fb11\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Free Consultation\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-Consultancy-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e93f2c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"39a46e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6773b2a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"87647bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find The Best Service For Your Garden\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e2cc66e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30164d28\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e8639b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":142,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-services.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fa92c14\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2c434fb3\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"5abe2e18\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33425b9f\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Lawn Services\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"472ed309\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"67cb221c\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37c1cce6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":143,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/driveway-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b3e60ba\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3b291bbf\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"20b91942\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5649f719\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Driveway Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6300b69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"256ddf68\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3735f0b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":144,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/deck-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"741128a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3691562\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3c8a0e6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5eb1b3b9\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Deck Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"25f37292\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"61c9ff8e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d41e618\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"8781ee3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":145,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/weed-control.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd84c7d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"14f7965\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fb2459e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0582197\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Weed Control \",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"f7b0fa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0197d9e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f3de9c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":146,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/grass-feed.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"75ba950\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"23edbf4\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"ad70b3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1c4ac7\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Grass Feed\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6f592ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0043a3b\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e6d8a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":147,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/edging-Cleaning.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd233da\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6535a16\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"937e2e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7aee\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Edging Cleaning\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"d9723d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"c908972\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"790dd775\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"360\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"160\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"140\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"background_overlay_color_b\":\"#000414\",\"background_overlay_image\":{\"id\":186,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/a-gardener-watering-plants-in-a-flowerbed-2RT8DWL-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]}},\"elements\":[{\"id\":\"a2ed5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7e37f762\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Landscaping\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a092069\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d5099\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need Someone To Take Care Your Garden & Lawn?\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=07ee36d\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1198756c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"66521a56\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":20,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":4},\"elements\":[{\"id\":\"1a89d099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.5090000000000003410605131648480892181396484375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"id\":\"70\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/happy-gardeners-with-plants-and-lawn-mower.jpg\"},\"background_position\":\"initial\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"space-between\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_color\":\"#FFFFFF00\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":9,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"46b821c1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":219,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":183,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"449971a9\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Make Appointment & Take Care Your Garden\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=secondary\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=93191b3\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_content_title_color_hover_responsive\":\"#FFFFFF\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#FFFFFF\",\"st_icon_color_responsive\":\"#00E5CC\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#00E5CC\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":false},{\"id\":\"13747b6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.4909999999999996589394868351519107818603515625,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a13f42e\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"178***1721830795182\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fde8487\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"59883b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1617542a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Process\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29c7aa96\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Complete Every Step Carefully\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ced0d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d62463d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18cf7834\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"41f79872\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-consult-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consultation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65e1b761\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"span\",\"title_color\":\"#FFD402\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#006943\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12cdbf13\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4175d29\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-pencil_art-light\",\"library\":\"jkiticon\"},\"title_text\":\"Design Installation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2adabf01\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b628\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"569b3221\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consturction \",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"67d6b2e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6fff79c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53c9a76e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"title_text\":\"Finished Work\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"555aace0\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d57540b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"71\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardening-background-with-garden-tolls-A9BGNJU.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]}},\"elements\":[{\"id\":\"147831a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"5a53d120\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"20\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Years of Experience\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"488f4727\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"6b8f6eae\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"76666759\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f532f9e\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"2850\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Happy Customers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"265fd738\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5473dc22\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"64\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Expert Landscapers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b38731e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4945f2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"627cd42c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65e3182\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.56499999999999772626324556767940521240234375},\"elements\":[{\"id\":\"43108b53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Projects\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45328989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Project We Have Done\\n\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"f382082\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.49900000000000233058017329312860965728759765625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":40,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"55ecfb57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"67afcbfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.0330000000000012505552149377763271331787109375,\"_inline_size_tablet\":23,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4989aa04\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Projects\",\"align\":\"right\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"left\",\"hover_animation\":\"float\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"32515d84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"3f5753f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"21982cfb\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"72\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-pruning-and-shaping-bushes-.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Cutting Leaf\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"404dc561\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"58d29b54\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"73\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/backyard-garden.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Home Garden\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"3bff1dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"3c24185a\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"64\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Build Backyard\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_image_height_responsive_tablet\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b3cb58d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_image\":{\"id\":\"74\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-moving-aerial-photo-Z8KDGJ9.jpg\"},\"background_overlay_color\":\"#0000007D\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]}},\"elements\":[{\"id\":\"79705206\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"51c9a732\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73b2fe0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"What They Says About Us\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4876e632\",\"elType\":\"widget\",\"settings\":{\"sg_layout_testimonial_choose\":\"style-2\",\"sg_testimonials_image_size_imagesize_size\":\"medium\",\"sg_testimonials_list\":[{\"sg_testimonials_list_client_avatar\":{\"id\":\"75\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/3SUMAU.jpg\"},\"_id\":\"6e9b2e1\",\"sg_testimonials_list_client_name\":\"Regan Traynor\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"76\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/CASCKD8.jpg\"},\"sg_testimonials_list_client_name\":\"Maisha Dunn\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"d069a43\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"77\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/MKLVKTE.jpg\"},\"sg_testimonials_list_client_name\":\"Reis Leonard\",\"sg_testimonials_list_designation\":\"Businessman\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"05c24f5\"}],\"st_wrapper_alignment_responsive\":\"left\",\"st_client_name_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_description_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_client_name_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_client_designation_normal_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_client_designation_normal_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=d343bdf\",\"st_rating_color_responsive\":\"\",\"st_client_name_normal_color_responsive\":\"\",\"st_quote_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_layout_background_background_color\":\"\"},\"st_layout_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_layout_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_wrapper_fix_height\":\"\",\"sg_setting_autoplay\":\"yes\",\"sg_setting_autoplay_pause\":\"\",\"sg_setting_arrow\":\"\",\"sg_setting_arrow_position\":\"middle-edge\",\"sg_setting_dots\":\"\",\"sg_setting_quote\":\"yes\",\"sg_setting_rating\":\"\",\"st_layout_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_layout_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_slide_show_responsive\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"sg_setting_quote_icon\":{\"value\":\"jki jki-quote-light\",\"library\":\"jkiticon\"},\"sg_layout_image_position\":\"below\",\"st_layout_background_background_background\":\"classic\",\"st_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position\":\"\",\"st_quote_override_position_top_responsive\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"st_quote_override_position_left_responsive\":{\"unit\":\"px\",\"size\":442,\"sizes\":[]},\"st_client_name_normal_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_quote_normal_font_size_responsive\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"st_client_image_margin_responsive\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_rating_font_size_responsive\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"st_rating_margin_right_responsive\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_setting_slide_show_responsive_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"st_wrapper_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position_top_responsive_tablet\":{\"unit\":\"px\",\"size\":249,\"sizes\":[]},\"st_quote_override_position_top_responsive_mobile\":{\"unit\":\"px\",\"size\":193,\"sizes\":[]},\"st_quote_override_position_left_responsive_tablet\":{\"unit\":\"px\",\"size\":265,\"sizes\":[]},\"st_quote_override_position_left_responsive_mobile\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]},\"st_quote_normal_font_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"st_description_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_normal_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64afd05f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"746d276b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30338dfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f950be4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ca735b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5d6ca3ad\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_title_hover_color_responsive\":\"globals\\/colors?id=secondary\",\"st_readmore_hover_color_responsive\":\"globals\\/colors?id=secondary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#646974\",\"st_excerpt_color_responsive\":\"#646974\",\"st_title_normal_color_responsive\":\"#272B36\",\"st_thumbnail_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_title_hover_color_responsive\":\"#FA8D25\",\"st_readmore_normal_color_responsive\":\"#FA8D25\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":false}],\"isInner\":false}]'),(1041,189,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1042,189,'_elementor_css','a:6:{s:4:\"time\";i:1721830869;s:5:\"fonts\";a:1:{i:0;s:5:\"Inter\";}s:5:\"icons\";a:3:{i:0;s:0:\"\";i:1;s:8:\"jkiticon\";i:3;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1050,191,'_wp_attached_file','2024/07/happy-gardeners-with-plants-and-lawn-mower-1.jpg'),(1051,191,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1333;s:6:\"height\";i:2000;s:4:\"file\";s:56:\"2024/07/happy-gardeners-with-plants-and-lawn-mower-1.jpg\";s:8:\"filesize\";i:1371570;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:56:\"happy-gardeners-with-plants-and-lawn-mower-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:23875;}s:5:\"large\";a:5:{s:4:\"file\";s:57:\"happy-gardeners-with-plants-and-lawn-mower-1-682x1024.jpg\";s:5:\"width\";i:682;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:171670;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:56:\"happy-gardeners-with-plants-and-lawn-mower-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:9871;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:57:\"happy-gardeners-with-plants-and-lawn-mower-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:202427;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:58:\"happy-gardeners-with-plants-and-lawn-mower-1-1024x1536.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:303429;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(1052,192,'_elementor_edit_mode','builder'),(1053,192,'_elementor_template_type','wp-page'),(1054,192,'_elementor_version','3.23.2'),(1055,192,'_wp_page_template','default'),(1056,192,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'); INSERT INTO `victorq_postmeta` VALUES (1057,192,'_elementor_data','[{\"id\":\"35495243\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"Eldery male gardener using scissors for bushes\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"160\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0,\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_size_tablet\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"top center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00160E\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b\":\"#00000054\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_slideshow_gallery\":[{\"id\":154,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-02-5.jpg\"},{\"id\":155,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-03-3.jpg\"},{\"id\":156,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-04-3.jpg\"},{\"id\":157,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-01-5.jpg\"}]},\"elements\":[{\"id\":\"739a26d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":65,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=06a34e7\"}},\"elements\":[{\"id\":\"132d1a8e\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Complete For All\",\"sg_title_focused\":\" Landscape \",\"sg_title_after\":\" Service And Maintenance\",\"sg_title_html_tag\":\"h1\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=primary\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"7c49583a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"635cb25b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"23cf340e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37.85499999999999687361196265555918216705322265625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":48,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"1c4c950d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4768b6f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":62.14500000000000312638803734444081783294677734375,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"flex-start\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":52,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"34c0badb\",\"elType\":\"widget\",\"settings\":{\"sg_video_button_title\":\"Play Video\",\"sg_video_button_icon\":{\"value\":\"jki jki-play\",\"library\":\"jkiticon\"},\"sg_video_url\":\"#\",\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_width_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_line_height_responsive\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#FFD402\",\"st_button_normal_glow_color_responsive\":\"#00694361\",\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"_element_width\":\"auto\",\"__globals__\":{\"st_button_normal_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=accent\",\"st_border_normal_border_border_color\":\"\",\"st_button_hover_text_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_glow_color_responsive\":\"\"},\"st_button_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_button_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_width_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_line_height_responsive_mobile\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"st_border_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_border_normal_border_border_color\":\"#FFD027\",\"st_button_line_height_responsive_tablet\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"st_button_normal_background_background_color\":\"#006943\",\"st_button_hover_text_color_responsive\":\"#006943\",\"st_button_hover_background_background_color\":\"#FFD402\",\"sg_video_auto_play\":\"\",\"sg_video_mute\":\"\"},\"elements\":[],\"widgetType\":\"jkit_video_button\"},{\"id\":\"232ec8da\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Intro\",\"align\":\"right\",\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"hide_mobile\":\"hidden-mobile\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#00160E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49b348ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"edc2dbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.00200000000000244426701101474463939666748046875,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e2246bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Prestige Luxury Cleanings LLC\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"139cc45f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Landscaping And Garden Care Services\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dc78e71\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"597dc67d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"26cf3840\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b19bda0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":167,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"980\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a46c929\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c4d8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Public Liability Insurance\",\"_id\":\"a978734\"},{\"text\":\"Environmentally Friendly\",\"_id\":\"1cd10a1\"},{\"text\":\"On Time, Every Time\",\"_id\":\"c6767db\"},{\"text\":\"Beautiful Garden Designs\",\"_id\":\"d4743f4\"},{\"text\":\"Modern Machinery And Tool\",\"_id\":\"535c17d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"398321ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4c7c15d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.9129999999999967030817060731351375579833984375,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5683e90d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":162,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"860\",\"height\":\"980\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b6190b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":163,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"-59\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"250636f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"713aa588\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"51a71b71\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#00160E\",\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=primary\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=06a34e7\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"st_content_title_color_responsive\":\"#7F7F7F\",\"st_super_color_responsive\":\"#FFD402\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\",\"sg_setting_html_tag\":\"span\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5557874f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"73847855\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":174,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/garden-maintenance-performed-by-pro-gardener-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"b1058a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":224,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":478,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":325,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"69098afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"40\",\"bottom\":\"80\",\"left\":\"40\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"7cb7bf82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91cb5d9\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26358abf\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Have The Perfect Solution For Your Landscape Problems\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15a36cc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42c8d36c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7114454f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76f24ca8\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Variation Gardening\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"138cc39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28a78a06\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Expert Landscapers\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c5ac2bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38fdb183\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3ce0b95b\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Affordable Price\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-save-money-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4c80f133\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7451fb11\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Free Consultation\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-Consultancy-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e93f2c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"39a46e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6773b2a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"87647bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find The Best Service For Your Garden\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e2cc66e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30164d28\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e8639b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":142,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-services.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fa92c14\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2c434fb3\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"5abe2e18\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33425b9f\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Lawn Services\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"472ed309\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"67cb221c\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37c1cce6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":143,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/driveway-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b3e60ba\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3b291bbf\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"20b91942\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5649f719\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Driveway Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6300b69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"256ddf68\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3735f0b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":144,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/deck-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"741128a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3691562\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3c8a0e6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5eb1b3b9\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Deck Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"25f37292\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"61c9ff8e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d41e618\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"8781ee3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":145,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/weed-control.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd84c7d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"14f7965\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fb2459e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0582197\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Weed Control \",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"f7b0fa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0197d9e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f3de9c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":146,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/grass-feed.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"75ba950\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"23edbf4\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"ad70b3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1c4ac7\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Grass Feed\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6f592ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0043a3b\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e6d8a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":147,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/edging-Cleaning.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd233da\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6535a16\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"937e2e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7aee\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Edging Cleaning\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"d9723d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"c908972\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"790dd775\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"360\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"160\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"140\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"background_overlay_color_b\":\"#000414\",\"background_overlay_image\":{\"id\":186,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/a-gardener-watering-plants-in-a-flowerbed-2RT8DWL-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]}},\"elements\":[{\"id\":\"a2ed5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7e37f762\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Landscaping\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a092069\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d5099\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need Someone To Take Care Your Garden & Lawn?\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=07ee36d\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1198756c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"66521a56\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":20,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":4},\"elements\":[{\"id\":\"1a89d099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.5090000000000003410605131648480892181396484375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"id\":\"70\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/happy-gardeners-with-plants-and-lawn-mower.jpg\"},\"background_position\":\"initial\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"space-between\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_color\":\"#FFFFFF00\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":9,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"46b821c1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":219,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":183,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"449971a9\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Make Appointment & Take Care Your Garden\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=secondary\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=93191b3\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_content_title_color_hover_responsive\":\"#FFFFFF\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#FFFFFF\",\"st_icon_color_responsive\":\"#00E5CC\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#00E5CC\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":false},{\"id\":\"13747b6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.4909999999999996589394868351519107818603515625,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a13f42e\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"178***1721830795182\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fde8487\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"59883b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1617542a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Process\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29c7aa96\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Complete Every Step Carefully\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ced0d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d62463d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18cf7834\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"41f79872\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-consult-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consultation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65e1b761\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"span\",\"title_color\":\"#FFD402\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#006943\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12cdbf13\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4175d29\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-pencil_art-light\",\"library\":\"jkiticon\"},\"title_text\":\"Design Installation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2adabf01\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b628\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"569b3221\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consturction \",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"67d6b2e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6fff79c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53c9a76e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"title_text\":\"Finished Work\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"555aace0\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d57540b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"71\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardening-background-with-garden-tolls-A9BGNJU.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]}},\"elements\":[{\"id\":\"147831a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"5a53d120\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"20\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Years of Experience\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"488f4727\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"6b8f6eae\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"76666759\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f532f9e\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"2850\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Happy Customers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"265fd738\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5473dc22\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"64\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Expert Landscapers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b38731e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4945f2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"627cd42c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65e3182\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.56499999999999772626324556767940521240234375},\"elements\":[{\"id\":\"43108b53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Projects\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45328989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Project We Have Done\\n\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"f382082\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.49900000000000233058017329312860965728759765625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":40,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"55ecfb57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"67afcbfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.0330000000000012505552149377763271331787109375,\"_inline_size_tablet\":23,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4989aa04\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Projects\",\"align\":\"right\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"left\",\"hover_animation\":\"float\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"32515d84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"3f5753f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"21982cfb\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"72\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-pruning-and-shaping-bushes-.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Cutting Leaf\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"404dc561\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"58d29b54\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"73\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/backyard-garden.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Home Garden\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"3bff1dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"3c24185a\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"64\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Build Backyard\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_image_height_responsive_tablet\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b3cb58d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_image\":{\"id\":\"74\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-moving-aerial-photo-Z8KDGJ9.jpg\"},\"background_overlay_color\":\"#0000007D\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]}},\"elements\":[{\"id\":\"79705206\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"51c9a732\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73b2fe0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"What They Says About Us\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4876e632\",\"elType\":\"widget\",\"settings\":{\"sg_layout_testimonial_choose\":\"style-2\",\"sg_testimonials_image_size_imagesize_size\":\"medium\",\"sg_testimonials_list\":[{\"sg_testimonials_list_client_avatar\":{\"id\":\"75\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/3SUMAU.jpg\"},\"_id\":\"6e9b2e1\",\"sg_testimonials_list_client_name\":\"Regan Traynor\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"76\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/CASCKD8.jpg\"},\"sg_testimonials_list_client_name\":\"Maisha Dunn\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"d069a43\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"77\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/MKLVKTE.jpg\"},\"sg_testimonials_list_client_name\":\"Reis Leonard\",\"sg_testimonials_list_designation\":\"Businessman\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"05c24f5\"}],\"st_wrapper_alignment_responsive\":\"left\",\"st_client_name_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_description_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_client_name_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_client_designation_normal_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_client_designation_normal_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=d343bdf\",\"st_rating_color_responsive\":\"\",\"st_client_name_normal_color_responsive\":\"\",\"st_quote_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_layout_background_background_color\":\"\"},\"st_layout_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_layout_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_wrapper_fix_height\":\"\",\"sg_setting_autoplay\":\"yes\",\"sg_setting_autoplay_pause\":\"\",\"sg_setting_arrow\":\"\",\"sg_setting_arrow_position\":\"middle-edge\",\"sg_setting_dots\":\"\",\"sg_setting_quote\":\"yes\",\"sg_setting_rating\":\"\",\"st_layout_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_layout_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_slide_show_responsive\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"sg_setting_quote_icon\":{\"value\":\"jki jki-quote-light\",\"library\":\"jkiticon\"},\"sg_layout_image_position\":\"below\",\"st_layout_background_background_background\":\"classic\",\"st_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position\":\"\",\"st_quote_override_position_top_responsive\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"st_quote_override_position_left_responsive\":{\"unit\":\"px\",\"size\":442,\"sizes\":[]},\"st_client_name_normal_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_quote_normal_font_size_responsive\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"st_client_image_margin_responsive\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_rating_font_size_responsive\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"st_rating_margin_right_responsive\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_setting_slide_show_responsive_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"st_wrapper_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position_top_responsive_tablet\":{\"unit\":\"px\",\"size\":249,\"sizes\":[]},\"st_quote_override_position_top_responsive_mobile\":{\"unit\":\"px\",\"size\":193,\"sizes\":[]},\"st_quote_override_position_left_responsive_tablet\":{\"unit\":\"px\",\"size\":265,\"sizes\":[]},\"st_quote_override_position_left_responsive_mobile\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]},\"st_quote_normal_font_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"st_description_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_normal_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64afd05f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"746d276b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30338dfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f950be4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ca735b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5d6ca3ad\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_title_hover_color_responsive\":\"globals\\/colors?id=secondary\",\"st_readmore_hover_color_responsive\":\"globals\\/colors?id=secondary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#646974\",\"st_excerpt_color_responsive\":\"#646974\",\"st_title_normal_color_responsive\":\"#272B36\",\"st_thumbnail_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_title_hover_color_responsive\":\"#FA8D25\",\"st_readmore_normal_color_responsive\":\"#FA8D25\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":false}],\"isInner\":false}]'),(1058,192,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1059,193,'_elementor_edit_mode','builder'),(1060,193,'_elementor_template_type','wp-page'),(1061,193,'_elementor_version','3.23.2'),(1062,193,'_wp_page_template','default'),(1063,193,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1064,193,'_elementor_data','[{\"id\":\"35495243\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"Eldery male gardener using scissors for bushes\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"160\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0,\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_size_tablet\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"top center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00160E\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b\":\"#00000054\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_slideshow_gallery\":[{\"id\":154,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-02-5.jpg\"},{\"id\":155,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-03-3.jpg\"},{\"id\":156,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-04-3.jpg\"},{\"id\":157,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-01-5.jpg\"}]},\"elements\":[{\"id\":\"739a26d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":65,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=06a34e7\"}},\"elements\":[{\"id\":\"132d1a8e\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Complete For All\",\"sg_title_focused\":\" Landscape \",\"sg_title_after\":\" Service And Maintenance\",\"sg_title_html_tag\":\"h1\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=primary\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"7c49583a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"635cb25b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"23cf340e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37.85499999999999687361196265555918216705322265625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":48,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"1c4c950d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4768b6f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":62.14500000000000312638803734444081783294677734375,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"flex-start\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":52,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"34c0badb\",\"elType\":\"widget\",\"settings\":{\"sg_video_button_title\":\"Play Video\",\"sg_video_button_icon\":{\"value\":\"jki jki-play\",\"library\":\"jkiticon\"},\"sg_video_url\":\"#\",\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_width_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_line_height_responsive\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#FFD402\",\"st_button_normal_glow_color_responsive\":\"#00694361\",\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"_element_width\":\"auto\",\"__globals__\":{\"st_button_normal_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=accent\",\"st_border_normal_border_border_color\":\"\",\"st_button_hover_text_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_glow_color_responsive\":\"\"},\"st_button_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_button_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_width_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_line_height_responsive_mobile\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"st_border_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_border_normal_border_border_color\":\"#FFD027\",\"st_button_line_height_responsive_tablet\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"st_button_normal_background_background_color\":\"#006943\",\"st_button_hover_text_color_responsive\":\"#006943\",\"st_button_hover_background_background_color\":\"#FFD402\",\"sg_video_auto_play\":\"\",\"sg_video_mute\":\"\"},\"elements\":[],\"widgetType\":\"jkit_video_button\"},{\"id\":\"232ec8da\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Intro\",\"align\":\"right\",\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"hide_mobile\":\"hidden-mobile\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#00160E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49b348ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"edc2dbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.00200000000000244426701101474463939666748046875,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e2246bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Prestige Luxury Cleanings LLC\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"139cc45f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Landscaping And Garden Care Services\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dc78e71\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"597dc67d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"26cf3840\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b19bda0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":167,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"980\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a46c929\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c4d8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Public Liability Insurance\",\"_id\":\"a978734\"},{\"text\":\"Environmentally Friendly\",\"_id\":\"1cd10a1\"},{\"text\":\"On Time, Every Time\",\"_id\":\"c6767db\"},{\"text\":\"Beautiful Garden Designs\",\"_id\":\"d4743f4\"},{\"text\":\"Modern Machinery And Tool\",\"_id\":\"535c17d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"398321ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4c7c15d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.9129999999999967030817060731351375579833984375,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5683e90d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":162,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"860\",\"height\":\"980\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b6190b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":163,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"-59\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"250636f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"713aa588\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"51a71b71\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#00160E\",\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=primary\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=06a34e7\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"st_content_title_color_responsive\":\"#7F7F7F\",\"st_super_color_responsive\":\"#FFD402\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\",\"sg_setting_html_tag\":\"span\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5557874f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"73847855\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":174,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/garden-maintenance-performed-by-pro-gardener-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"b1058a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":224,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":478,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":325,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"69098afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"40\",\"bottom\":\"80\",\"left\":\"40\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"7cb7bf82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91cb5d9\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26358abf\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Have The Perfect Solution For Your Landscape Problems\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15a36cc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42c8d36c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7114454f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76f24ca8\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Variation Gardening\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"138cc39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28a78a06\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Expert Landscapers\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c5ac2bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38fdb183\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3ce0b95b\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Affordable Price\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-save-money-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4c80f133\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7451fb11\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Free Consultation\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-Consultancy-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e93f2c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"39a46e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6773b2a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"87647bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find The Best Service For Your Garden\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e2cc66e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30164d28\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e8639b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":142,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-services.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fa92c14\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2c434fb3\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"5abe2e18\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33425b9f\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Lawn Services\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"472ed309\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"67cb221c\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37c1cce6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":143,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/driveway-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b3e60ba\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3b291bbf\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"20b91942\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5649f719\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Driveway Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6300b69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"256ddf68\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3735f0b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":144,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/deck-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"741128a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3691562\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3c8a0e6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5eb1b3b9\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Deck Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"25f37292\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"61c9ff8e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d41e618\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"8781ee3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":145,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/weed-control.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd84c7d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"14f7965\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fb2459e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0582197\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Weed Control \",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"f7b0fa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0197d9e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f3de9c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":146,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/grass-feed.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"75ba950\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"23edbf4\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"ad70b3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1c4ac7\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Grass Feed\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6f592ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0043a3b\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e6d8a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":147,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/edging-Cleaning.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd233da\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6535a16\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"937e2e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7aee\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Edging Cleaning\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"d9723d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"c908972\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"790dd775\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"360\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"160\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"140\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"background_overlay_color_b\":\"#000414\",\"background_overlay_image\":{\"id\":186,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/a-gardener-watering-plants-in-a-flowerbed-2RT8DWL-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]}},\"elements\":[{\"id\":\"a2ed5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7e37f762\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Landscaping\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a092069\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d5099\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need Someone To Take Care Your Garden & Lawn?\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=07ee36d\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1198756c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"66521a56\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":20,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":4},\"elements\":[{\"id\":\"1a89d099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.5090000000000003410605131648480892181396484375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"id\":\"70\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/happy-gardeners-with-plants-and-lawn-mower.jpg\"},\"background_position\":\"initial\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"space-between\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_color\":\"#FFFFFF00\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":9,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"46b821c1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":219,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":183,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"449971a9\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Make Appointment & Take Care Your Garden\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=secondary\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=93191b3\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_content_title_color_hover_responsive\":\"#FFFFFF\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#FFFFFF\",\"st_icon_color_responsive\":\"#00E5CC\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#00E5CC\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":false},{\"id\":\"13747b6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.4909999999999996589394868351519107818603515625,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a13f42e\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"178***1721830795182\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fde8487\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"59883b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1617542a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Process\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29c7aa96\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Complete Every Step Carefully\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ced0d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d62463d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18cf7834\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"41f79872\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-consult-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consultation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65e1b761\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"span\",\"title_color\":\"#FFD402\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#006943\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12cdbf13\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4175d29\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-pencil_art-light\",\"library\":\"jkiticon\"},\"title_text\":\"Design Installation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2adabf01\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b628\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"569b3221\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consturction \",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"67d6b2e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6fff79c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53c9a76e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"title_text\":\"Finished Work\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"555aace0\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d57540b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"71\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardening-background-with-garden-tolls-A9BGNJU.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]}},\"elements\":[{\"id\":\"147831a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"5a53d120\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"20\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Years of Experience\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"488f4727\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"6b8f6eae\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"76666759\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f532f9e\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"2850\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Happy Customers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"265fd738\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5473dc22\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"64\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Expert Landscapers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b38731e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4945f2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"627cd42c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65e3182\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.56499999999999772626324556767940521240234375},\"elements\":[{\"id\":\"43108b53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Projects\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45328989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Project We Have Done\\n\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"f382082\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.49900000000000233058017329312860965728759765625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":40,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"55ecfb57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"67afcbfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.0330000000000012505552149377763271331787109375,\"_inline_size_tablet\":23,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4989aa04\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Projects\",\"align\":\"right\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"left\",\"hover_animation\":\"float\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"32515d84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"3f5753f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"21982cfb\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"72\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-pruning-and-shaping-bushes-.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Cutting Leaf\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"404dc561\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"58d29b54\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"73\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/backyard-garden.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Home Garden\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"3bff1dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"3c24185a\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"64\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Build Backyard\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_image_height_responsive_tablet\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b3cb58d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_image\":{\"id\":\"74\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-moving-aerial-photo-Z8KDGJ9.jpg\"},\"background_overlay_color\":\"#0000007D\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]}},\"elements\":[{\"id\":\"79705206\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"51c9a732\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73b2fe0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"What They Says About Us\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4876e632\",\"elType\":\"widget\",\"settings\":{\"sg_layout_testimonial_choose\":\"style-2\",\"sg_testimonials_image_size_imagesize_size\":\"medium\",\"sg_testimonials_list\":[{\"sg_testimonials_list_client_avatar\":{\"id\":\"75\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/3SUMAU.jpg\"},\"_id\":\"6e9b2e1\",\"sg_testimonials_list_client_name\":\"Regan Traynor\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"76\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/CASCKD8.jpg\"},\"sg_testimonials_list_client_name\":\"Maisha Dunn\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"d069a43\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"77\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/MKLVKTE.jpg\"},\"sg_testimonials_list_client_name\":\"Reis Leonard\",\"sg_testimonials_list_designation\":\"Businessman\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"05c24f5\"}],\"st_wrapper_alignment_responsive\":\"left\",\"st_client_name_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_description_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_client_name_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_client_designation_normal_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_client_designation_normal_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=d343bdf\",\"st_rating_color_responsive\":\"\",\"st_client_name_normal_color_responsive\":\"\",\"st_quote_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_layout_background_background_color\":\"\"},\"st_layout_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_layout_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_wrapper_fix_height\":\"\",\"sg_setting_autoplay\":\"yes\",\"sg_setting_autoplay_pause\":\"\",\"sg_setting_arrow\":\"\",\"sg_setting_arrow_position\":\"middle-edge\",\"sg_setting_dots\":\"\",\"sg_setting_quote\":\"yes\",\"sg_setting_rating\":\"\",\"st_layout_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_layout_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_slide_show_responsive\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"sg_setting_quote_icon\":{\"value\":\"jki jki-quote-light\",\"library\":\"jkiticon\"},\"sg_layout_image_position\":\"below\",\"st_layout_background_background_background\":\"classic\",\"st_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position\":\"\",\"st_quote_override_position_top_responsive\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"st_quote_override_position_left_responsive\":{\"unit\":\"px\",\"size\":442,\"sizes\":[]},\"st_client_name_normal_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_quote_normal_font_size_responsive\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"st_client_image_margin_responsive\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_rating_font_size_responsive\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"st_rating_margin_right_responsive\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_setting_slide_show_responsive_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"st_wrapper_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position_top_responsive_tablet\":{\"unit\":\"px\",\"size\":249,\"sizes\":[]},\"st_quote_override_position_top_responsive_mobile\":{\"unit\":\"px\",\"size\":193,\"sizes\":[]},\"st_quote_override_position_left_responsive_tablet\":{\"unit\":\"px\",\"size\":265,\"sizes\":[]},\"st_quote_override_position_left_responsive_mobile\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]},\"st_quote_normal_font_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"st_description_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_normal_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64afd05f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"746d276b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30338dfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f950be4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ca735b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5d6ca3ad\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_title_hover_color_responsive\":\"globals\\/colors?id=secondary\",\"st_readmore_hover_color_responsive\":\"globals\\/colors?id=secondary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#646974\",\"st_excerpt_color_responsive\":\"#646974\",\"st_title_normal_color_responsive\":\"#272B36\",\"st_thumbnail_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_title_hover_color_responsive\":\"#FA8D25\",\"st_readmore_normal_color_responsive\":\"#FA8D25\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":false}],\"isInner\":false}]'),(1065,193,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1066,194,'_elementor_edit_mode','builder'),(1067,194,'_elementor_template_type','wp-page'),(1068,194,'_elementor_version','3.23.2'),(1069,194,'_wp_page_template','default'),(1070,194,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1071,194,'_elementor_data','[{\"id\":\"35495243\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"Eldery male gardener using scissors for bushes\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"160\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0,\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_size_tablet\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"top center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00160E\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b\":\"#00000054\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_slideshow_gallery\":[{\"id\":154,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-02-5.jpg\"},{\"id\":155,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-03-3.jpg\"},{\"id\":156,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-04-3.jpg\"},{\"id\":157,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-01-5.jpg\"}]},\"elements\":[{\"id\":\"739a26d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":65,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=06a34e7\"}},\"elements\":[{\"id\":\"132d1a8e\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Complete For All\",\"sg_title_focused\":\" Landscape \",\"sg_title_after\":\" Service And Maintenance\",\"sg_title_html_tag\":\"h1\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=primary\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"7c49583a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"635cb25b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"23cf340e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37.85499999999999687361196265555918216705322265625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":48,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"1c4c950d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4768b6f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":62.14500000000000312638803734444081783294677734375,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"flex-start\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":52,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"34c0badb\",\"elType\":\"widget\",\"settings\":{\"sg_video_button_title\":\"Play Video\",\"sg_video_button_icon\":{\"value\":\"jki jki-play\",\"library\":\"jkiticon\"},\"sg_video_url\":\"#\",\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_width_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_line_height_responsive\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#FFD402\",\"st_button_normal_glow_color_responsive\":\"#00694361\",\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"_element_width\":\"auto\",\"__globals__\":{\"st_button_normal_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=accent\",\"st_border_normal_border_border_color\":\"\",\"st_button_hover_text_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_glow_color_responsive\":\"\"},\"st_button_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_button_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_width_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_line_height_responsive_mobile\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"st_border_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_border_normal_border_border_color\":\"#FFD027\",\"st_button_line_height_responsive_tablet\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"st_button_normal_background_background_color\":\"#006943\",\"st_button_hover_text_color_responsive\":\"#006943\",\"st_button_hover_background_background_color\":\"#FFD402\",\"sg_video_auto_play\":\"\",\"sg_video_mute\":\"\"},\"elements\":[],\"widgetType\":\"jkit_video_button\"},{\"id\":\"232ec8da\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Intro\",\"align\":\"right\",\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"hide_mobile\":\"hidden-mobile\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#00160E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49b348ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"edc2dbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.00200000000000244426701101474463939666748046875,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e2246bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Prestige Luxury Cleanings LLC\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"139cc45f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Landscaping And Garden Care Services\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dc78e71\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"597dc67d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"26cf3840\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b19bda0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":167,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"980\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a46c929\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c4d8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Public Liability Insurance\",\"_id\":\"a978734\"},{\"text\":\"Environmentally Friendly\",\"_id\":\"1cd10a1\"},{\"text\":\"On Time, Every Time\",\"_id\":\"c6767db\"},{\"text\":\"Beautiful Garden Designs\",\"_id\":\"d4743f4\"},{\"text\":\"Modern Machinery And Tool\",\"_id\":\"535c17d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"398321ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4c7c15d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.9129999999999967030817060731351375579833984375,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5683e90d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":162,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"860\",\"height\":\"980\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b6190b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":163,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"-59\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"250636f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"713aa588\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"51a71b71\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#00160E\",\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=primary\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=06a34e7\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"st_content_title_color_responsive\":\"#7F7F7F\",\"st_super_color_responsive\":\"#FFD402\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\",\"sg_setting_html_tag\":\"span\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5557874f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"73847855\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":174,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/garden-maintenance-performed-by-pro-gardener-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"b1058a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":224,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":478,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":325,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"69098afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"40\",\"bottom\":\"80\",\"left\":\"40\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"7cb7bf82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91cb5d9\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26358abf\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Have The Perfect Solution For Your Landscape Problems\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15a36cc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42c8d36c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7114454f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76f24ca8\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Variation Gardening\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"138cc39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28a78a06\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Expert Landscapers\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c5ac2bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38fdb183\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3ce0b95b\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Affordable Price\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-save-money-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4c80f133\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7451fb11\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Free Consultation\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-Consultancy-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e93f2c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"39a46e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6773b2a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"87647bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find The Best Service For Your Garden\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e2cc66e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30164d28\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e8639b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":142,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-services.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fa92c14\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2c434fb3\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"5abe2e18\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33425b9f\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Lawn Services\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"472ed309\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"67cb221c\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37c1cce6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":143,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/driveway-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b3e60ba\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3b291bbf\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"20b91942\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5649f719\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Driveway Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6300b69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"256ddf68\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3735f0b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":144,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/deck-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"741128a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3691562\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3c8a0e6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5eb1b3b9\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Deck Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"25f37292\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"61c9ff8e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d41e618\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"8781ee3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":145,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/weed-control.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd84c7d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"14f7965\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fb2459e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0582197\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Weed Control \",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"f7b0fa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0197d9e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f3de9c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":146,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/grass-feed.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"75ba950\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"23edbf4\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"ad70b3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1c4ac7\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Grass Feed\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6f592ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0043a3b\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e6d8a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":147,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/edging-Cleaning.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd233da\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6535a16\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"937e2e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7aee\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Edging Cleaning\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"d9723d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"c908972\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"790dd775\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"360\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"160\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"140\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"background_overlay_color_b\":\"#000414\",\"background_overlay_image\":{\"id\":186,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/a-gardener-watering-plants-in-a-flowerbed-2RT8DWL-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]}},\"elements\":[{\"id\":\"a2ed5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7e37f762\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Landscaping\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a092069\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d5099\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need Someone To Take Care Your Garden & Lawn?\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=07ee36d\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1198756c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"66521a56\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":20,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":4},\"elements\":[{\"id\":\"1a89d099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.5090000000000003410605131648480892181396484375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"id\":191,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/happy-gardeners-with-plants-and-lawn-mower-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"space-between\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_color\":\"#FFFFFF00\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":9,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"46b821c1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":219,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":183,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"449971a9\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Make Appointment & Take Care Your Garden\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=secondary\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=93191b3\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_content_title_color_hover_responsive\":\"#FFFFFF\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#FFFFFF\",\"st_icon_color_responsive\":\"#00E5CC\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#00E5CC\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":false},{\"id\":\"13747b6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.4909999999999996589394868351519107818603515625,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a13f42e\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"178***1721830795182\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fde8487\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"59883b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1617542a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Process\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29c7aa96\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Complete Every Step Carefully\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ced0d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d62463d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18cf7834\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"41f79872\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-consult-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consultation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65e1b761\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"span\",\"title_color\":\"#FFD402\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#006943\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12cdbf13\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4175d29\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-pencil_art-light\",\"library\":\"jkiticon\"},\"title_text\":\"Design Installation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2adabf01\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b628\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"569b3221\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consturction \",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"67d6b2e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6fff79c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53c9a76e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"title_text\":\"Finished Work\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"555aace0\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d57540b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"71\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardening-background-with-garden-tolls-A9BGNJU.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]}},\"elements\":[{\"id\":\"147831a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"5a53d120\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"20\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Years of Experience\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"488f4727\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"6b8f6eae\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"76666759\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f532f9e\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"2850\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Happy Customers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"265fd738\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5473dc22\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"64\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Expert Landscapers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b38731e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4945f2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"627cd42c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65e3182\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.56499999999999772626324556767940521240234375},\"elements\":[{\"id\":\"43108b53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Projects\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45328989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Project We Have Done\\n\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"f382082\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.49900000000000233058017329312860965728759765625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":40,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"55ecfb57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"67afcbfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.0330000000000012505552149377763271331787109375,\"_inline_size_tablet\":23,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4989aa04\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Projects\",\"align\":\"right\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"left\",\"hover_animation\":\"float\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"32515d84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"3f5753f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"21982cfb\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"72\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-pruning-and-shaping-bushes-.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Cutting Leaf\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"404dc561\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"58d29b54\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"73\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/backyard-garden.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Home Garden\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"3bff1dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"3c24185a\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"64\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Build Backyard\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_image_height_responsive_tablet\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b3cb58d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_image\":{\"id\":\"74\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-moving-aerial-photo-Z8KDGJ9.jpg\"},\"background_overlay_color\":\"#0000007D\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]}},\"elements\":[{\"id\":\"79705206\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"51c9a732\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73b2fe0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"What They Says About Us\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4876e632\",\"elType\":\"widget\",\"settings\":{\"sg_layout_testimonial_choose\":\"style-2\",\"sg_testimonials_image_size_imagesize_size\":\"medium\",\"sg_testimonials_list\":[{\"sg_testimonials_list_client_avatar\":{\"id\":\"75\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/3SUMAU.jpg\"},\"_id\":\"6e9b2e1\",\"sg_testimonials_list_client_name\":\"Regan Traynor\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"76\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/CASCKD8.jpg\"},\"sg_testimonials_list_client_name\":\"Maisha Dunn\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"d069a43\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"77\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/MKLVKTE.jpg\"},\"sg_testimonials_list_client_name\":\"Reis Leonard\",\"sg_testimonials_list_designation\":\"Businessman\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"05c24f5\"}],\"st_wrapper_alignment_responsive\":\"left\",\"st_client_name_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_description_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_client_name_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_client_designation_normal_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_client_designation_normal_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=d343bdf\",\"st_rating_color_responsive\":\"\",\"st_client_name_normal_color_responsive\":\"\",\"st_quote_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_layout_background_background_color\":\"\"},\"st_layout_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_layout_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_wrapper_fix_height\":\"\",\"sg_setting_autoplay\":\"yes\",\"sg_setting_autoplay_pause\":\"\",\"sg_setting_arrow\":\"\",\"sg_setting_arrow_position\":\"middle-edge\",\"sg_setting_dots\":\"\",\"sg_setting_quote\":\"yes\",\"sg_setting_rating\":\"\",\"st_layout_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_layout_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_slide_show_responsive\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"sg_setting_quote_icon\":{\"value\":\"jki jki-quote-light\",\"library\":\"jkiticon\"},\"sg_layout_image_position\":\"below\",\"st_layout_background_background_background\":\"classic\",\"st_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position\":\"\",\"st_quote_override_position_top_responsive\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"st_quote_override_position_left_responsive\":{\"unit\":\"px\",\"size\":442,\"sizes\":[]},\"st_client_name_normal_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_quote_normal_font_size_responsive\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"st_client_image_margin_responsive\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_rating_font_size_responsive\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"st_rating_margin_right_responsive\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_setting_slide_show_responsive_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"st_wrapper_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position_top_responsive_tablet\":{\"unit\":\"px\",\"size\":249,\"sizes\":[]},\"st_quote_override_position_top_responsive_mobile\":{\"unit\":\"px\",\"size\":193,\"sizes\":[]},\"st_quote_override_position_left_responsive_tablet\":{\"unit\":\"px\",\"size\":265,\"sizes\":[]},\"st_quote_override_position_left_responsive_mobile\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]},\"st_quote_normal_font_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"st_description_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_normal_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64afd05f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"746d276b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30338dfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f950be4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ca735b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5d6ca3ad\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_title_hover_color_responsive\":\"globals\\/colors?id=secondary\",\"st_readmore_hover_color_responsive\":\"globals\\/colors?id=secondary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#646974\",\"st_excerpt_color_responsive\":\"#646974\",\"st_title_normal_color_responsive\":\"#272B36\",\"st_thumbnail_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_title_hover_color_responsive\":\"#FA8D25\",\"st_readmore_normal_color_responsive\":\"#FA8D25\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":false}],\"isInner\":false}]'),(1072,194,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1074,195,'_wp_attached_file','2024/07/build-backyard.jpg'),(1075,195,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:363;s:6:\"height\";i:420;s:4:\"file\";s:26:\"2024/07/build-backyard.jpg\";s:8:\"filesize\";i:245263;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"build-backyard-259x300.jpg\";s:5:\"width\";i:259;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30507;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"build-backyard-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10196;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1076,196,'_wp_attached_file','2024/07/Cutting-Leaf.jpg'),(1077,196,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:363;s:6:\"height\";i:420;s:4:\"file\";s:24:\"2024/07/Cutting-Leaf.jpg\";s:8:\"filesize\";i:229080;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"Cutting-Leaf-259x300.jpg\";s:5:\"width\";i:259;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30575;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"Cutting-Leaf-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11203;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1078,197,'_wp_attached_file','2024/07/Home-Garden.jpg'),(1079,197,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:363;s:6:\"height\";i:420;s:4:\"file\";s:23:\"2024/07/Home-Garden.jpg\";s:8:\"filesize\";i:199231;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"Home-Garden-259x300.jpg\";s:5:\"width\";i:259;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31943;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"Home-Garden-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10949;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1080,198,'_elementor_edit_mode','builder'),(1081,198,'_elementor_template_type','wp-page'),(1082,198,'_elementor_version','3.23.2'),(1083,198,'_wp_page_template','default'),(1084,198,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1085,198,'_elementor_data','[{\"id\":\"35495243\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"Eldery male gardener using scissors for bushes\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"160\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0,\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_size_tablet\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"top center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00160E\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b\":\"#00000054\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_slideshow_gallery\":[{\"id\":154,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-02-5.jpg\"},{\"id\":155,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-03-3.jpg\"},{\"id\":156,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-04-3.jpg\"},{\"id\":157,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-01-5.jpg\"}]},\"elements\":[{\"id\":\"739a26d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":65,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=06a34e7\"}},\"elements\":[{\"id\":\"132d1a8e\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Complete For All\",\"sg_title_focused\":\" Landscape \",\"sg_title_after\":\" Service And Maintenance\",\"sg_title_html_tag\":\"h1\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=primary\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"7c49583a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"635cb25b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"23cf340e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37.85499999999999687361196265555918216705322265625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":48,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"1c4c950d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4768b6f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":62.14500000000000312638803734444081783294677734375,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"flex-start\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":52,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"34c0badb\",\"elType\":\"widget\",\"settings\":{\"sg_video_button_title\":\"Play Video\",\"sg_video_button_icon\":{\"value\":\"jki jki-play\",\"library\":\"jkiticon\"},\"sg_video_url\":\"#\",\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_width_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_line_height_responsive\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#FFD402\",\"st_button_normal_glow_color_responsive\":\"#00694361\",\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"_element_width\":\"auto\",\"__globals__\":{\"st_button_normal_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=accent\",\"st_border_normal_border_border_color\":\"\",\"st_button_hover_text_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_glow_color_responsive\":\"\"},\"st_button_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_button_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_width_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_line_height_responsive_mobile\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"st_border_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_border_normal_border_border_color\":\"#FFD027\",\"st_button_line_height_responsive_tablet\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"st_button_normal_background_background_color\":\"#006943\",\"st_button_hover_text_color_responsive\":\"#006943\",\"st_button_hover_background_background_color\":\"#FFD402\",\"sg_video_auto_play\":\"\",\"sg_video_mute\":\"\"},\"elements\":[],\"widgetType\":\"jkit_video_button\"},{\"id\":\"232ec8da\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Intro\",\"align\":\"right\",\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"hide_mobile\":\"hidden-mobile\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#00160E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49b348ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"edc2dbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.00200000000000244426701101474463939666748046875,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e2246bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Prestige Luxury Cleanings LLC\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"139cc45f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Landscaping And Garden Care Services\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dc78e71\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"597dc67d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"26cf3840\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b19bda0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":167,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"980\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a46c929\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c4d8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Public Liability Insurance\",\"_id\":\"a978734\"},{\"text\":\"Environmentally Friendly\",\"_id\":\"1cd10a1\"},{\"text\":\"On Time, Every Time\",\"_id\":\"c6767db\"},{\"text\":\"Beautiful Garden Designs\",\"_id\":\"d4743f4\"},{\"text\":\"Modern Machinery And Tool\",\"_id\":\"535c17d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"398321ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4c7c15d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.9129999999999967030817060731351375579833984375,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5683e90d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":162,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"860\",\"height\":\"980\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b6190b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":163,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"-59\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"250636f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"713aa588\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"51a71b71\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#00160E\",\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=primary\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=06a34e7\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"st_content_title_color_responsive\":\"#7F7F7F\",\"st_super_color_responsive\":\"#FFD402\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\",\"sg_setting_html_tag\":\"span\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5557874f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"73847855\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":174,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/garden-maintenance-performed-by-pro-gardener-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"b1058a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":224,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":478,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":325,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"69098afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"40\",\"bottom\":\"80\",\"left\":\"40\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"7cb7bf82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91cb5d9\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26358abf\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Have The Perfect Solution For Your Landscape Problems\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15a36cc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42c8d36c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7114454f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76f24ca8\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Variation Gardening\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"138cc39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28a78a06\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Expert Landscapers\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c5ac2bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38fdb183\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3ce0b95b\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Affordable Price\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-save-money-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4c80f133\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7451fb11\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Free Consultation\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-Consultancy-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e93f2c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"39a46e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6773b2a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"87647bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find The Best Service For Your Garden\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e2cc66e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30164d28\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e8639b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":142,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-services.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fa92c14\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2c434fb3\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"5abe2e18\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33425b9f\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Lawn Services\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"472ed309\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"67cb221c\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37c1cce6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":143,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/driveway-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b3e60ba\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3b291bbf\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"20b91942\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5649f719\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Driveway Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6300b69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"256ddf68\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3735f0b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":144,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/deck-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"741128a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3691562\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3c8a0e6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5eb1b3b9\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Deck Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"25f37292\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"61c9ff8e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d41e618\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"8781ee3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":145,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/weed-control.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd84c7d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"14f7965\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fb2459e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0582197\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Weed Control \",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"f7b0fa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0197d9e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f3de9c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":146,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/grass-feed.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"75ba950\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"23edbf4\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"ad70b3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1c4ac7\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Grass Feed\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6f592ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0043a3b\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e6d8a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":147,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/edging-Cleaning.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd233da\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6535a16\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"937e2e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7aee\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Edging Cleaning\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"d9723d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"c908972\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"790dd775\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"360\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"160\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"140\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"background_overlay_color_b\":\"#000414\",\"background_overlay_image\":{\"id\":186,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/a-gardener-watering-plants-in-a-flowerbed-2RT8DWL-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]}},\"elements\":[{\"id\":\"a2ed5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7e37f762\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Landscaping\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a092069\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d5099\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need Someone To Take Care Your Garden & Lawn?\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=07ee36d\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1198756c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"66521a56\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":20,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":4},\"elements\":[{\"id\":\"1a89d099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.5090000000000003410605131648480892181396484375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"id\":191,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/happy-gardeners-with-plants-and-lawn-mower-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"space-between\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_color\":\"#FFFFFF00\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":9,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"46b821c1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":219,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":183,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"449971a9\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Make Appointment & Take Care Your Garden\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=secondary\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=93191b3\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_content_title_color_hover_responsive\":\"#FFFFFF\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#FFFFFF\",\"st_icon_color_responsive\":\"#00E5CC\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#00E5CC\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":false},{\"id\":\"13747b6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.4909999999999996589394868351519107818603515625,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a13f42e\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"178***1721830795182\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fde8487\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"59883b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1617542a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Process\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29c7aa96\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Complete Every Step Carefully\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ced0d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d62463d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18cf7834\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"41f79872\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-consult-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consultation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65e1b761\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"span\",\"title_color\":\"#FFD402\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#006943\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12cdbf13\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4175d29\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-pencil_art-light\",\"library\":\"jkiticon\"},\"title_text\":\"Design Installation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2adabf01\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b628\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"569b3221\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consturction \",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"67d6b2e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6fff79c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53c9a76e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"title_text\":\"Finished Work\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"555aace0\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d57540b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"71\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardening-background-with-garden-tolls-A9BGNJU.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]}},\"elements\":[{\"id\":\"147831a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"5a53d120\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"20\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Years of Experience\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"488f4727\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"6b8f6eae\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"76666759\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f532f9e\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"2850\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Happy Customers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"265fd738\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5473dc22\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"64\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Expert Landscapers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b38731e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4945f2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"627cd42c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65e3182\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.56499999999999772626324556767940521240234375},\"elements\":[{\"id\":\"43108b53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Projects\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45328989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Project We Have Done\\n\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"f382082\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.49900000000000233058017329312860965728759765625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":40,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"55ecfb57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"67afcbfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.0330000000000012505552149377763271331787109375,\"_inline_size_tablet\":23,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4989aa04\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Projects\",\"align\":\"right\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"left\",\"hover_animation\":\"float\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"32515d84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"3f5753f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"21982cfb\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"72\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-pruning-and-shaping-bushes-.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Cutting Leaf\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"404dc561\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"58d29b54\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"73\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/backyard-garden.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Home Garden\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"3bff1dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"3c24185a\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"64\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Build Backyard\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_image_height_responsive_tablet\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b3cb58d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_image\":{\"id\":\"74\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-moving-aerial-photo-Z8KDGJ9.jpg\"},\"background_overlay_color\":\"#0000007D\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]}},\"elements\":[{\"id\":\"79705206\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"51c9a732\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73b2fe0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"What They Says About Us\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4876e632\",\"elType\":\"widget\",\"settings\":{\"sg_layout_testimonial_choose\":\"style-2\",\"sg_testimonials_image_size_imagesize_size\":\"medium\",\"sg_testimonials_list\":[{\"sg_testimonials_list_client_avatar\":{\"id\":\"75\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/3SUMAU.jpg\"},\"_id\":\"6e9b2e1\",\"sg_testimonials_list_client_name\":\"Regan Traynor\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"76\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/CASCKD8.jpg\"},\"sg_testimonials_list_client_name\":\"Maisha Dunn\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"d069a43\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"77\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/MKLVKTE.jpg\"},\"sg_testimonials_list_client_name\":\"Reis Leonard\",\"sg_testimonials_list_designation\":\"Businessman\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"05c24f5\"}],\"st_wrapper_alignment_responsive\":\"left\",\"st_client_name_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_description_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_client_name_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_client_designation_normal_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_client_designation_normal_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=d343bdf\",\"st_rating_color_responsive\":\"\",\"st_client_name_normal_color_responsive\":\"\",\"st_quote_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_layout_background_background_color\":\"\"},\"st_layout_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_layout_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_wrapper_fix_height\":\"\",\"sg_setting_autoplay\":\"yes\",\"sg_setting_autoplay_pause\":\"\",\"sg_setting_arrow\":\"\",\"sg_setting_arrow_position\":\"middle-edge\",\"sg_setting_dots\":\"\",\"sg_setting_quote\":\"yes\",\"sg_setting_rating\":\"\",\"st_layout_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_layout_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_slide_show_responsive\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"sg_setting_quote_icon\":{\"value\":\"jki jki-quote-light\",\"library\":\"jkiticon\"},\"sg_layout_image_position\":\"below\",\"st_layout_background_background_background\":\"classic\",\"st_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position\":\"\",\"st_quote_override_position_top_responsive\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"st_quote_override_position_left_responsive\":{\"unit\":\"px\",\"size\":442,\"sizes\":[]},\"st_client_name_normal_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_quote_normal_font_size_responsive\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"st_client_image_margin_responsive\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_rating_font_size_responsive\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"st_rating_margin_right_responsive\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_setting_slide_show_responsive_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"st_wrapper_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position_top_responsive_tablet\":{\"unit\":\"px\",\"size\":249,\"sizes\":[]},\"st_quote_override_position_top_responsive_mobile\":{\"unit\":\"px\",\"size\":193,\"sizes\":[]},\"st_quote_override_position_left_responsive_tablet\":{\"unit\":\"px\",\"size\":265,\"sizes\":[]},\"st_quote_override_position_left_responsive_mobile\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]},\"st_quote_normal_font_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"st_description_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_normal_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64afd05f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"746d276b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30338dfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f950be4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ca735b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5d6ca3ad\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_title_hover_color_responsive\":\"globals\\/colors?id=secondary\",\"st_readmore_hover_color_responsive\":\"globals\\/colors?id=secondary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#646974\",\"st_excerpt_color_responsive\":\"#646974\",\"st_title_normal_color_responsive\":\"#272B36\",\"st_thumbnail_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_title_hover_color_responsive\":\"#FA8D25\",\"st_readmore_normal_color_responsive\":\"#FA8D25\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":false}],\"isInner\":false}]'),(1086,198,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1087,198,'_elementor_css','a:6:{s:4:\"time\";i:1721831801;s:5:\"fonts\";a:1:{i:0;s:5:\"Inter\";}s:5:\"icons\";a:3:{i:0;s:0:\"\";i:1;s:8:\"jkiticon\";i:3;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1088,199,'_elementor_edit_mode','builder'),(1089,199,'_elementor_template_type','wp-page'),(1090,199,'_elementor_version','3.23.2'),(1091,199,'_wp_page_template','default'),(1092,199,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1093,199,'_elementor_data','[{\"id\":\"35495243\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"Eldery male gardener using scissors for bushes\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"160\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0,\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_size_tablet\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"top center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00160E\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b\":\"#00000054\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_slideshow_gallery\":[{\"id\":154,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-02-5.jpg\"},{\"id\":155,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-03-3.jpg\"},{\"id\":156,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-04-3.jpg\"},{\"id\":157,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-01-5.jpg\"}]},\"elements\":[{\"id\":\"739a26d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":65,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=06a34e7\"}},\"elements\":[{\"id\":\"132d1a8e\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Complete For All\",\"sg_title_focused\":\" Landscape \",\"sg_title_after\":\" Service And Maintenance\",\"sg_title_html_tag\":\"h1\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=primary\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"7c49583a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"635cb25b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"23cf340e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37.85499999999999687361196265555918216705322265625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":48,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"1c4c950d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4768b6f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":62.14500000000000312638803734444081783294677734375,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"flex-start\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":52,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"34c0badb\",\"elType\":\"widget\",\"settings\":{\"sg_video_button_title\":\"Play Video\",\"sg_video_button_icon\":{\"value\":\"jki jki-play\",\"library\":\"jkiticon\"},\"sg_video_url\":\"#\",\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_width_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_line_height_responsive\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#FFD402\",\"st_button_normal_glow_color_responsive\":\"#00694361\",\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"_element_width\":\"auto\",\"__globals__\":{\"st_button_normal_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=accent\",\"st_border_normal_border_border_color\":\"\",\"st_button_hover_text_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_glow_color_responsive\":\"\"},\"st_button_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_button_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_width_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_line_height_responsive_mobile\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"st_border_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_border_normal_border_border_color\":\"#FFD027\",\"st_button_line_height_responsive_tablet\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"st_button_normal_background_background_color\":\"#006943\",\"st_button_hover_text_color_responsive\":\"#006943\",\"st_button_hover_background_background_color\":\"#FFD402\",\"sg_video_auto_play\":\"\",\"sg_video_mute\":\"\"},\"elements\":[],\"widgetType\":\"jkit_video_button\"},{\"id\":\"232ec8da\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Intro\",\"align\":\"right\",\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"hide_mobile\":\"hidden-mobile\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#00160E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49b348ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"edc2dbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.00200000000000244426701101474463939666748046875,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e2246bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Prestige Luxury Cleanings LLC\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"139cc45f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Landscaping And Garden Care Services\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dc78e71\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"597dc67d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"26cf3840\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b19bda0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":167,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"980\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a46c929\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c4d8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Public Liability Insurance\",\"_id\":\"a978734\"},{\"text\":\"Environmentally Friendly\",\"_id\":\"1cd10a1\"},{\"text\":\"On Time, Every Time\",\"_id\":\"c6767db\"},{\"text\":\"Beautiful Garden Designs\",\"_id\":\"d4743f4\"},{\"text\":\"Modern Machinery And Tool\",\"_id\":\"535c17d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"398321ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4c7c15d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.9129999999999967030817060731351375579833984375,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5683e90d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":162,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"860\",\"height\":\"980\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b6190b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":163,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"-59\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"250636f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"713aa588\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"51a71b71\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#00160E\",\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=primary\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=06a34e7\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"st_content_title_color_responsive\":\"#7F7F7F\",\"st_super_color_responsive\":\"#FFD402\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\",\"sg_setting_html_tag\":\"span\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5557874f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"73847855\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":174,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/garden-maintenance-performed-by-pro-gardener-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"b1058a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":224,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":478,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":325,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"69098afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"40\",\"bottom\":\"80\",\"left\":\"40\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"7cb7bf82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91cb5d9\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26358abf\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Have The Perfect Solution For Your Landscape Problems\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15a36cc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42c8d36c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7114454f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76f24ca8\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Variation Gardening\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"138cc39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28a78a06\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Expert Landscapers\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c5ac2bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38fdb183\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3ce0b95b\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Affordable Price\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-save-money-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4c80f133\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7451fb11\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Free Consultation\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-Consultancy-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e93f2c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"39a46e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6773b2a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"87647bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find The Best Service For Your Garden\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e2cc66e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30164d28\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e8639b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":142,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-services.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fa92c14\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2c434fb3\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"5abe2e18\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33425b9f\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Lawn Services\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"472ed309\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"67cb221c\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37c1cce6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":143,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/driveway-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b3e60ba\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3b291bbf\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"20b91942\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5649f719\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Driveway Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6300b69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"256ddf68\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3735f0b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":144,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/deck-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"741128a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3691562\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3c8a0e6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5eb1b3b9\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Deck Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"25f37292\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"61c9ff8e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d41e618\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"8781ee3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":145,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/weed-control.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd84c7d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"14f7965\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fb2459e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0582197\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Weed Control \",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"f7b0fa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0197d9e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f3de9c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":146,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/grass-feed.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"75ba950\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"23edbf4\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"ad70b3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1c4ac7\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Grass Feed\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6f592ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0043a3b\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e6d8a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":147,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/edging-Cleaning.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd233da\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6535a16\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"937e2e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7aee\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Edging Cleaning\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"d9723d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"c908972\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"790dd775\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"360\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"160\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"140\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"background_overlay_color_b\":\"#000414\",\"background_overlay_image\":{\"id\":186,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/a-gardener-watering-plants-in-a-flowerbed-2RT8DWL-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]}},\"elements\":[{\"id\":\"a2ed5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7e37f762\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Landscaping\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a092069\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d5099\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need Someone To Take Care Your Garden & Lawn?\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=07ee36d\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1198756c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"66521a56\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":20,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":4},\"elements\":[{\"id\":\"1a89d099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.5090000000000003410605131648480892181396484375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"id\":191,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/happy-gardeners-with-plants-and-lawn-mower-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"space-between\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_color\":\"#FFFFFF00\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":9,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"46b821c1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":219,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":183,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"449971a9\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Make Appointment & Take Care Your Garden\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=secondary\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=93191b3\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_content_title_color_hover_responsive\":\"#FFFFFF\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#FFFFFF\",\"st_icon_color_responsive\":\"#00E5CC\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#00E5CC\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":false},{\"id\":\"13747b6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.4909999999999996589394868351519107818603515625,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a13f42e\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"178***1721830795182\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fde8487\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"59883b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1617542a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Process\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29c7aa96\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Complete Every Step Carefully\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ced0d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d62463d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18cf7834\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"41f79872\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-consult-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consultation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65e1b761\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"span\",\"title_color\":\"#FFD402\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#006943\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12cdbf13\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4175d29\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-pencil_art-light\",\"library\":\"jkiticon\"},\"title_text\":\"Design Installation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2adabf01\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b628\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"569b3221\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consturction \",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"67d6b2e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6fff79c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53c9a76e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"title_text\":\"Finished Work\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"555aace0\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d57540b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"71\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardening-background-with-garden-tolls-A9BGNJU.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]}},\"elements\":[{\"id\":\"147831a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"5a53d120\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"20\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Years of Experience\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"488f4727\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"6b8f6eae\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"76666759\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f532f9e\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"2850\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Happy Customers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"265fd738\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5473dc22\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"64\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Expert Landscapers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b38731e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4945f2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"627cd42c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65e3182\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.56499999999999772626324556767940521240234375},\"elements\":[{\"id\":\"43108b53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Projects\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45328989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Project We Have Done\\n\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"f382082\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.49900000000000233058017329312860965728759765625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":40,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"55ecfb57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"67afcbfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.0330000000000012505552149377763271331787109375,\"_inline_size_tablet\":23,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4989aa04\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Projects\",\"align\":\"right\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"left\",\"hover_animation\":\"float\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"32515d84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"3f5753f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"21982cfb\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"72\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-pruning-and-shaping-bushes-.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Cutting Leaf\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"404dc561\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"58d29b54\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"73\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/backyard-garden.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Home Garden\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"3bff1dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"3c24185a\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"64\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Build Backyard\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_image_height_responsive_tablet\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b3cb58d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_image\":{\"id\":\"74\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-moving-aerial-photo-Z8KDGJ9.jpg\"},\"background_overlay_color\":\"#0000007D\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]}},\"elements\":[{\"id\":\"79705206\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"51c9a732\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73b2fe0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"What They Says About Us\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4876e632\",\"elType\":\"widget\",\"settings\":{\"sg_layout_testimonial_choose\":\"style-2\",\"sg_testimonials_image_size_imagesize_size\":\"medium\",\"sg_testimonials_list\":[{\"sg_testimonials_list_client_avatar\":{\"id\":\"75\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/3SUMAU.jpg\"},\"_id\":\"6e9b2e1\",\"sg_testimonials_list_client_name\":\"Regan Traynor\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"76\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/CASCKD8.jpg\"},\"sg_testimonials_list_client_name\":\"Maisha Dunn\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"d069a43\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"77\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/MKLVKTE.jpg\"},\"sg_testimonials_list_client_name\":\"Reis Leonard\",\"sg_testimonials_list_designation\":\"Businessman\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"05c24f5\"}],\"st_wrapper_alignment_responsive\":\"left\",\"st_client_name_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_description_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_client_name_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_client_designation_normal_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_client_designation_normal_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=d343bdf\",\"st_rating_color_responsive\":\"\",\"st_client_name_normal_color_responsive\":\"\",\"st_quote_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_layout_background_background_color\":\"\"},\"st_layout_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_layout_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_wrapper_fix_height\":\"\",\"sg_setting_autoplay\":\"yes\",\"sg_setting_autoplay_pause\":\"\",\"sg_setting_arrow\":\"\",\"sg_setting_arrow_position\":\"middle-edge\",\"sg_setting_dots\":\"\",\"sg_setting_quote\":\"yes\",\"sg_setting_rating\":\"\",\"st_layout_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_layout_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_slide_show_responsive\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"sg_setting_quote_icon\":{\"value\":\"jki jki-quote-light\",\"library\":\"jkiticon\"},\"sg_layout_image_position\":\"below\",\"st_layout_background_background_background\":\"classic\",\"st_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position\":\"\",\"st_quote_override_position_top_responsive\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"st_quote_override_position_left_responsive\":{\"unit\":\"px\",\"size\":442,\"sizes\":[]},\"st_client_name_normal_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_quote_normal_font_size_responsive\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"st_client_image_margin_responsive\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_rating_font_size_responsive\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"st_rating_margin_right_responsive\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_setting_slide_show_responsive_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"st_wrapper_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position_top_responsive_tablet\":{\"unit\":\"px\",\"size\":249,\"sizes\":[]},\"st_quote_override_position_top_responsive_mobile\":{\"unit\":\"px\",\"size\":193,\"sizes\":[]},\"st_quote_override_position_left_responsive_tablet\":{\"unit\":\"px\",\"size\":265,\"sizes\":[]},\"st_quote_override_position_left_responsive_mobile\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]},\"st_quote_normal_font_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"st_description_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_normal_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64afd05f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"746d276b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30338dfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f950be4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ca735b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5d6ca3ad\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_title_hover_color_responsive\":\"globals\\/colors?id=secondary\",\"st_readmore_hover_color_responsive\":\"globals\\/colors?id=secondary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#646974\",\"st_excerpt_color_responsive\":\"#646974\",\"st_title_normal_color_responsive\":\"#272B36\",\"st_thumbnail_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_title_hover_color_responsive\":\"#FA8D25\",\"st_readmore_normal_color_responsive\":\"#FA8D25\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":false}],\"isInner\":false}]'),(1094,199,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1095,199,'_elementor_css','a:6:{s:4:\"time\";i:1721831801;s:5:\"fonts\";a:1:{i:0;s:5:\"Inter\";}s:5:\"icons\";a:3:{i:0;s:0:\"\";i:1;s:8:\"jkiticon\";i:3;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1096,200,'_elementor_edit_mode','builder'),(1097,200,'_elementor_template_type','wp-page'),(1098,200,'_elementor_version','3.23.2'),(1099,200,'_wp_page_template','default'),(1100,200,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1101,200,'_elementor_data','[{\"id\":\"35495243\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"Eldery male gardener using scissors for bushes\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"160\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0,\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_size_tablet\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"top center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00160E\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b\":\"#00000054\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_slideshow_gallery\":[{\"id\":154,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-02-5.jpg\"},{\"id\":155,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-03-3.jpg\"},{\"id\":156,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-04-3.jpg\"},{\"id\":157,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-01-5.jpg\"}]},\"elements\":[{\"id\":\"739a26d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":65,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=06a34e7\"}},\"elements\":[{\"id\":\"132d1a8e\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Complete For All\",\"sg_title_focused\":\" Landscape \",\"sg_title_after\":\" Service And Maintenance\",\"sg_title_html_tag\":\"h1\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=primary\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"7c49583a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"635cb25b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"23cf340e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37.85499999999999687361196265555918216705322265625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":48,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"1c4c950d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4768b6f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":62.14500000000000312638803734444081783294677734375,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"flex-start\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":52,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"34c0badb\",\"elType\":\"widget\",\"settings\":{\"sg_video_button_title\":\"Play Video\",\"sg_video_button_icon\":{\"value\":\"jki jki-play\",\"library\":\"jkiticon\"},\"sg_video_url\":\"#\",\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_width_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_line_height_responsive\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#FFD402\",\"st_button_normal_glow_color_responsive\":\"#00694361\",\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"_element_width\":\"auto\",\"__globals__\":{\"st_button_normal_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=accent\",\"st_border_normal_border_border_color\":\"\",\"st_button_hover_text_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_glow_color_responsive\":\"\"},\"st_button_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_button_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_width_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_line_height_responsive_mobile\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"st_border_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_border_normal_border_border_color\":\"#FFD027\",\"st_button_line_height_responsive_tablet\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"st_button_normal_background_background_color\":\"#006943\",\"st_button_hover_text_color_responsive\":\"#006943\",\"st_button_hover_background_background_color\":\"#FFD402\",\"sg_video_auto_play\":\"\",\"sg_video_mute\":\"\"},\"elements\":[],\"widgetType\":\"jkit_video_button\"},{\"id\":\"232ec8da\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Intro\",\"align\":\"right\",\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"hide_mobile\":\"hidden-mobile\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#00160E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49b348ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"edc2dbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.00200000000000244426701101474463939666748046875,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e2246bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Prestige Luxury Cleanings LLC\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"139cc45f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Landscaping And Garden Care Services\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dc78e71\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"597dc67d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"26cf3840\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b19bda0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":167,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"980\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a46c929\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c4d8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Public Liability Insurance\",\"_id\":\"a978734\"},{\"text\":\"Environmentally Friendly\",\"_id\":\"1cd10a1\"},{\"text\":\"On Time, Every Time\",\"_id\":\"c6767db\"},{\"text\":\"Beautiful Garden Designs\",\"_id\":\"d4743f4\"},{\"text\":\"Modern Machinery And Tool\",\"_id\":\"535c17d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"398321ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4c7c15d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.9129999999999967030817060731351375579833984375,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5683e90d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":162,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"860\",\"height\":\"980\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b6190b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":163,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"-59\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"250636f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"713aa588\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"51a71b71\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#00160E\",\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=primary\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=06a34e7\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"st_content_title_color_responsive\":\"#7F7F7F\",\"st_super_color_responsive\":\"#FFD402\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\",\"sg_setting_html_tag\":\"span\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5557874f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"73847855\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":174,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/garden-maintenance-performed-by-pro-gardener-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"b1058a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":224,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":478,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":325,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"69098afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"40\",\"bottom\":\"80\",\"left\":\"40\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"7cb7bf82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91cb5d9\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26358abf\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Have The Perfect Solution For Your Landscape Problems\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15a36cc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42c8d36c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7114454f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76f24ca8\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Variation Gardening\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"138cc39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28a78a06\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Expert Landscapers\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c5ac2bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38fdb183\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3ce0b95b\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Affordable Price\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-save-money-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4c80f133\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7451fb11\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Free Consultation\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-Consultancy-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e93f2c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"39a46e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6773b2a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"87647bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find The Best Service For Your Garden\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e2cc66e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30164d28\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e8639b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":142,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-services.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fa92c14\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2c434fb3\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"5abe2e18\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33425b9f\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Lawn Services\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"472ed309\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"67cb221c\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37c1cce6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":143,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/driveway-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b3e60ba\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3b291bbf\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"20b91942\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5649f719\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Driveway Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6300b69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"256ddf68\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3735f0b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":144,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/deck-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"741128a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3691562\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3c8a0e6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5eb1b3b9\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Deck Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"25f37292\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"61c9ff8e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d41e618\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"8781ee3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":145,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/weed-control.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd84c7d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"14f7965\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fb2459e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0582197\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Weed Control \",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"f7b0fa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0197d9e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f3de9c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":146,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/grass-feed.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"75ba950\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"23edbf4\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"ad70b3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1c4ac7\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Grass Feed\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6f592ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0043a3b\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e6d8a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":147,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/edging-Cleaning.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd233da\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6535a16\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"937e2e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7aee\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Edging Cleaning\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"d9723d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"c908972\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"790dd775\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"360\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"160\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"140\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"background_overlay_color_b\":\"#000414\",\"background_overlay_image\":{\"id\":186,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/a-gardener-watering-plants-in-a-flowerbed-2RT8DWL-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]}},\"elements\":[{\"id\":\"a2ed5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7e37f762\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Landscaping\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a092069\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d5099\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need Someone To Take Care Your Garden & Lawn?\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=07ee36d\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1198756c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"66521a56\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":20,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":4},\"elements\":[{\"id\":\"1a89d099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.5090000000000003410605131648480892181396484375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"id\":191,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/happy-gardeners-with-plants-and-lawn-mower-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"space-between\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_color\":\"#FFFFFF00\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":9,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"46b821c1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":219,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":183,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"449971a9\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Make Appointment & Take Care Your Garden\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=secondary\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=93191b3\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_content_title_color_hover_responsive\":\"#FFFFFF\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#FFFFFF\",\"st_icon_color_responsive\":\"#00E5CC\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#00E5CC\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":false},{\"id\":\"13747b6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.4909999999999996589394868351519107818603515625,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a13f42e\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"178***1721830795182\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fde8487\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"59883b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1617542a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Process\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29c7aa96\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Complete Every Step Carefully\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ced0d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d62463d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18cf7834\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"41f79872\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-consult-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consultation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65e1b761\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"span\",\"title_color\":\"#FFD402\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#006943\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12cdbf13\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4175d29\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-pencil_art-light\",\"library\":\"jkiticon\"},\"title_text\":\"Design Installation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2adabf01\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b628\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"569b3221\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consturction \",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"67d6b2e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6fff79c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53c9a76e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"title_text\":\"Finished Work\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"555aace0\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d57540b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"71\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardening-background-with-garden-tolls-A9BGNJU.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]}},\"elements\":[{\"id\":\"147831a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"5a53d120\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"20\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Years of Experience\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"488f4727\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"6b8f6eae\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"76666759\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f532f9e\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"2850\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Happy Customers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"265fd738\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5473dc22\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"64\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Expert Landscapers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b38731e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4945f2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"627cd42c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65e3182\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.56499999999999772626324556767940521240234375},\"elements\":[{\"id\":\"43108b53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Projects\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45328989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Project We Have Done\\n\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"f382082\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.49900000000000233058017329312860965728759765625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":40,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"55ecfb57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"67afcbfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.0330000000000012505552149377763271331787109375,\"_inline_size_tablet\":23,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4989aa04\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Projects\",\"align\":\"right\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"left\",\"hover_animation\":\"float\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"32515d84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"3f5753f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"21982cfb\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":195,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/build-backyard.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Cutting Leaf\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"404dc561\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"58d29b54\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":197,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Home-Garden.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Home Garden\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"3bff1dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"3c24185a\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":195,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/build-backyard.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Build Backyard\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_image_height_responsive_tablet\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b3cb58d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_image\":{\"id\":\"74\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-moving-aerial-photo-Z8KDGJ9.jpg\"},\"background_overlay_color\":\"#0000007D\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]}},\"elements\":[{\"id\":\"79705206\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"51c9a732\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73b2fe0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"What They Says About Us\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4876e632\",\"elType\":\"widget\",\"settings\":{\"sg_layout_testimonial_choose\":\"style-2\",\"sg_testimonials_image_size_imagesize_size\":\"medium\",\"sg_testimonials_list\":[{\"sg_testimonials_list_client_avatar\":{\"id\":\"75\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/3SUMAU.jpg\"},\"_id\":\"6e9b2e1\",\"sg_testimonials_list_client_name\":\"Regan Traynor\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"76\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/CASCKD8.jpg\"},\"sg_testimonials_list_client_name\":\"Maisha Dunn\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"d069a43\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"77\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/MKLVKTE.jpg\"},\"sg_testimonials_list_client_name\":\"Reis Leonard\",\"sg_testimonials_list_designation\":\"Businessman\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"05c24f5\"}],\"st_wrapper_alignment_responsive\":\"left\",\"st_client_name_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_description_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_client_name_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_client_designation_normal_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_client_designation_normal_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=d343bdf\",\"st_rating_color_responsive\":\"\",\"st_client_name_normal_color_responsive\":\"\",\"st_quote_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_layout_background_background_color\":\"\"},\"st_layout_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_layout_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_wrapper_fix_height\":\"\",\"sg_setting_autoplay\":\"yes\",\"sg_setting_autoplay_pause\":\"\",\"sg_setting_arrow\":\"\",\"sg_setting_arrow_position\":\"middle-edge\",\"sg_setting_dots\":\"\",\"sg_setting_quote\":\"yes\",\"sg_setting_rating\":\"\",\"st_layout_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_layout_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_slide_show_responsive\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"sg_setting_quote_icon\":{\"value\":\"jki jki-quote-light\",\"library\":\"jkiticon\"},\"sg_layout_image_position\":\"below\",\"st_layout_background_background_background\":\"classic\",\"st_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position\":\"\",\"st_quote_override_position_top_responsive\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"st_quote_override_position_left_responsive\":{\"unit\":\"px\",\"size\":442,\"sizes\":[]},\"st_client_name_normal_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_quote_normal_font_size_responsive\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"st_client_image_margin_responsive\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_rating_font_size_responsive\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"st_rating_margin_right_responsive\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_setting_slide_show_responsive_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"st_wrapper_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position_top_responsive_tablet\":{\"unit\":\"px\",\"size\":249,\"sizes\":[]},\"st_quote_override_position_top_responsive_mobile\":{\"unit\":\"px\",\"size\":193,\"sizes\":[]},\"st_quote_override_position_left_responsive_tablet\":{\"unit\":\"px\",\"size\":265,\"sizes\":[]},\"st_quote_override_position_left_responsive_mobile\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]},\"st_quote_normal_font_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"st_description_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_normal_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64afd05f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"746d276b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30338dfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f950be4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ca735b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5d6ca3ad\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_title_hover_color_responsive\":\"globals\\/colors?id=secondary\",\"st_readmore_hover_color_responsive\":\"globals\\/colors?id=secondary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#646974\",\"st_excerpt_color_responsive\":\"#646974\",\"st_title_normal_color_responsive\":\"#272B36\",\"st_thumbnail_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_title_hover_color_responsive\":\"#FA8D25\",\"st_readmore_normal_color_responsive\":\"#FA8D25\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":false}],\"isInner\":false}]'),(1102,200,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1103,200,'_elementor_css','a:6:{s:4:\"time\";i:1721831801;s:5:\"fonts\";a:1:{i:0;s:5:\"Inter\";}s:5:\"icons\";a:3:{i:0;s:0:\"\";i:1;s:8:\"jkiticon\";i:3;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1105,201,'_wp_attached_file','2024/07/lawn-moving-aerial-photo-Z8KDGJ9-1.jpg'),(1106,201,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1282;s:4:\"file\";s:46:\"2024/07/lawn-moving-aerial-photo-Z8KDGJ9-1.jpg\";s:8:\"filesize\";i:1765697;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"lawn-moving-aerial-photo-Z8KDGJ9-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:22138;}s:5:\"large\";a:5:{s:4:\"file\";s:47:\"lawn-moving-aerial-photo-Z8KDGJ9-1-1024x684.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:183752;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"lawn-moving-aerial-photo-Z8KDGJ9-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:8987;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:46:\"lawn-moving-aerial-photo-Z8KDGJ9-1-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:115893;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:48:\"lawn-moving-aerial-photo-Z8KDGJ9-1-1536x1026.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1026;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:342218;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:20:\"All Rights Reserved.\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:24:\"Lawn Moving Aerial Photo\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1107,202,'_elementor_edit_mode','builder'),(1108,202,'_elementor_template_type','wp-page'),(1109,202,'_elementor_version','3.23.2'),(1110,202,'_wp_page_template','default'),(1111,202,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'); INSERT INTO `victorq_postmeta` VALUES (1112,202,'_elementor_data','[{\"id\":\"35495243\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"Eldery male gardener using scissors for bushes\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"160\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0,\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_size_tablet\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"top center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00160E\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b\":\"#00000054\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_slideshow_gallery\":[{\"id\":154,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-02-5.jpg\"},{\"id\":155,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-03-3.jpg\"},{\"id\":156,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-04-3.jpg\"},{\"id\":157,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-01-5.jpg\"}]},\"elements\":[{\"id\":\"739a26d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":65,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=06a34e7\"}},\"elements\":[{\"id\":\"132d1a8e\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Complete For All\",\"sg_title_focused\":\" Landscape \",\"sg_title_after\":\" Service And Maintenance\",\"sg_title_html_tag\":\"h1\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=primary\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"7c49583a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"635cb25b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"23cf340e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37.85499999999999687361196265555918216705322265625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":48,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"1c4c950d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4768b6f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":62.14500000000000312638803734444081783294677734375,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"flex-start\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":52,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"34c0badb\",\"elType\":\"widget\",\"settings\":{\"sg_video_button_title\":\"Play Video\",\"sg_video_button_icon\":{\"value\":\"jki jki-play\",\"library\":\"jkiticon\"},\"sg_video_url\":\"#\",\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_width_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_line_height_responsive\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#FFD402\",\"st_button_normal_glow_color_responsive\":\"#00694361\",\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"_element_width\":\"auto\",\"__globals__\":{\"st_button_normal_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=accent\",\"st_border_normal_border_border_color\":\"\",\"st_button_hover_text_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_glow_color_responsive\":\"\"},\"st_button_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_button_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_width_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_line_height_responsive_mobile\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"st_border_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_border_normal_border_border_color\":\"#FFD027\",\"st_button_line_height_responsive_tablet\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"st_button_normal_background_background_color\":\"#006943\",\"st_button_hover_text_color_responsive\":\"#006943\",\"st_button_hover_background_background_color\":\"#FFD402\",\"sg_video_auto_play\":\"\",\"sg_video_mute\":\"\"},\"elements\":[],\"widgetType\":\"jkit_video_button\"},{\"id\":\"232ec8da\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Intro\",\"align\":\"right\",\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"hide_mobile\":\"hidden-mobile\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#00160E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49b348ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"edc2dbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.00200000000000244426701101474463939666748046875,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e2246bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Prestige Luxury Cleanings LLC\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"139cc45f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Landscaping And Garden Care Services\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dc78e71\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"597dc67d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"26cf3840\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b19bda0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":167,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"980\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a46c929\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c4d8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Public Liability Insurance\",\"_id\":\"a978734\"},{\"text\":\"Environmentally Friendly\",\"_id\":\"1cd10a1\"},{\"text\":\"On Time, Every Time\",\"_id\":\"c6767db\"},{\"text\":\"Beautiful Garden Designs\",\"_id\":\"d4743f4\"},{\"text\":\"Modern Machinery And Tool\",\"_id\":\"535c17d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"398321ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4c7c15d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.9129999999999967030817060731351375579833984375,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5683e90d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":162,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"860\",\"height\":\"980\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b6190b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":163,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"-59\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"250636f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"713aa588\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"51a71b71\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#00160E\",\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=primary\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=06a34e7\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"st_content_title_color_responsive\":\"#7F7F7F\",\"st_super_color_responsive\":\"#FFD402\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\",\"sg_setting_html_tag\":\"span\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5557874f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"73847855\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":174,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/garden-maintenance-performed-by-pro-gardener-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"b1058a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":224,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":478,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":325,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"69098afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"40\",\"bottom\":\"80\",\"left\":\"40\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"7cb7bf82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91cb5d9\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26358abf\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Have The Perfect Solution For Your Landscape Problems\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15a36cc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42c8d36c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7114454f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76f24ca8\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Variation Gardening\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"138cc39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28a78a06\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Expert Landscapers\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c5ac2bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38fdb183\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3ce0b95b\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Affordable Price\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-save-money-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4c80f133\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7451fb11\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Free Consultation\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-Consultancy-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e93f2c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"39a46e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6773b2a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"87647bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find The Best Service For Your Garden\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e2cc66e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30164d28\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e8639b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":142,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-services.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fa92c14\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2c434fb3\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"5abe2e18\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33425b9f\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Lawn Services\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"472ed309\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"67cb221c\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37c1cce6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":143,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/driveway-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b3e60ba\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3b291bbf\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"20b91942\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5649f719\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Driveway Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6300b69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"256ddf68\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3735f0b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":144,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/deck-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"741128a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3691562\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3c8a0e6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5eb1b3b9\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Deck Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"25f37292\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"61c9ff8e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d41e618\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"8781ee3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":145,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/weed-control.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd84c7d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"14f7965\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fb2459e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0582197\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Weed Control \",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"f7b0fa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0197d9e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f3de9c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":146,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/grass-feed.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"75ba950\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"23edbf4\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"ad70b3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1c4ac7\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Grass Feed\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6f592ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0043a3b\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e6d8a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":147,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/edging-Cleaning.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd233da\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6535a16\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"937e2e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7aee\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Edging Cleaning\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"d9723d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"c908972\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"790dd775\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"360\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"160\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"140\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"background_overlay_color_b\":\"#000414\",\"background_overlay_image\":{\"id\":186,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/a-gardener-watering-plants-in-a-flowerbed-2RT8DWL-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]}},\"elements\":[{\"id\":\"a2ed5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7e37f762\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Landscaping\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a092069\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d5099\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need Someone To Take Care Your Garden & Lawn?\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=07ee36d\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1198756c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"66521a56\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":20,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":4},\"elements\":[{\"id\":\"1a89d099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.5090000000000003410605131648480892181396484375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"id\":191,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/happy-gardeners-with-plants-and-lawn-mower-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"space-between\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_color\":\"#FFFFFF00\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":9,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"46b821c1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":219,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":183,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"449971a9\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Make Appointment & Take Care Your Garden\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=secondary\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=93191b3\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_content_title_color_hover_responsive\":\"#FFFFFF\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#FFFFFF\",\"st_icon_color_responsive\":\"#00E5CC\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#00E5CC\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":false},{\"id\":\"13747b6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.4909999999999996589394868351519107818603515625,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a13f42e\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"178***1721830795182\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fde8487\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"59883b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1617542a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Process\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29c7aa96\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Complete Every Step Carefully\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ced0d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d62463d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18cf7834\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"41f79872\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-consult-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consultation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65e1b761\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"span\",\"title_color\":\"#FFD402\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#006943\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12cdbf13\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4175d29\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-pencil_art-light\",\"library\":\"jkiticon\"},\"title_text\":\"Design Installation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2adabf01\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b628\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"569b3221\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consturction \",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"67d6b2e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6fff79c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53c9a76e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"title_text\":\"Finished Work\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"555aace0\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d57540b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"71\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardening-background-with-garden-tolls-A9BGNJU.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]}},\"elements\":[{\"id\":\"147831a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"5a53d120\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"20\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Years of Experience\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"488f4727\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"6b8f6eae\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"76666759\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f532f9e\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"2850\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Happy Customers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"265fd738\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5473dc22\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"64\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Expert Landscapers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b38731e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4945f2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"627cd42c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65e3182\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.56499999999999772626324556767940521240234375},\"elements\":[{\"id\":\"43108b53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Projects\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45328989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Project We Have Done\\n\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"f382082\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.49900000000000233058017329312860965728759765625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":40,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"55ecfb57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"67afcbfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.0330000000000012505552149377763271331787109375,\"_inline_size_tablet\":23,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4989aa04\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Projects\",\"align\":\"right\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"left\",\"hover_animation\":\"float\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"32515d84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"3f5753f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"21982cfb\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":195,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/build-backyard.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Cutting Leaf\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"404dc561\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"58d29b54\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":197,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Home-Garden.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Home Garden\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"3bff1dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"3c24185a\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":195,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/build-backyard.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Build Backyard\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_image_height_responsive_tablet\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b3cb58d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_image\":{\"id\":\"74\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-moving-aerial-photo-Z8KDGJ9.jpg\"},\"background_overlay_color\":\"#0000007D\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]}},\"elements\":[{\"id\":\"79705206\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"51c9a732\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73b2fe0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"What They Says About Us\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4876e632\",\"elType\":\"widget\",\"settings\":{\"sg_layout_testimonial_choose\":\"style-2\",\"sg_testimonials_image_size_imagesize_size\":\"medium\",\"sg_testimonials_list\":[{\"sg_testimonials_list_client_avatar\":{\"id\":\"75\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/3SUMAU.jpg\"},\"_id\":\"6e9b2e1\",\"sg_testimonials_list_client_name\":\"Regan Traynor\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"76\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/CASCKD8.jpg\"},\"sg_testimonials_list_client_name\":\"Maisha Dunn\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"d069a43\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"77\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/MKLVKTE.jpg\"},\"sg_testimonials_list_client_name\":\"Reis Leonard\",\"sg_testimonials_list_designation\":\"Businessman\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"05c24f5\"}],\"st_wrapper_alignment_responsive\":\"left\",\"st_client_name_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_description_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_client_name_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_client_designation_normal_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_client_designation_normal_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=d343bdf\",\"st_rating_color_responsive\":\"\",\"st_client_name_normal_color_responsive\":\"\",\"st_quote_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_layout_background_background_color\":\"\"},\"st_layout_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_layout_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_wrapper_fix_height\":\"\",\"sg_setting_autoplay\":\"yes\",\"sg_setting_autoplay_pause\":\"\",\"sg_setting_arrow\":\"\",\"sg_setting_arrow_position\":\"middle-edge\",\"sg_setting_dots\":\"\",\"sg_setting_quote\":\"yes\",\"sg_setting_rating\":\"\",\"st_layout_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_layout_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_slide_show_responsive\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"sg_setting_quote_icon\":{\"value\":\"jki jki-quote-light\",\"library\":\"jkiticon\"},\"sg_layout_image_position\":\"below\",\"st_layout_background_background_background\":\"classic\",\"st_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position\":\"\",\"st_quote_override_position_top_responsive\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"st_quote_override_position_left_responsive\":{\"unit\":\"px\",\"size\":442,\"sizes\":[]},\"st_client_name_normal_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_quote_normal_font_size_responsive\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"st_client_image_margin_responsive\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_rating_font_size_responsive\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"st_rating_margin_right_responsive\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_setting_slide_show_responsive_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"st_wrapper_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position_top_responsive_tablet\":{\"unit\":\"px\",\"size\":249,\"sizes\":[]},\"st_quote_override_position_top_responsive_mobile\":{\"unit\":\"px\",\"size\":193,\"sizes\":[]},\"st_quote_override_position_left_responsive_tablet\":{\"unit\":\"px\",\"size\":265,\"sizes\":[]},\"st_quote_override_position_left_responsive_mobile\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]},\"st_quote_normal_font_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"st_description_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_normal_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64afd05f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"746d276b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30338dfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f950be4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ca735b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5d6ca3ad\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_title_hover_color_responsive\":\"globals\\/colors?id=secondary\",\"st_readmore_hover_color_responsive\":\"globals\\/colors?id=secondary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#646974\",\"st_excerpt_color_responsive\":\"#646974\",\"st_title_normal_color_responsive\":\"#272B36\",\"st_thumbnail_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_title_hover_color_responsive\":\"#FA8D25\",\"st_readmore_normal_color_responsive\":\"#FA8D25\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":false}],\"isInner\":false}]'),(1113,202,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1114,202,'_elementor_css','a:6:{s:4:\"time\";i:1721832034;s:5:\"fonts\";a:1:{i:0;s:5:\"Inter\";}s:5:\"icons\";a:3:{i:0;s:0:\"\";i:1;s:8:\"jkiticon\";i:3;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1115,203,'_elementor_edit_mode','builder'),(1116,203,'_elementor_template_type','wp-page'),(1117,203,'_elementor_version','3.23.2'),(1118,203,'_wp_page_template','default'),(1119,203,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1120,203,'_elementor_data','[{\"id\":\"35495243\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"Eldery male gardener using scissors for bushes\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"160\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0,\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_size_tablet\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"top center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00160E\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b\":\"#00000054\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_slideshow_gallery\":[{\"id\":154,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-02-5.jpg\"},{\"id\":155,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-03-3.jpg\"},{\"id\":156,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-04-3.jpg\"},{\"id\":157,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-01-5.jpg\"}]},\"elements\":[{\"id\":\"739a26d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":65,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=06a34e7\"}},\"elements\":[{\"id\":\"132d1a8e\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Complete For All\",\"sg_title_focused\":\" Landscape \",\"sg_title_after\":\" Service And Maintenance\",\"sg_title_html_tag\":\"h1\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=primary\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"7c49583a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"635cb25b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"23cf340e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37.85499999999999687361196265555918216705322265625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":48,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"1c4c950d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4768b6f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":62.14500000000000312638803734444081783294677734375,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"flex-start\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":52,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"34c0badb\",\"elType\":\"widget\",\"settings\":{\"sg_video_button_title\":\"Play Video\",\"sg_video_button_icon\":{\"value\":\"jki jki-play\",\"library\":\"jkiticon\"},\"sg_video_url\":\"#\",\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_width_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_line_height_responsive\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#FFD402\",\"st_button_normal_glow_color_responsive\":\"#00694361\",\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"_element_width\":\"auto\",\"__globals__\":{\"st_button_normal_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=accent\",\"st_border_normal_border_border_color\":\"\",\"st_button_hover_text_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_glow_color_responsive\":\"\"},\"st_button_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_button_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_width_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_line_height_responsive_mobile\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"st_border_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_border_normal_border_border_color\":\"#FFD027\",\"st_button_line_height_responsive_tablet\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"st_button_normal_background_background_color\":\"#006943\",\"st_button_hover_text_color_responsive\":\"#006943\",\"st_button_hover_background_background_color\":\"#FFD402\",\"sg_video_auto_play\":\"\",\"sg_video_mute\":\"\"},\"elements\":[],\"widgetType\":\"jkit_video_button\"},{\"id\":\"232ec8da\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Intro\",\"align\":\"right\",\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"hide_mobile\":\"hidden-mobile\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#00160E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49b348ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"edc2dbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.00200000000000244426701101474463939666748046875,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e2246bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Prestige Luxury Cleanings LLC\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"139cc45f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Landscaping And Garden Care Services\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dc78e71\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"597dc67d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"26cf3840\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b19bda0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":167,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"980\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a46c929\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c4d8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Public Liability Insurance\",\"_id\":\"a978734\"},{\"text\":\"Environmentally Friendly\",\"_id\":\"1cd10a1\"},{\"text\":\"On Time, Every Time\",\"_id\":\"c6767db\"},{\"text\":\"Beautiful Garden Designs\",\"_id\":\"d4743f4\"},{\"text\":\"Modern Machinery And Tool\",\"_id\":\"535c17d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"398321ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4c7c15d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.9129999999999967030817060731351375579833984375,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5683e90d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":162,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"860\",\"height\":\"980\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b6190b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":163,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"-59\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"250636f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"713aa588\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"51a71b71\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#00160E\",\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=primary\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=06a34e7\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"st_content_title_color_responsive\":\"#7F7F7F\",\"st_super_color_responsive\":\"#FFD402\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\",\"sg_setting_html_tag\":\"span\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5557874f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"73847855\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":174,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/garden-maintenance-performed-by-pro-gardener-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"b1058a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":224,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":478,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":325,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"69098afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"40\",\"bottom\":\"80\",\"left\":\"40\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"7cb7bf82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91cb5d9\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26358abf\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Have The Perfect Solution For Your Landscape Problems\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15a36cc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42c8d36c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7114454f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76f24ca8\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Variation Gardening\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"138cc39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28a78a06\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Expert Landscapers\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c5ac2bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38fdb183\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3ce0b95b\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Affordable Price\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-save-money-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4c80f133\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7451fb11\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Free Consultation\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-Consultancy-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e93f2c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"39a46e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6773b2a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"87647bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find The Best Service For Your Garden\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e2cc66e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30164d28\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e8639b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":142,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-services.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fa92c14\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2c434fb3\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"5abe2e18\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33425b9f\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Lawn Services\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"472ed309\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"67cb221c\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37c1cce6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":143,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/driveway-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b3e60ba\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3b291bbf\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"20b91942\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5649f719\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Driveway Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6300b69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"256ddf68\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3735f0b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":144,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/deck-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"741128a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3691562\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3c8a0e6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5eb1b3b9\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Deck Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"25f37292\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"61c9ff8e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d41e618\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"8781ee3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":145,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/weed-control.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd84c7d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"14f7965\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fb2459e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0582197\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Weed Control \",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"f7b0fa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0197d9e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f3de9c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":146,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/grass-feed.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"75ba950\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"23edbf4\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"ad70b3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1c4ac7\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Grass Feed\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6f592ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0043a3b\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e6d8a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":147,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/edging-Cleaning.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd233da\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6535a16\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"937e2e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7aee\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Edging Cleaning\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"d9723d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"c908972\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"790dd775\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"360\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"160\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"140\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"background_overlay_color_b\":\"#000414\",\"background_overlay_image\":{\"id\":186,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/a-gardener-watering-plants-in-a-flowerbed-2RT8DWL-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]}},\"elements\":[{\"id\":\"a2ed5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7e37f762\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Landscaping\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a092069\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d5099\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need Someone To Take Care Your Garden & Lawn?\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=07ee36d\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1198756c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"66521a56\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":20,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":4},\"elements\":[{\"id\":\"1a89d099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.5090000000000003410605131648480892181396484375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"id\":191,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/happy-gardeners-with-plants-and-lawn-mower-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"space-between\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_color\":\"#FFFFFF00\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":9,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"46b821c1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":219,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":183,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"449971a9\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Make Appointment & Take Care Your Garden\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=secondary\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=93191b3\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_content_title_color_hover_responsive\":\"#FFFFFF\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#FFFFFF\",\"st_icon_color_responsive\":\"#00E5CC\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#00E5CC\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":false},{\"id\":\"13747b6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.4909999999999996589394868351519107818603515625,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a13f42e\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"178***1721830795182\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fde8487\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"59883b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1617542a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Process\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29c7aa96\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Complete Every Step Carefully\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ced0d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d62463d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18cf7834\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"41f79872\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-consult-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consultation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65e1b761\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"span\",\"title_color\":\"#FFD402\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#006943\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12cdbf13\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4175d29\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-pencil_art-light\",\"library\":\"jkiticon\"},\"title_text\":\"Design Installation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2adabf01\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b628\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"569b3221\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consturction \",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"67d6b2e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6fff79c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53c9a76e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"title_text\":\"Finished Work\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"555aace0\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d57540b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"71\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardening-background-with-garden-tolls-A9BGNJU.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]}},\"elements\":[{\"id\":\"147831a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"5a53d120\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"20\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Years of Experience\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"488f4727\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"6b8f6eae\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"76666759\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f532f9e\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"2850\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Happy Customers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"265fd738\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5473dc22\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"64\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Expert Landscapers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b38731e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4945f2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"627cd42c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65e3182\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.56499999999999772626324556767940521240234375},\"elements\":[{\"id\":\"43108b53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Projects\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45328989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Project We Have Done\\n\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"f382082\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.49900000000000233058017329312860965728759765625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":40,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"55ecfb57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"67afcbfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.0330000000000012505552149377763271331787109375,\"_inline_size_tablet\":23,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4989aa04\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Projects\",\"align\":\"right\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"left\",\"hover_animation\":\"float\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"32515d84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"3f5753f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"21982cfb\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":195,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/build-backyard.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Cutting Leaf\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"404dc561\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"58d29b54\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":197,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Home-Garden.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Home Garden\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"3bff1dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"3c24185a\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":195,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/build-backyard.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Build Backyard\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_image_height_responsive_tablet\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b3cb58d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_image\":{\"id\":\"74\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-moving-aerial-photo-Z8KDGJ9.jpg\"},\"background_overlay_color\":\"#0000007D\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]}},\"elements\":[{\"id\":\"79705206\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"51c9a732\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73b2fe0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"What They Says About Us\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4876e632\",\"elType\":\"widget\",\"settings\":{\"sg_layout_testimonial_choose\":\"style-2\",\"sg_testimonials_image_size_imagesize_size\":\"medium\",\"sg_testimonials_list\":[{\"sg_testimonials_list_client_avatar\":{\"id\":\"75\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/3SUMAU.jpg\"},\"_id\":\"6e9b2e1\",\"sg_testimonials_list_client_name\":\"Regan Traynor\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"76\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/CASCKD8.jpg\"},\"sg_testimonials_list_client_name\":\"Maisha Dunn\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"d069a43\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"77\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/MKLVKTE.jpg\"},\"sg_testimonials_list_client_name\":\"Reis Leonard\",\"sg_testimonials_list_designation\":\"Businessman\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"05c24f5\"}],\"st_wrapper_alignment_responsive\":\"left\",\"st_client_name_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_description_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_client_name_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_client_designation_normal_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_client_designation_normal_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=d343bdf\",\"st_rating_color_responsive\":\"\",\"st_client_name_normal_color_responsive\":\"\",\"st_quote_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_layout_background_background_color\":\"\"},\"st_layout_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_layout_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_wrapper_fix_height\":\"\",\"sg_setting_autoplay\":\"yes\",\"sg_setting_autoplay_pause\":\"\",\"sg_setting_arrow\":\"\",\"sg_setting_arrow_position\":\"middle-edge\",\"sg_setting_dots\":\"\",\"sg_setting_quote\":\"yes\",\"sg_setting_rating\":\"\",\"st_layout_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_layout_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_slide_show_responsive\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"sg_setting_quote_icon\":{\"value\":\"jki jki-quote-light\",\"library\":\"jkiticon\"},\"sg_layout_image_position\":\"below\",\"st_layout_background_background_background\":\"classic\",\"st_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position\":\"\",\"st_quote_override_position_top_responsive\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"st_quote_override_position_left_responsive\":{\"unit\":\"px\",\"size\":442,\"sizes\":[]},\"st_client_name_normal_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_quote_normal_font_size_responsive\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"st_client_image_margin_responsive\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_rating_font_size_responsive\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"st_rating_margin_right_responsive\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_setting_slide_show_responsive_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"st_wrapper_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position_top_responsive_tablet\":{\"unit\":\"px\",\"size\":249,\"sizes\":[]},\"st_quote_override_position_top_responsive_mobile\":{\"unit\":\"px\",\"size\":193,\"sizes\":[]},\"st_quote_override_position_left_responsive_tablet\":{\"unit\":\"px\",\"size\":265,\"sizes\":[]},\"st_quote_override_position_left_responsive_mobile\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]},\"st_quote_normal_font_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"st_description_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_normal_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64afd05f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"746d276b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30338dfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f950be4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ca735b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5d6ca3ad\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_title_hover_color_responsive\":\"globals\\/colors?id=secondary\",\"st_readmore_hover_color_responsive\":\"globals\\/colors?id=secondary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#646974\",\"st_excerpt_color_responsive\":\"#646974\",\"st_title_normal_color_responsive\":\"#272B36\",\"st_thumbnail_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_title_hover_color_responsive\":\"#FA8D25\",\"st_readmore_normal_color_responsive\":\"#FA8D25\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":false}],\"isInner\":false}]'),(1121,203,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1122,203,'_elementor_css','a:6:{s:4:\"time\";i:1721832034;s:5:\"fonts\";a:1:{i:0;s:5:\"Inter\";}s:5:\"icons\";a:3:{i:0;s:0:\"\";i:1;s:8:\"jkiticon\";i:3;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1123,204,'_elementor_edit_mode','builder'),(1124,204,'_elementor_template_type','wp-page'),(1125,204,'_elementor_version','3.23.2'),(1126,204,'_wp_page_template','default'),(1127,204,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1128,204,'_elementor_data','[{\"id\":\"35495243\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"Eldery male gardener using scissors for bushes\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"160\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0,\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_size_tablet\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"top center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00160E\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b\":\"#00000054\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_slideshow_gallery\":[{\"id\":154,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-02-5.jpg\"},{\"id\":155,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-03-3.jpg\"},{\"id\":156,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-04-3.jpg\"},{\"id\":157,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-01-5.jpg\"}]},\"elements\":[{\"id\":\"739a26d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":65,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=06a34e7\"}},\"elements\":[{\"id\":\"132d1a8e\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Complete For All\",\"sg_title_focused\":\" Landscape \",\"sg_title_after\":\" Service And Maintenance\",\"sg_title_html_tag\":\"h1\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=primary\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"7c49583a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"635cb25b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"23cf340e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37.85499999999999687361196265555918216705322265625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":48,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"1c4c950d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4768b6f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":62.14500000000000312638803734444081783294677734375,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"flex-start\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":52,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"34c0badb\",\"elType\":\"widget\",\"settings\":{\"sg_video_button_title\":\"Play Video\",\"sg_video_button_icon\":{\"value\":\"jki jki-play\",\"library\":\"jkiticon\"},\"sg_video_url\":\"#\",\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_width_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_line_height_responsive\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#FFD402\",\"st_button_normal_glow_color_responsive\":\"#00694361\",\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"_element_width\":\"auto\",\"__globals__\":{\"st_button_normal_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=accent\",\"st_border_normal_border_border_color\":\"\",\"st_button_hover_text_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_glow_color_responsive\":\"\"},\"st_button_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_button_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_width_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_line_height_responsive_mobile\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"st_border_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_border_normal_border_border_color\":\"#FFD027\",\"st_button_line_height_responsive_tablet\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"st_button_normal_background_background_color\":\"#006943\",\"st_button_hover_text_color_responsive\":\"#006943\",\"st_button_hover_background_background_color\":\"#FFD402\",\"sg_video_auto_play\":\"\",\"sg_video_mute\":\"\"},\"elements\":[],\"widgetType\":\"jkit_video_button\"},{\"id\":\"232ec8da\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Intro\",\"align\":\"right\",\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"hide_mobile\":\"hidden-mobile\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#00160E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49b348ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"edc2dbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.00200000000000244426701101474463939666748046875,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e2246bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Prestige Luxury Cleanings LLC\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"139cc45f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Landscaping And Garden Care Services\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dc78e71\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"597dc67d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"26cf3840\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b19bda0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":167,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"980\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a46c929\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c4d8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Public Liability Insurance\",\"_id\":\"a978734\"},{\"text\":\"Environmentally Friendly\",\"_id\":\"1cd10a1\"},{\"text\":\"On Time, Every Time\",\"_id\":\"c6767db\"},{\"text\":\"Beautiful Garden Designs\",\"_id\":\"d4743f4\"},{\"text\":\"Modern Machinery And Tool\",\"_id\":\"535c17d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"398321ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4c7c15d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.9129999999999967030817060731351375579833984375,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5683e90d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":162,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"860\",\"height\":\"980\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b6190b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":163,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"-59\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"250636f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"713aa588\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"51a71b71\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#00160E\",\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=primary\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=06a34e7\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"st_content_title_color_responsive\":\"#7F7F7F\",\"st_super_color_responsive\":\"#FFD402\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\",\"sg_setting_html_tag\":\"span\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5557874f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"73847855\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":174,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/garden-maintenance-performed-by-pro-gardener-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"b1058a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":224,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":478,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":325,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"69098afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"40\",\"bottom\":\"80\",\"left\":\"40\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"7cb7bf82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91cb5d9\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26358abf\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Have The Perfect Solution For Your Landscape Problems\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15a36cc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42c8d36c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7114454f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76f24ca8\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Variation Gardening\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"138cc39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28a78a06\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Expert Landscapers\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c5ac2bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38fdb183\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3ce0b95b\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Affordable Price\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-save-money-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4c80f133\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7451fb11\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Free Consultation\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-Consultancy-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e93f2c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"39a46e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6773b2a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"87647bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find The Best Service For Your Garden\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e2cc66e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30164d28\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e8639b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":142,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-services.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fa92c14\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2c434fb3\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"5abe2e18\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33425b9f\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Lawn Services\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"472ed309\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"67cb221c\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37c1cce6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":143,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/driveway-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b3e60ba\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3b291bbf\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"20b91942\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5649f719\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Driveway Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6300b69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"256ddf68\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3735f0b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":144,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/deck-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"741128a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3691562\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3c8a0e6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5eb1b3b9\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Deck Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"25f37292\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"61c9ff8e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d41e618\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"8781ee3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":145,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/weed-control.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd84c7d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"14f7965\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fb2459e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0582197\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Weed Control \",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"f7b0fa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0197d9e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f3de9c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":146,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/grass-feed.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"75ba950\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"23edbf4\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"ad70b3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1c4ac7\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Grass Feed\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6f592ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0043a3b\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e6d8a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":147,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/edging-Cleaning.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd233da\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6535a16\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"937e2e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7aee\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Edging Cleaning\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"d9723d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"c908972\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"790dd775\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"360\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"160\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"140\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"background_overlay_color_b\":\"#000414\",\"background_overlay_image\":{\"id\":186,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/a-gardener-watering-plants-in-a-flowerbed-2RT8DWL-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]}},\"elements\":[{\"id\":\"a2ed5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7e37f762\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Landscaping\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a092069\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d5099\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need Someone To Take Care Your Garden & Lawn?\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=07ee36d\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1198756c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"66521a56\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":20,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":4},\"elements\":[{\"id\":\"1a89d099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.5090000000000003410605131648480892181396484375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"id\":191,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/happy-gardeners-with-plants-and-lawn-mower-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"space-between\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_color\":\"#FFFFFF00\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":9,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"46b821c1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":219,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":183,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"449971a9\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Make Appointment & Take Care Your Garden\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=secondary\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=93191b3\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_content_title_color_hover_responsive\":\"#FFFFFF\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#FFFFFF\",\"st_icon_color_responsive\":\"#00E5CC\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#00E5CC\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":false},{\"id\":\"13747b6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.4909999999999996589394868351519107818603515625,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a13f42e\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"178***1721830795182\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fde8487\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"59883b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1617542a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Process\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29c7aa96\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Complete Every Step Carefully\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ced0d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d62463d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18cf7834\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"41f79872\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-consult-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consultation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65e1b761\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"span\",\"title_color\":\"#FFD402\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#006943\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12cdbf13\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4175d29\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-pencil_art-light\",\"library\":\"jkiticon\"},\"title_text\":\"Design Installation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2adabf01\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b628\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"569b3221\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consturction \",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"67d6b2e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6fff79c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53c9a76e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"title_text\":\"Finished Work\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"555aace0\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d57540b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"71\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardening-background-with-garden-tolls-A9BGNJU.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]}},\"elements\":[{\"id\":\"147831a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"5a53d120\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"20\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Years of Experience\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"488f4727\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"6b8f6eae\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"76666759\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f532f9e\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"2850\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Happy Customers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"265fd738\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5473dc22\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"64\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Expert Landscapers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b38731e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4945f2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"627cd42c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65e3182\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.56499999999999772626324556767940521240234375},\"elements\":[{\"id\":\"43108b53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Projects\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45328989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Project We Have Done\\n\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"f382082\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.49900000000000233058017329312860965728759765625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":40,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"55ecfb57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"67afcbfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.0330000000000012505552149377763271331787109375,\"_inline_size_tablet\":23,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4989aa04\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Projects\",\"align\":\"right\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"left\",\"hover_animation\":\"float\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"32515d84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"3f5753f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"21982cfb\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":195,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/build-backyard.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Cutting Leaf\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"404dc561\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"58d29b54\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":197,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Home-Garden.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Home Garden\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"3bff1dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"3c24185a\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":195,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/build-backyard.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Build Backyard\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_image_height_responsive_tablet\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b3cb58d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_image\":{\"id\":201,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-moving-aerial-photo-Z8KDGJ9-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_color\":\"#0000007D\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]}},\"elements\":[{\"id\":\"79705206\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"51c9a732\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73b2fe0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"What They Says About Us\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4876e632\",\"elType\":\"widget\",\"settings\":{\"sg_layout_testimonial_choose\":\"style-2\",\"sg_testimonials_image_size_imagesize_size\":\"medium\",\"sg_testimonials_list\":[{\"sg_testimonials_list_client_avatar\":{\"id\":\"75\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/3SUMAU.jpg\"},\"_id\":\"6e9b2e1\",\"sg_testimonials_list_client_name\":\"Regan Traynor\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"76\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/CASCKD8.jpg\"},\"sg_testimonials_list_client_name\":\"Maisha Dunn\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"d069a43\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"77\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/MKLVKTE.jpg\"},\"sg_testimonials_list_client_name\":\"Reis Leonard\",\"sg_testimonials_list_designation\":\"Businessman\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"05c24f5\"}],\"st_wrapper_alignment_responsive\":\"left\",\"st_client_name_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_description_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_client_name_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_client_designation_normal_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_client_designation_normal_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=d343bdf\",\"st_rating_color_responsive\":\"\",\"st_client_name_normal_color_responsive\":\"\",\"st_quote_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_layout_background_background_color\":\"\"},\"st_layout_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_layout_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_wrapper_fix_height\":\"\",\"sg_setting_autoplay\":\"yes\",\"sg_setting_autoplay_pause\":\"\",\"sg_setting_arrow\":\"\",\"sg_setting_arrow_position\":\"middle-edge\",\"sg_setting_dots\":\"\",\"sg_setting_quote\":\"yes\",\"sg_setting_rating\":\"\",\"st_layout_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_layout_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_slide_show_responsive\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"sg_setting_quote_icon\":{\"value\":\"jki jki-quote-light\",\"library\":\"jkiticon\"},\"sg_layout_image_position\":\"below\",\"st_layout_background_background_background\":\"classic\",\"st_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position\":\"\",\"st_quote_override_position_top_responsive\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"st_quote_override_position_left_responsive\":{\"unit\":\"px\",\"size\":442,\"sizes\":[]},\"st_client_name_normal_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_quote_normal_font_size_responsive\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"st_client_image_margin_responsive\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_rating_font_size_responsive\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"st_rating_margin_right_responsive\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_setting_slide_show_responsive_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"st_wrapper_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position_top_responsive_tablet\":{\"unit\":\"px\",\"size\":249,\"sizes\":[]},\"st_quote_override_position_top_responsive_mobile\":{\"unit\":\"px\",\"size\":193,\"sizes\":[]},\"st_quote_override_position_left_responsive_tablet\":{\"unit\":\"px\",\"size\":265,\"sizes\":[]},\"st_quote_override_position_left_responsive_mobile\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]},\"st_quote_normal_font_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"st_description_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_normal_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64afd05f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"746d276b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30338dfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f950be4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ca735b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5d6ca3ad\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_title_hover_color_responsive\":\"globals\\/colors?id=secondary\",\"st_readmore_hover_color_responsive\":\"globals\\/colors?id=secondary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#646974\",\"st_excerpt_color_responsive\":\"#646974\",\"st_title_normal_color_responsive\":\"#272B36\",\"st_thumbnail_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_title_hover_color_responsive\":\"#FA8D25\",\"st_readmore_normal_color_responsive\":\"#FA8D25\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":false}],\"isInner\":false}]'),(1129,204,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1130,204,'_elementor_css','a:6:{s:4:\"time\";i:1721832034;s:5:\"fonts\";a:1:{i:0;s:5:\"Inter\";}s:5:\"icons\";a:3:{i:0;s:0:\"\";i:1;s:8:\"jkiticon\";i:3;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1132,205,'_elementor_edit_mode','builder'),(1133,205,'_elementor_template_type','wp-page'),(1134,205,'_elementor_version','3.23.2'),(1135,205,'_wp_page_template','default'),(1136,205,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1137,205,'_elementor_data','[{\"id\":\"35495243\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"Eldery male gardener using scissors for bushes\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"160\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0,\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_size_tablet\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"top center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00160E\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b\":\"#00000054\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_slideshow_gallery\":[{\"id\":154,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-02-5.jpg\"},{\"id\":155,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-03-3.jpg\"},{\"id\":156,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-04-3.jpg\"},{\"id\":157,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-01-5.jpg\"}]},\"elements\":[{\"id\":\"739a26d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":65,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=06a34e7\"}},\"elements\":[{\"id\":\"132d1a8e\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Complete For All\",\"sg_title_focused\":\" Landscape \",\"sg_title_after\":\" Service And Maintenance\",\"sg_title_html_tag\":\"h1\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=primary\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"7c49583a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"635cb25b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"23cf340e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37.85499999999999687361196265555918216705322265625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":48,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"1c4c950d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4768b6f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":62.14500000000000312638803734444081783294677734375,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"flex-start\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":52,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"34c0badb\",\"elType\":\"widget\",\"settings\":{\"sg_video_button_title\":\"Play Video\",\"sg_video_button_icon\":{\"value\":\"jki jki-play\",\"library\":\"jkiticon\"},\"sg_video_url\":\"#\",\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_width_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_line_height_responsive\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#FFD402\",\"st_button_normal_glow_color_responsive\":\"#00694361\",\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"_element_width\":\"auto\",\"__globals__\":{\"st_button_normal_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=accent\",\"st_border_normal_border_border_color\":\"\",\"st_button_hover_text_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_glow_color_responsive\":\"\"},\"st_button_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_button_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_width_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_line_height_responsive_mobile\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"st_border_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_border_normal_border_border_color\":\"#FFD027\",\"st_button_line_height_responsive_tablet\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"st_button_normal_background_background_color\":\"#006943\",\"st_button_hover_text_color_responsive\":\"#006943\",\"st_button_hover_background_background_color\":\"#FFD402\",\"sg_video_auto_play\":\"\",\"sg_video_mute\":\"\"},\"elements\":[],\"widgetType\":\"jkit_video_button\"},{\"id\":\"232ec8da\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Intro\",\"align\":\"right\",\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"hide_mobile\":\"hidden-mobile\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#00160E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49b348ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"edc2dbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.00200000000000244426701101474463939666748046875,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e2246bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Prestige Luxury Cleanings LLC\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"139cc45f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Landscaping And Garden Care Services\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dc78e71\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"597dc67d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"26cf3840\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b19bda0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":167,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"980\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a46c929\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c4d8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Public Liability Insurance\",\"_id\":\"a978734\"},{\"text\":\"Environmentally Friendly\",\"_id\":\"1cd10a1\"},{\"text\":\"On Time, Every Time\",\"_id\":\"c6767db\"},{\"text\":\"Beautiful Garden Designs\",\"_id\":\"d4743f4\"},{\"text\":\"Modern Machinery And Tool\",\"_id\":\"535c17d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"398321ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4c7c15d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.9129999999999967030817060731351375579833984375,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5683e90d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":162,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"860\",\"height\":\"980\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b6190b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":163,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"-59\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"250636f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"713aa588\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"51a71b71\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#00160E\",\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=primary\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=06a34e7\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"st_content_title_color_responsive\":\"#7F7F7F\",\"st_super_color_responsive\":\"#FFD402\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\",\"sg_setting_html_tag\":\"span\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5557874f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"73847855\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":174,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/garden-maintenance-performed-by-pro-gardener-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"b1058a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":224,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":478,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":325,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"69098afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"40\",\"bottom\":\"80\",\"left\":\"40\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"7cb7bf82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91cb5d9\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26358abf\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Have The Perfect Solution For Your Landscape Problems\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15a36cc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42c8d36c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7114454f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76f24ca8\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Variation Gardening\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"138cc39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28a78a06\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Expert Landscapers\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c5ac2bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38fdb183\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3ce0b95b\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Affordable Price\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-save-money-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4c80f133\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7451fb11\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Free Consultation\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-Consultancy-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e93f2c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"39a46e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6773b2a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"87647bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find The Best Service For Your Garden\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e2cc66e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30164d28\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e8639b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":142,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-services.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fa92c14\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2c434fb3\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"5abe2e18\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33425b9f\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Lawn Services\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"472ed309\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"67cb221c\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37c1cce6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":143,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/driveway-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b3e60ba\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3b291bbf\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"20b91942\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5649f719\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Driveway Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6300b69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"256ddf68\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3735f0b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":144,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/deck-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"741128a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3691562\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3c8a0e6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5eb1b3b9\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Deck Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"25f37292\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"61c9ff8e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d41e618\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"8781ee3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":145,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/weed-control.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd84c7d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"14f7965\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fb2459e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0582197\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Weed Control \",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"f7b0fa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0197d9e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f3de9c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":146,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/grass-feed.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"75ba950\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"23edbf4\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"ad70b3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1c4ac7\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Grass Feed\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6f592ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0043a3b\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e6d8a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":147,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/edging-Cleaning.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd233da\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6535a16\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"937e2e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7aee\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Edging Cleaning\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"d9723d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"c908972\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"790dd775\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"360\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"160\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"140\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"background_overlay_color_b\":\"#000414\",\"background_overlay_image\":{\"id\":186,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/a-gardener-watering-plants-in-a-flowerbed-2RT8DWL-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]}},\"elements\":[{\"id\":\"a2ed5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7e37f762\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Landscaping\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a092069\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d5099\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need Someone To Take Care Your Garden & Lawn?\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=07ee36d\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1198756c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"66521a56\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":20,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":4},\"elements\":[{\"id\":\"1a89d099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.5090000000000003410605131648480892181396484375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"id\":191,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/happy-gardeners-with-plants-and-lawn-mower-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"space-between\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_color\":\"#FFFFFF00\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":9,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"46b821c1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":219,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":183,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"449971a9\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Make Appointment & Take Care Your Garden\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=secondary\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=93191b3\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_content_title_color_hover_responsive\":\"#FFFFFF\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#FFFFFF\",\"st_icon_color_responsive\":\"#00E5CC\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#00E5CC\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":false},{\"id\":\"13747b6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.4909999999999996589394868351519107818603515625,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a13f42e\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"178***1721830795182\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fde8487\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"59883b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1617542a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Process\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29c7aa96\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Complete Every Step Carefully\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ced0d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d62463d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18cf7834\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"41f79872\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-consult-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consultation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65e1b761\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"span\",\"title_color\":\"#FFD402\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#006943\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12cdbf13\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4175d29\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-pencil_art-light\",\"library\":\"jkiticon\"},\"title_text\":\"Design Installation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2adabf01\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b628\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"569b3221\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consturction \",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"67d6b2e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6fff79c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53c9a76e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"title_text\":\"Finished Work\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"555aace0\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d57540b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"71\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardening-background-with-garden-tolls-A9BGNJU.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]}},\"elements\":[{\"id\":\"147831a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"5a53d120\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"20\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Years of Experience\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"488f4727\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"6b8f6eae\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"76666759\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f532f9e\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"2850\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Happy Customers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"265fd738\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5473dc22\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"64\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Expert Landscapers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b38731e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4945f2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"627cd42c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65e3182\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.56499999999999772626324556767940521240234375},\"elements\":[{\"id\":\"43108b53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Projects\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45328989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Project We Have Done\\n\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"f382082\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.49900000000000233058017329312860965728759765625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":40,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"55ecfb57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"67afcbfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.0330000000000012505552149377763271331787109375,\"_inline_size_tablet\":23,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4989aa04\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Projects\",\"align\":\"right\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"left\",\"hover_animation\":\"float\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"32515d84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"3f5753f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"21982cfb\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":195,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/build-backyard.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Cutting Leaf\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"404dc561\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"58d29b54\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":197,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Home-Garden.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Home Garden\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"3bff1dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"3c24185a\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":195,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/build-backyard.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Build Backyard\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_image_height_responsive_tablet\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b3cb58d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_image\":{\"id\":201,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-moving-aerial-photo-Z8KDGJ9-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_color\":\"#0000007D\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]}},\"elements\":[{\"id\":\"79705206\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"51c9a732\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73b2fe0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"What They Says About Us\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4876e632\",\"elType\":\"widget\",\"settings\":{\"sg_layout_testimonial_choose\":\"style-2\",\"sg_testimonials_image_size_imagesize_size\":\"medium\",\"sg_testimonials_list\":[{\"sg_testimonials_list_client_avatar\":{\"id\":\"75\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/3SUMAU.jpg\"},\"_id\":\"6e9b2e1\",\"sg_testimonials_list_client_name\":\"Regan Traynor\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"76\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/CASCKD8.jpg\"},\"sg_testimonials_list_client_name\":\"Maisha Dunn\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"d069a43\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"77\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/MKLVKTE.jpg\"},\"sg_testimonials_list_client_name\":\"Reis Leonard\",\"sg_testimonials_list_designation\":\"Businessman\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"05c24f5\"}],\"st_wrapper_alignment_responsive\":\"left\",\"st_client_name_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_description_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_client_name_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_client_designation_normal_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_client_designation_normal_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=d343bdf\",\"st_rating_color_responsive\":\"\",\"st_client_name_normal_color_responsive\":\"\",\"st_quote_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_layout_background_background_color\":\"\"},\"st_layout_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_layout_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_wrapper_fix_height\":\"\",\"sg_setting_autoplay\":\"yes\",\"sg_setting_autoplay_pause\":\"\",\"sg_setting_arrow\":\"\",\"sg_setting_arrow_position\":\"middle-edge\",\"sg_setting_dots\":\"\",\"sg_setting_quote\":\"yes\",\"sg_setting_rating\":\"\",\"st_layout_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_layout_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_slide_show_responsive\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"sg_setting_quote_icon\":{\"value\":\"jki jki-quote-light\",\"library\":\"jkiticon\"},\"sg_layout_image_position\":\"below\",\"st_layout_background_background_background\":\"classic\",\"st_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position\":\"\",\"st_quote_override_position_top_responsive\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"st_quote_override_position_left_responsive\":{\"unit\":\"px\",\"size\":442,\"sizes\":[]},\"st_client_name_normal_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_quote_normal_font_size_responsive\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"st_client_image_margin_responsive\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_rating_font_size_responsive\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"st_rating_margin_right_responsive\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_setting_slide_show_responsive_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"st_wrapper_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position_top_responsive_tablet\":{\"unit\":\"px\",\"size\":249,\"sizes\":[]},\"st_quote_override_position_top_responsive_mobile\":{\"unit\":\"px\",\"size\":193,\"sizes\":[]},\"st_quote_override_position_left_responsive_tablet\":{\"unit\":\"px\",\"size\":265,\"sizes\":[]},\"st_quote_override_position_left_responsive_mobile\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]},\"st_quote_normal_font_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"st_description_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_normal_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64afd05f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"746d276b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30338dfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f950be4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ca735b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5d6ca3ad\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_title_hover_color_responsive\":\"globals\\/colors?id=secondary\",\"st_readmore_hover_color_responsive\":\"globals\\/colors?id=secondary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#646974\",\"st_excerpt_color_responsive\":\"#646974\",\"st_title_normal_color_responsive\":\"#272B36\",\"st_thumbnail_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_title_hover_color_responsive\":\"#FA8D25\",\"st_readmore_normal_color_responsive\":\"#FA8D25\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":false}],\"isInner\":false}]'),(1138,205,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1139,205,'_elementor_css','a:6:{s:4:\"time\";i:1721832527;s:5:\"fonts\";a:1:{i:0;s:5:\"Inter\";}s:5:\"icons\";a:3:{i:0;s:0:\"\";i:1;s:8:\"jkiticon\";i:3;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1140,206,'_elementor_edit_mode','builder'),(1141,206,'_elementor_template_type','wp-page'),(1142,206,'_elementor_version','3.23.2'),(1143,206,'_wp_page_template','default'),(1144,206,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1145,206,'_elementor_data','[{\"id\":\"35495243\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"Eldery male gardener using scissors for bushes\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"160\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0,\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_size_tablet\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"top center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00160E\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b\":\"#00000054\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_slideshow_gallery\":[{\"id\":154,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-02-5.jpg\"},{\"id\":155,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-03-3.jpg\"},{\"id\":156,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-04-3.jpg\"},{\"id\":157,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-01-5.jpg\"}]},\"elements\":[{\"id\":\"739a26d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":65,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=06a34e7\"}},\"elements\":[{\"id\":\"132d1a8e\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Complete For All\",\"sg_title_focused\":\" Landscape \",\"sg_title_after\":\" Service And Maintenance\",\"sg_title_html_tag\":\"h1\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=primary\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"7c49583a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"635cb25b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"23cf340e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37.85499999999999687361196265555918216705322265625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":48,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"1c4c950d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4768b6f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":62.14500000000000312638803734444081783294677734375,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"flex-start\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":52,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"34c0badb\",\"elType\":\"widget\",\"settings\":{\"sg_video_button_title\":\"Play Video\",\"sg_video_button_icon\":{\"value\":\"jki jki-play\",\"library\":\"jkiticon\"},\"sg_video_url\":\"#\",\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_width_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_line_height_responsive\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#FFD402\",\"st_button_normal_glow_color_responsive\":\"#00694361\",\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"_element_width\":\"auto\",\"__globals__\":{\"st_button_normal_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=accent\",\"st_border_normal_border_border_color\":\"\",\"st_button_hover_text_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_glow_color_responsive\":\"\"},\"st_button_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_button_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_width_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_line_height_responsive_mobile\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"st_border_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_border_normal_border_border_color\":\"#FFD027\",\"st_button_line_height_responsive_tablet\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"st_button_normal_background_background_color\":\"#006943\",\"st_button_hover_text_color_responsive\":\"#006943\",\"st_button_hover_background_background_color\":\"#FFD402\",\"sg_video_auto_play\":\"\",\"sg_video_mute\":\"\"},\"elements\":[],\"widgetType\":\"jkit_video_button\"},{\"id\":\"232ec8da\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Intro\",\"align\":\"right\",\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"hide_mobile\":\"hidden-mobile\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#00160E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49b348ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"edc2dbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.00200000000000244426701101474463939666748046875,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e2246bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Prestige Luxury Cleanings LLC\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"139cc45f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Landscaping And Garden Care Services\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dc78e71\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"597dc67d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"26cf3840\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b19bda0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":167,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"980\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a46c929\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c4d8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Public Liability Insurance\",\"_id\":\"a978734\"},{\"text\":\"Environmentally Friendly\",\"_id\":\"1cd10a1\"},{\"text\":\"On Time, Every Time\",\"_id\":\"c6767db\"},{\"text\":\"Beautiful Garden Designs\",\"_id\":\"d4743f4\"},{\"text\":\"Modern Machinery And Tool\",\"_id\":\"535c17d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"398321ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4c7c15d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.9129999999999967030817060731351375579833984375,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5683e90d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":162,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"860\",\"height\":\"980\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b6190b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":163,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"-59\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"250636f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"713aa588\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"51a71b71\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#00160E\",\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=primary\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=06a34e7\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"st_content_title_color_responsive\":\"#7F7F7F\",\"st_super_color_responsive\":\"#FFD402\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\",\"sg_setting_html_tag\":\"span\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5557874f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"73847855\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":174,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/garden-maintenance-performed-by-pro-gardener-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"b1058a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":224,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":478,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":325,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"69098afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"40\",\"bottom\":\"80\",\"left\":\"40\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"7cb7bf82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91cb5d9\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26358abf\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Have The Perfect Solution For Your Landscape Problems\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15a36cc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42c8d36c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7114454f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76f24ca8\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Variation Gardening\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"138cc39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28a78a06\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Expert Landscapers\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c5ac2bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38fdb183\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3ce0b95b\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Affordable Price\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-save-money-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4c80f133\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7451fb11\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Free Consultation\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-Consultancy-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e93f2c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"39a46e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6773b2a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"87647bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find The Best Service For Your Garden\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e2cc66e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30164d28\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e8639b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":142,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-services.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fa92c14\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2c434fb3\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"5abe2e18\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33425b9f\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Lawn Services\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"472ed309\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"67cb221c\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37c1cce6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":143,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/driveway-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b3e60ba\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3b291bbf\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"20b91942\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5649f719\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Driveway Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6300b69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"256ddf68\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3735f0b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":144,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/deck-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"741128a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3691562\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3c8a0e6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5eb1b3b9\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Deck Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"25f37292\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"61c9ff8e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d41e618\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"8781ee3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":145,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/weed-control.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd84c7d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"14f7965\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fb2459e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0582197\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Weed Control \",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"f7b0fa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0197d9e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f3de9c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":146,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/grass-feed.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"75ba950\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"23edbf4\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"ad70b3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1c4ac7\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Grass Feed\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6f592ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0043a3b\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e6d8a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":147,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/edging-Cleaning.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd233da\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6535a16\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"937e2e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7aee\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Edging Cleaning\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"d9723d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"c908972\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"790dd775\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"360\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"160\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"140\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"background_overlay_color_b\":\"#000414\",\"background_overlay_image\":{\"id\":186,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/a-gardener-watering-plants-in-a-flowerbed-2RT8DWL-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]}},\"elements\":[{\"id\":\"a2ed5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7e37f762\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Landscaping\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a092069\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d5099\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need Someone To Take Care Your Garden & Lawn?\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=07ee36d\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1198756c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"66521a56\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":20,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":4},\"elements\":[{\"id\":\"1a89d099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.5090000000000003410605131648480892181396484375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"id\":191,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/happy-gardeners-with-plants-and-lawn-mower-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"space-between\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_color\":\"#FFFFFF00\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":9,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"46b821c1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":219,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":183,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"449971a9\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Make Appointment & Take Care Your Garden\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=secondary\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=93191b3\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_content_title_color_hover_responsive\":\"#FFFFFF\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#FFFFFF\",\"st_icon_color_responsive\":\"#00E5CC\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#00E5CC\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":false},{\"id\":\"13747b6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.4909999999999996589394868351519107818603515625,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a13f42e\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"178***1721830795182\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fde8487\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"59883b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1617542a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Process\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29c7aa96\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Complete Every Step Carefully\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ced0d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d62463d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18cf7834\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"41f79872\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-consult-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consultation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65e1b761\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"span\",\"title_color\":\"#FFD402\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#006943\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12cdbf13\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4175d29\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-pencil_art-light\",\"library\":\"jkiticon\"},\"title_text\":\"Design Installation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2adabf01\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b628\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"569b3221\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consturction \",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"67d6b2e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6fff79c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53c9a76e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"title_text\":\"Finished Work\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"555aace0\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d57540b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"71\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardening-background-with-garden-tolls-A9BGNJU.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]}},\"elements\":[{\"id\":\"147831a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"5a53d120\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"20\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Years of Experience\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"488f4727\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"6b8f6eae\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"76666759\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f532f9e\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"2850\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Happy Customers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"265fd738\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5473dc22\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"64\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Expert Landscapers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b38731e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4945f2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"627cd42c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65e3182\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.56499999999999772626324556767940521240234375},\"elements\":[{\"id\":\"43108b53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Projects\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45328989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Project We Have Done\\n\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"f382082\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.49900000000000233058017329312860965728759765625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":40,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"55ecfb57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"67afcbfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.0330000000000012505552149377763271331787109375,\"_inline_size_tablet\":23,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4989aa04\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Projects\",\"align\":\"right\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"left\",\"hover_animation\":\"float\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"32515d84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"3f5753f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"21982cfb\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":195,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/build-backyard.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Cutting Leaf\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"404dc561\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"58d29b54\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":197,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Home-Garden.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Home Garden\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"3bff1dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"3c24185a\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":195,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/build-backyard.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Build Backyard\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_image_height_responsive_tablet\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b3cb58d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_image\":{\"id\":201,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-moving-aerial-photo-Z8KDGJ9-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_color\":\"#0000007D\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]}},\"elements\":[{\"id\":\"79705206\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"51c9a732\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73b2fe0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"What They Says About Us\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4876e632\",\"elType\":\"widget\",\"settings\":{\"sg_layout_testimonial_choose\":\"style-2\",\"sg_testimonials_image_size_imagesize_size\":\"medium\",\"sg_testimonials_list\":[{\"sg_testimonials_list_client_avatar\":{\"id\":\"75\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/3SUMAU.jpg\"},\"_id\":\"6e9b2e1\",\"sg_testimonials_list_client_name\":\"Regan Traynor\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"76\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/CASCKD8.jpg\"},\"sg_testimonials_list_client_name\":\"Maisha Dunn\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"d069a43\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"77\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/MKLVKTE.jpg\"},\"sg_testimonials_list_client_name\":\"Reis Leonard\",\"sg_testimonials_list_designation\":\"Businessman\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"05c24f5\"}],\"st_wrapper_alignment_responsive\":\"left\",\"st_client_name_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_description_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_client_name_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_client_designation_normal_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_client_designation_normal_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=d343bdf\",\"st_rating_color_responsive\":\"\",\"st_client_name_normal_color_responsive\":\"\",\"st_quote_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_layout_background_background_color\":\"\"},\"st_layout_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_layout_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_wrapper_fix_height\":\"\",\"sg_setting_autoplay\":\"yes\",\"sg_setting_autoplay_pause\":\"\",\"sg_setting_arrow\":\"\",\"sg_setting_arrow_position\":\"middle-edge\",\"sg_setting_dots\":\"\",\"sg_setting_quote\":\"yes\",\"sg_setting_rating\":\"\",\"st_layout_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_layout_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_slide_show_responsive\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"sg_setting_quote_icon\":{\"value\":\"jki jki-quote-light\",\"library\":\"jkiticon\"},\"sg_layout_image_position\":\"below\",\"st_layout_background_background_background\":\"classic\",\"st_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position\":\"\",\"st_quote_override_position_top_responsive\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"st_quote_override_position_left_responsive\":{\"unit\":\"px\",\"size\":442,\"sizes\":[]},\"st_client_name_normal_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_quote_normal_font_size_responsive\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"st_client_image_margin_responsive\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_rating_font_size_responsive\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"st_rating_margin_right_responsive\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_setting_slide_show_responsive_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"st_wrapper_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position_top_responsive_tablet\":{\"unit\":\"px\",\"size\":249,\"sizes\":[]},\"st_quote_override_position_top_responsive_mobile\":{\"unit\":\"px\",\"size\":193,\"sizes\":[]},\"st_quote_override_position_left_responsive_tablet\":{\"unit\":\"px\",\"size\":265,\"sizes\":[]},\"st_quote_override_position_left_responsive_mobile\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]},\"st_quote_normal_font_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"st_description_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_normal_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64afd05f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"746d276b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30338dfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f950be4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ca735b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5d6ca3ad\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_title_hover_color_responsive\":\"globals\\/colors?id=secondary\",\"st_readmore_hover_color_responsive\":\"globals\\/colors?id=secondary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#646974\",\"st_excerpt_color_responsive\":\"#646974\",\"st_title_normal_color_responsive\":\"#272B36\",\"st_thumbnail_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_title_hover_color_responsive\":\"#FA8D25\",\"st_readmore_normal_color_responsive\":\"#FA8D25\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":false}],\"isInner\":false}]'),(1146,206,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1147,206,'_elementor_css','a:6:{s:4:\"time\";i:1721832527;s:5:\"fonts\";a:1:{i:0;s:5:\"Inter\";}s:5:\"icons\";a:3:{i:0;s:0:\"\";i:1;s:8:\"jkiticon\";i:3;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1148,207,'_elementor_edit_mode','builder'),(1149,207,'_elementor_template_type','wp-page'),(1150,207,'_elementor_version','3.23.2'),(1151,207,'_wp_page_template','default'),(1152,207,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1153,207,'_elementor_data','[{\"id\":\"35495243\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"Eldery male gardener using scissors for bushes\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"160\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0,\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_size_tablet\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"top center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00160E\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b\":\"#00000054\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_slideshow_gallery\":[{\"id\":154,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-02-5.jpg\"},{\"id\":155,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-03-3.jpg\"},{\"id\":156,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-04-3.jpg\"},{\"id\":157,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-01-5.jpg\"}]},\"elements\":[{\"id\":\"739a26d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":65,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=06a34e7\"}},\"elements\":[{\"id\":\"132d1a8e\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Complete For All\",\"sg_title_focused\":\" Landscape \",\"sg_title_after\":\" Service And Maintenance\",\"sg_title_html_tag\":\"h1\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=primary\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"7c49583a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"635cb25b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"23cf340e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37.85499999999999687361196265555918216705322265625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":48,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"1c4c950d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4768b6f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":62.14500000000000312638803734444081783294677734375,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"flex-start\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":52,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"34c0badb\",\"elType\":\"widget\",\"settings\":{\"sg_video_button_title\":\"Play Video\",\"sg_video_button_icon\":{\"value\":\"jki jki-play\",\"library\":\"jkiticon\"},\"sg_video_url\":\"#\",\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_width_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_line_height_responsive\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#FFD402\",\"st_button_normal_glow_color_responsive\":\"#00694361\",\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"_element_width\":\"auto\",\"__globals__\":{\"st_button_normal_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=accent\",\"st_border_normal_border_border_color\":\"\",\"st_button_hover_text_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_glow_color_responsive\":\"\"},\"st_button_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_button_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_width_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_line_height_responsive_mobile\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"st_border_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_border_normal_border_border_color\":\"#FFD027\",\"st_button_line_height_responsive_tablet\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"st_button_normal_background_background_color\":\"#006943\",\"st_button_hover_text_color_responsive\":\"#006943\",\"st_button_hover_background_background_color\":\"#FFD402\",\"sg_video_auto_play\":\"\",\"sg_video_mute\":\"\"},\"elements\":[],\"widgetType\":\"jkit_video_button\"},{\"id\":\"232ec8da\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Intro\",\"align\":\"right\",\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"hide_mobile\":\"hidden-mobile\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#00160E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49b348ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"edc2dbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.00200000000000244426701101474463939666748046875,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e2246bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Prestige Luxury Cleanings LLC\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"139cc45f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Landscaping And Garden Care Services\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dc78e71\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"597dc67d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"26cf3840\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b19bda0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":167,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"980\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a46c929\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c4d8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Public Liability Insurance\",\"_id\":\"a978734\"},{\"text\":\"Environmentally Friendly\",\"_id\":\"1cd10a1\"},{\"text\":\"On Time, Every Time\",\"_id\":\"c6767db\"},{\"text\":\"Beautiful Garden Designs\",\"_id\":\"d4743f4\"},{\"text\":\"Modern Machinery And Tool\",\"_id\":\"535c17d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"398321ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4c7c15d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.9129999999999967030817060731351375579833984375,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5683e90d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":162,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"860\",\"height\":\"980\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b6190b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":163,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"-59\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"250636f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"713aa588\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"51a71b71\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#00160E\",\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=primary\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=06a34e7\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"st_content_title_color_responsive\":\"#7F7F7F\",\"st_super_color_responsive\":\"#FFD402\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\",\"sg_setting_html_tag\":\"span\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5557874f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"73847855\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":174,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/garden-maintenance-performed-by-pro-gardener-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"b1058a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":224,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":478,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":325,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"69098afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"40\",\"bottom\":\"80\",\"left\":\"40\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"7cb7bf82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91cb5d9\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26358abf\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Have The Perfect Solution For Your Landscape Problems\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15a36cc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42c8d36c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7114454f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76f24ca8\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Variation Gardening\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"138cc39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28a78a06\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Expert Landscapers\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c5ac2bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38fdb183\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3ce0b95b\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Affordable Price\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-save-money-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4c80f133\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7451fb11\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Free Consultation\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-Consultancy-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e93f2c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"39a46e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6773b2a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"87647bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find The Best Service For Your Garden\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e2cc66e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30164d28\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e8639b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":142,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-services.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fa92c14\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2c434fb3\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"5abe2e18\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33425b9f\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Lawn Services\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"472ed309\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"67cb221c\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37c1cce6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":143,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/driveway-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b3e60ba\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3b291bbf\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"20b91942\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5649f719\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Driveway Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6300b69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"256ddf68\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3735f0b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":144,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/deck-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"741128a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3691562\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3c8a0e6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5eb1b3b9\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Deck Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"25f37292\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"61c9ff8e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d41e618\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"8781ee3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":145,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/weed-control.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd84c7d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"14f7965\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fb2459e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0582197\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Weed Control \",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"f7b0fa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0197d9e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f3de9c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":146,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/grass-feed.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"75ba950\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"23edbf4\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"ad70b3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1c4ac7\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Grass Feed\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6f592ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0043a3b\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e6d8a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":147,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/edging-Cleaning.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd233da\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6535a16\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"937e2e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7aee\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Edging Cleaning\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"d9723d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"c908972\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"790dd775\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"360\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"160\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"140\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"background_overlay_color_b\":\"#000414\",\"background_overlay_image\":{\"id\":186,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/a-gardener-watering-plants-in-a-flowerbed-2RT8DWL-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]}},\"elements\":[{\"id\":\"a2ed5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7e37f762\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Landscaping\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a092069\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d5099\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need Someone To Take Care Your Garden & Lawn?\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=07ee36d\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1198756c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"66521a56\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":20,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":4},\"elements\":[{\"id\":\"1a89d099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.5090000000000003410605131648480892181396484375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"id\":191,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/happy-gardeners-with-plants-and-lawn-mower-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"space-between\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_color\":\"#FFFFFF00\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":9,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"46b821c1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":219,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":183,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"449971a9\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Make Appointment & Take Care Your Garden\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=secondary\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=93191b3\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_content_title_color_hover_responsive\":\"#FFFFFF\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#FFFFFF\",\"st_icon_color_responsive\":\"#00E5CC\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#00E5CC\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":false},{\"id\":\"13747b6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.4909999999999996589394868351519107818603515625,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a13f42e\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"178***1721830795182\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fde8487\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"59883b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1617542a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Process\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29c7aa96\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Complete Every Step Carefully\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ced0d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d62463d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18cf7834\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"41f79872\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-consult-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consultation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65e1b761\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"span\",\"title_color\":\"#FFD402\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#006943\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12cdbf13\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4175d29\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-pencil_art-light\",\"library\":\"jkiticon\"},\"title_text\":\"Design Installation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2adabf01\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b628\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"569b3221\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consturction \",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"67d6b2e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6fff79c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53c9a76e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"title_text\":\"Finished Work\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"555aace0\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d57540b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"71\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardening-background-with-garden-tolls-A9BGNJU.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]}},\"elements\":[{\"id\":\"147831a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"5a53d120\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"20\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Years of Experience\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"488f4727\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"6b8f6eae\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"76666759\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f532f9e\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"2850\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Happy Customers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"265fd738\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5473dc22\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"64\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Expert Landscapers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b38731e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4945f2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"627cd42c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65e3182\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.56499999999999772626324556767940521240234375},\"elements\":[{\"id\":\"43108b53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Projects\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45328989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Project We Have Done\\n\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"f382082\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.49900000000000233058017329312860965728759765625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":40,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"55ecfb57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"67afcbfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.0330000000000012505552149377763271331787109375,\"_inline_size_tablet\":23,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4989aa04\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Projects\",\"align\":\"right\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"left\",\"hover_animation\":\"float\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"32515d84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"3f5753f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"21982cfb\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":196,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Cutting-Leaf.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Cutting Leaf\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"404dc561\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"58d29b54\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":197,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Home-Garden.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Home Garden\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"3bff1dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"3c24185a\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":195,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/build-backyard.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Build Backyard\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_image_height_responsive_tablet\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b3cb58d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_image\":{\"id\":201,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-moving-aerial-photo-Z8KDGJ9-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_color\":\"#0000007D\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]}},\"elements\":[{\"id\":\"79705206\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"51c9a732\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73b2fe0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"What They Says About Us\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4876e632\",\"elType\":\"widget\",\"settings\":{\"sg_layout_testimonial_choose\":\"style-2\",\"sg_testimonials_image_size_imagesize_size\":\"medium\",\"sg_testimonials_list\":[{\"sg_testimonials_list_client_avatar\":{\"id\":\"75\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/3SUMAU.jpg\"},\"_id\":\"6e9b2e1\",\"sg_testimonials_list_client_name\":\"Regan Traynor\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"76\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/CASCKD8.jpg\"},\"sg_testimonials_list_client_name\":\"Maisha Dunn\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"d069a43\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"77\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/MKLVKTE.jpg\"},\"sg_testimonials_list_client_name\":\"Reis Leonard\",\"sg_testimonials_list_designation\":\"Businessman\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"05c24f5\"}],\"st_wrapper_alignment_responsive\":\"left\",\"st_client_name_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_description_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_client_name_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_client_designation_normal_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_client_designation_normal_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=d343bdf\",\"st_rating_color_responsive\":\"\",\"st_client_name_normal_color_responsive\":\"\",\"st_quote_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_layout_background_background_color\":\"\"},\"st_layout_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_layout_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_wrapper_fix_height\":\"\",\"sg_setting_autoplay\":\"yes\",\"sg_setting_autoplay_pause\":\"\",\"sg_setting_arrow\":\"\",\"sg_setting_arrow_position\":\"middle-edge\",\"sg_setting_dots\":\"\",\"sg_setting_quote\":\"yes\",\"sg_setting_rating\":\"\",\"st_layout_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_layout_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_slide_show_responsive\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"sg_setting_quote_icon\":{\"value\":\"jki jki-quote-light\",\"library\":\"jkiticon\"},\"sg_layout_image_position\":\"below\",\"st_layout_background_background_background\":\"classic\",\"st_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position\":\"\",\"st_quote_override_position_top_responsive\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"st_quote_override_position_left_responsive\":{\"unit\":\"px\",\"size\":442,\"sizes\":[]},\"st_client_name_normal_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_quote_normal_font_size_responsive\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"st_client_image_margin_responsive\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_rating_font_size_responsive\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"st_rating_margin_right_responsive\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_setting_slide_show_responsive_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"st_wrapper_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position_top_responsive_tablet\":{\"unit\":\"px\",\"size\":249,\"sizes\":[]},\"st_quote_override_position_top_responsive_mobile\":{\"unit\":\"px\",\"size\":193,\"sizes\":[]},\"st_quote_override_position_left_responsive_tablet\":{\"unit\":\"px\",\"size\":265,\"sizes\":[]},\"st_quote_override_position_left_responsive_mobile\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]},\"st_quote_normal_font_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"st_description_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_normal_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64afd05f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"746d276b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30338dfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f950be4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ca735b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5d6ca3ad\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_title_hover_color_responsive\":\"globals\\/colors?id=secondary\",\"st_readmore_hover_color_responsive\":\"globals\\/colors?id=secondary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#646974\",\"st_excerpt_color_responsive\":\"#646974\",\"st_title_normal_color_responsive\":\"#272B36\",\"st_thumbnail_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_title_hover_color_responsive\":\"#FA8D25\",\"st_readmore_normal_color_responsive\":\"#FA8D25\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":false}],\"isInner\":false}]'),(1154,207,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1155,207,'_elementor_css','a:6:{s:4:\"time\";i:1721832527;s:5:\"fonts\";a:1:{i:0;s:5:\"Inter\";}s:5:\"icons\";a:3:{i:0;s:0:\"\";i:1;s:8:\"jkiticon\";i:3;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1156,208,'_elementor_edit_mode','builder'),(1157,208,'_elementor_template_type','wp-page'),(1158,208,'_elementor_version','3.23.2'),(1159,208,'_wp_page_template','default'),(1160,208,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'); INSERT INTO `victorq_postmeta` VALUES (1161,208,'_elementor_data','[{\"id\":\"35495243\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"Eldery male gardener using scissors for bushes\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"160\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0,\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_size_tablet\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"top center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00160E\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b\":\"#00000054\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_slideshow_gallery\":[{\"id\":154,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-02-5.jpg\"},{\"id\":155,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-03-3.jpg\"},{\"id\":156,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-04-3.jpg\"},{\"id\":157,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-01-5.jpg\"}]},\"elements\":[{\"id\":\"739a26d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":65,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=06a34e7\"}},\"elements\":[{\"id\":\"132d1a8e\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Complete For All\",\"sg_title_focused\":\" Landscape \",\"sg_title_after\":\" Service And Maintenance\",\"sg_title_html_tag\":\"h1\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=primary\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"7c49583a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"635cb25b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"23cf340e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37.85499999999999687361196265555918216705322265625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":48,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"1c4c950d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4768b6f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":62.14500000000000312638803734444081783294677734375,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"flex-start\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":52,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"34c0badb\",\"elType\":\"widget\",\"settings\":{\"sg_video_button_title\":\"Play Video\",\"sg_video_button_icon\":{\"value\":\"jki jki-play\",\"library\":\"jkiticon\"},\"sg_video_url\":\"#\",\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_width_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_line_height_responsive\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#FFD402\",\"st_button_normal_glow_color_responsive\":\"#00694361\",\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"_element_width\":\"auto\",\"__globals__\":{\"st_button_normal_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=accent\",\"st_border_normal_border_border_color\":\"\",\"st_button_hover_text_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_glow_color_responsive\":\"\"},\"st_button_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_button_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_width_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_line_height_responsive_mobile\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"st_border_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_border_normal_border_border_color\":\"#FFD027\",\"st_button_line_height_responsive_tablet\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"st_button_normal_background_background_color\":\"#006943\",\"st_button_hover_text_color_responsive\":\"#006943\",\"st_button_hover_background_background_color\":\"#FFD402\",\"sg_video_auto_play\":\"\",\"sg_video_mute\":\"\"},\"elements\":[],\"widgetType\":\"jkit_video_button\"},{\"id\":\"232ec8da\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Intro\",\"align\":\"right\",\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"hide_mobile\":\"hidden-mobile\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#00160E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49b348ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"edc2dbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.00200000000000244426701101474463939666748046875,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e2246bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Prestige Luxury Cleanings LLC\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"139cc45f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Landscaping And Garden Care Services\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dc78e71\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"597dc67d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"26cf3840\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b19bda0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":167,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"980\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a46c929\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c4d8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Public Liability Insurance\",\"_id\":\"a978734\"},{\"text\":\"Environmentally Friendly\",\"_id\":\"1cd10a1\"},{\"text\":\"On Time, Every Time\",\"_id\":\"c6767db\"},{\"text\":\"Beautiful Garden Designs\",\"_id\":\"d4743f4\"},{\"text\":\"Modern Machinery And Tool\",\"_id\":\"535c17d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"398321ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4c7c15d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.9129999999999967030817060731351375579833984375,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5683e90d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":162,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"860\",\"height\":\"980\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b6190b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":163,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"-59\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"250636f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"713aa588\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"51a71b71\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#00160E\",\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=primary\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=06a34e7\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"st_content_title_color_responsive\":\"#7F7F7F\",\"st_super_color_responsive\":\"#FFD402\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\",\"sg_setting_html_tag\":\"span\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5557874f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"73847855\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":174,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/garden-maintenance-performed-by-pro-gardener-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"b1058a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":224,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":478,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":325,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"69098afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"40\",\"bottom\":\"80\",\"left\":\"40\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"7cb7bf82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91cb5d9\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26358abf\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Have The Perfect Solution For Your Landscape Problems\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15a36cc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42c8d36c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7114454f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76f24ca8\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Variation Gardening\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"138cc39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28a78a06\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Expert Landscapers\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c5ac2bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38fdb183\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3ce0b95b\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Affordable Price\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-save-money-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4c80f133\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7451fb11\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Free Consultation\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-Consultancy-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e93f2c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"39a46e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6773b2a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"87647bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find The Best Service For Your Garden\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e2cc66e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30164d28\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e8639b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":142,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-services.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fa92c14\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2c434fb3\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"5abe2e18\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33425b9f\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Lawn Services\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"472ed309\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"67cb221c\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37c1cce6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":143,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/driveway-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b3e60ba\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3b291bbf\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"20b91942\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5649f719\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Driveway Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6300b69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"256ddf68\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3735f0b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":144,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/deck-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"741128a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3691562\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3c8a0e6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5eb1b3b9\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Deck Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"25f37292\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"61c9ff8e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d41e618\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"8781ee3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":145,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/weed-control.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd84c7d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"14f7965\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fb2459e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0582197\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Weed Control \",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"f7b0fa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0197d9e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f3de9c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":146,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/grass-feed.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"75ba950\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"23edbf4\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"ad70b3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1c4ac7\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Grass Feed\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6f592ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0043a3b\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e6d8a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":147,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/edging-Cleaning.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd233da\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6535a16\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"937e2e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7aee\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Edging Cleaning\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"d9723d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"c908972\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"790dd775\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"360\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"160\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"140\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"background_overlay_color_b\":\"#000414\",\"background_overlay_image\":{\"id\":186,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/a-gardener-watering-plants-in-a-flowerbed-2RT8DWL-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]}},\"elements\":[{\"id\":\"a2ed5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7e37f762\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Landscaping\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a092069\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d5099\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need Someone To Take Care Your Garden & Lawn?\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=07ee36d\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1198756c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"66521a56\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":20,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":4},\"elements\":[{\"id\":\"1a89d099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.5090000000000003410605131648480892181396484375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"id\":191,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/happy-gardeners-with-plants-and-lawn-mower-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"space-between\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_color\":\"#FFFFFF00\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":9,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"46b821c1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":219,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":183,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"449971a9\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Make Appointment & Take Care Your Garden\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=secondary\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=93191b3\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_content_title_color_hover_responsive\":\"#FFFFFF\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#FFFFFF\",\"st_icon_color_responsive\":\"#00E5CC\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#00E5CC\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":false},{\"id\":\"13747b6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.4909999999999996589394868351519107818603515625,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a13f42e\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"178***1721830795182\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fde8487\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"59883b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1617542a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Process\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29c7aa96\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Complete Every Step Carefully\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ced0d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d62463d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18cf7834\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"41f79872\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-consult-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consultation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65e1b761\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"span\",\"title_color\":\"#FFD402\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#006943\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12cdbf13\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4175d29\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-pencil_art-light\",\"library\":\"jkiticon\"},\"title_text\":\"Design Installation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2adabf01\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b628\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"569b3221\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consturction \",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"67d6b2e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6fff79c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53c9a76e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"title_text\":\"Finished Work\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"555aace0\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d57540b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"71\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardening-background-with-garden-tolls-A9BGNJU.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]}},\"elements\":[{\"id\":\"147831a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"5a53d120\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"20\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Years of Experience\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"488f4727\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"6b8f6eae\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"76666759\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f532f9e\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"2850\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Happy Customers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"265fd738\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5473dc22\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"64\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Expert Landscapers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b38731e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4945f2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"627cd42c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65e3182\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.56499999999999772626324556767940521240234375},\"elements\":[{\"id\":\"43108b53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Projects\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45328989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Project We Have Done\\n\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"f382082\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.49900000000000233058017329312860965728759765625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":40,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"55ecfb57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"67afcbfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.0330000000000012505552149377763271331787109375,\"_inline_size_tablet\":23,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4989aa04\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Projects\",\"align\":\"right\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"left\",\"hover_animation\":\"float\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"32515d84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"3f5753f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"21982cfb\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":196,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Cutting-Leaf.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Cutting Leaf\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"404dc561\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"58d29b54\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":197,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Home-Garden.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Home Garden\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"3bff1dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"3c24185a\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":195,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/build-backyard.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Build Backyard\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_image_height_responsive_tablet\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b3cb58d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_image\":{\"id\":201,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-moving-aerial-photo-Z8KDGJ9-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_color\":\"#0000007D\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]}},\"elements\":[{\"id\":\"79705206\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"51c9a732\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73b2fe0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"What They Says About Us\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4876e632\",\"elType\":\"widget\",\"settings\":{\"sg_layout_testimonial_choose\":\"style-2\",\"sg_testimonials_image_size_imagesize_size\":\"medium\",\"sg_testimonials_list\":[{\"sg_testimonials_list_client_avatar\":{\"id\":\"75\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/3SUMAU.jpg\"},\"_id\":\"6e9b2e1\",\"sg_testimonials_list_client_name\":\"Regan Traynor\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"76\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/CASCKD8.jpg\"},\"sg_testimonials_list_client_name\":\"Maisha Dunn\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"d069a43\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"77\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/MKLVKTE.jpg\"},\"sg_testimonials_list_client_name\":\"Reis Leonard\",\"sg_testimonials_list_designation\":\"Businessman\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"05c24f5\"}],\"st_wrapper_alignment_responsive\":\"left\",\"st_client_name_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_description_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_client_name_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_client_designation_normal_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_client_designation_normal_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=d343bdf\",\"st_rating_color_responsive\":\"\",\"st_client_name_normal_color_responsive\":\"\",\"st_quote_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_layout_background_background_color\":\"\"},\"st_layout_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_layout_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_wrapper_fix_height\":\"\",\"sg_setting_autoplay\":\"yes\",\"sg_setting_autoplay_pause\":\"\",\"sg_setting_arrow\":\"\",\"sg_setting_arrow_position\":\"middle-edge\",\"sg_setting_dots\":\"\",\"sg_setting_quote\":\"yes\",\"sg_setting_rating\":\"\",\"st_layout_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_layout_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_slide_show_responsive\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"sg_setting_quote_icon\":{\"value\":\"jki jki-quote-light\",\"library\":\"jkiticon\"},\"sg_layout_image_position\":\"below\",\"st_layout_background_background_background\":\"classic\",\"st_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position\":\"\",\"st_quote_override_position_top_responsive\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"st_quote_override_position_left_responsive\":{\"unit\":\"px\",\"size\":442,\"sizes\":[]},\"st_client_name_normal_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_quote_normal_font_size_responsive\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"st_client_image_margin_responsive\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_rating_font_size_responsive\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"st_rating_margin_right_responsive\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_setting_slide_show_responsive_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"st_wrapper_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position_top_responsive_tablet\":{\"unit\":\"px\",\"size\":249,\"sizes\":[]},\"st_quote_override_position_top_responsive_mobile\":{\"unit\":\"px\",\"size\":193,\"sizes\":[]},\"st_quote_override_position_left_responsive_tablet\":{\"unit\":\"px\",\"size\":265,\"sizes\":[]},\"st_quote_override_position_left_responsive_mobile\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]},\"st_quote_normal_font_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"st_description_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_normal_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64afd05f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"746d276b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30338dfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f950be4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ca735b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5d6ca3ad\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_title_hover_color_responsive\":\"globals\\/colors?id=secondary\",\"st_readmore_hover_color_responsive\":\"globals\\/colors?id=secondary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#646974\",\"st_excerpt_color_responsive\":\"#646974\",\"st_title_normal_color_responsive\":\"#272B36\",\"st_thumbnail_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_title_hover_color_responsive\":\"#FA8D25\",\"st_readmore_normal_color_responsive\":\"#FA8D25\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":false}],\"isInner\":false}]'),(1162,208,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1163,209,'_elementor_edit_mode','builder'),(1164,209,'_elementor_template_type','wp-page'),(1165,209,'_elementor_version','3.23.2'),(1166,209,'_wp_page_template','default'),(1167,209,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1168,209,'_elementor_data','[{\"id\":\"35495243\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"Eldery male gardener using scissors for bushes\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"160\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0,\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_size_tablet\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"top center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00160E\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b\":\"#00000054\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_slideshow_gallery\":[{\"id\":154,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-02-5.jpg\"},{\"id\":155,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-03-3.jpg\"},{\"id\":156,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-04-3.jpg\"},{\"id\":157,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-01-5.jpg\"}]},\"elements\":[{\"id\":\"739a26d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":65,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=06a34e7\"}},\"elements\":[{\"id\":\"132d1a8e\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Complete For All\",\"sg_title_focused\":\" Landscape \",\"sg_title_after\":\" Service And Maintenance\",\"sg_title_html_tag\":\"h1\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=primary\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"7c49583a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"635cb25b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"23cf340e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37.85499999999999687361196265555918216705322265625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":48,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"1c4c950d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4768b6f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":62.14500000000000312638803734444081783294677734375,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"flex-start\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":52,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"34c0badb\",\"elType\":\"widget\",\"settings\":{\"sg_video_button_title\":\"Play Video\",\"sg_video_button_icon\":{\"value\":\"jki jki-play\",\"library\":\"jkiticon\"},\"sg_video_url\":\"#\",\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_width_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_line_height_responsive\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#FFD402\",\"st_button_normal_glow_color_responsive\":\"#00694361\",\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"_element_width\":\"auto\",\"__globals__\":{\"st_button_normal_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=accent\",\"st_border_normal_border_border_color\":\"\",\"st_button_hover_text_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_glow_color_responsive\":\"\"},\"st_button_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_button_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_width_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_line_height_responsive_mobile\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"st_border_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_border_normal_border_border_color\":\"#FFD027\",\"st_button_line_height_responsive_tablet\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"st_button_normal_background_background_color\":\"#006943\",\"st_button_hover_text_color_responsive\":\"#006943\",\"st_button_hover_background_background_color\":\"#FFD402\",\"sg_video_auto_play\":\"\",\"sg_video_mute\":\"\"},\"elements\":[],\"widgetType\":\"jkit_video_button\"},{\"id\":\"232ec8da\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Intro\",\"align\":\"right\",\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"hide_mobile\":\"hidden-mobile\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#00160E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49b348ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"edc2dbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.00200000000000244426701101474463939666748046875,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e2246bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Prestige Luxury Cleanings LLC\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"139cc45f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Landscaping And Garden Care Services\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dc78e71\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"597dc67d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"26cf3840\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b19bda0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":167,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"980\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a46c929\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c4d8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Public Liability Insurance\",\"_id\":\"a978734\"},{\"text\":\"Environmentally Friendly\",\"_id\":\"1cd10a1\"},{\"text\":\"On Time, Every Time\",\"_id\":\"c6767db\"},{\"text\":\"Beautiful Garden Designs\",\"_id\":\"d4743f4\"},{\"text\":\"Modern Machinery And Tool\",\"_id\":\"535c17d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"398321ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4c7c15d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.9129999999999967030817060731351375579833984375,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5683e90d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":162,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"860\",\"height\":\"980\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b6190b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":163,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"-59\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"250636f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"713aa588\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"51a71b71\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#00160E\",\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=primary\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=06a34e7\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"st_content_title_color_responsive\":\"#7F7F7F\",\"st_super_color_responsive\":\"#FFD402\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\",\"sg_setting_html_tag\":\"span\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5557874f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"73847855\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":174,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/garden-maintenance-performed-by-pro-gardener-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"b1058a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":224,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":478,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":325,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"69098afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"40\",\"bottom\":\"80\",\"left\":\"40\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"7cb7bf82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91cb5d9\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26358abf\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Have The Perfect Solution For Your Landscape Problems\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15a36cc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42c8d36c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7114454f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76f24ca8\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Variation Gardening\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"138cc39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28a78a06\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Expert Landscapers\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c5ac2bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38fdb183\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3ce0b95b\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Affordable Price\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-save-money-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4c80f133\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7451fb11\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Free Consultation\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-Consultancy-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e93f2c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"39a46e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6773b2a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"87647bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find The Best Service For Your Garden\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e2cc66e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30164d28\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e8639b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":142,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-services.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fa92c14\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2c434fb3\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"5abe2e18\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33425b9f\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Lawn Services\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"472ed309\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"67cb221c\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37c1cce6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":143,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/driveway-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b3e60ba\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3b291bbf\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"20b91942\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5649f719\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Driveway Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6300b69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"256ddf68\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3735f0b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":144,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/deck-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"741128a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3691562\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3c8a0e6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5eb1b3b9\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Deck Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"25f37292\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"61c9ff8e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d41e618\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"8781ee3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":145,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/weed-control.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd84c7d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"14f7965\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fb2459e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0582197\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Weed Control \",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"f7b0fa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0197d9e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f3de9c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":146,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/grass-feed.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"75ba950\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"23edbf4\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"ad70b3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1c4ac7\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Grass Feed\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6f592ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0043a3b\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e6d8a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":147,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/edging-Cleaning.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd233da\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6535a16\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"937e2e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7aee\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Edging Cleaning\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"d9723d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"c908972\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"790dd775\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"360\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"160\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"140\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"background_overlay_color_b\":\"#000414\",\"background_overlay_image\":{\"id\":186,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/a-gardener-watering-plants-in-a-flowerbed-2RT8DWL-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]}},\"elements\":[{\"id\":\"a2ed5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7e37f762\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Landscaping\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a092069\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d5099\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need Someone To Take Care Your Garden & Lawn?\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=07ee36d\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1198756c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"66521a56\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":20,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":4},\"elements\":[{\"id\":\"1a89d099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.5090000000000003410605131648480892181396484375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"id\":191,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/happy-gardeners-with-plants-and-lawn-mower-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"space-between\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_color\":\"#FFFFFF00\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":9,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"46b821c1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":219,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":183,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"449971a9\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Make Appointment & Take Care Your Garden\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=secondary\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=93191b3\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_content_title_color_hover_responsive\":\"#FFFFFF\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#FFFFFF\",\"st_icon_color_responsive\":\"#00E5CC\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#00E5CC\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":false},{\"id\":\"13747b6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.4909999999999996589394868351519107818603515625,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a13f42e\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"178***1721830795182\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fde8487\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"59883b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1617542a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Process\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29c7aa96\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Complete Every Step Carefully\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ced0d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d62463d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18cf7834\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"41f79872\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-consult-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consultation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65e1b761\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"span\",\"title_color\":\"#FFD402\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#006943\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12cdbf13\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4175d29\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-pencil_art-light\",\"library\":\"jkiticon\"},\"title_text\":\"Design Installation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2adabf01\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b628\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"569b3221\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consturction \",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"67d6b2e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6fff79c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53c9a76e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"title_text\":\"Finished Work\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"555aace0\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d57540b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"71\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardening-background-with-garden-tolls-A9BGNJU.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]}},\"elements\":[{\"id\":\"147831a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"5a53d120\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"20\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Years of Experience\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"488f4727\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"6b8f6eae\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"76666759\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f532f9e\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"2850\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Happy Customers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"265fd738\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5473dc22\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"64\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Expert Landscapers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b38731e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4945f2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"627cd42c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65e3182\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.56499999999999772626324556767940521240234375},\"elements\":[{\"id\":\"43108b53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Projects\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45328989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Project We Have Done\\n\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"f382082\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.49900000000000233058017329312860965728759765625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":40,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"55ecfb57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"67afcbfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.0330000000000012505552149377763271331787109375,\"_inline_size_tablet\":23,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4989aa04\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Projects\",\"align\":\"right\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"left\",\"hover_animation\":\"float\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"32515d84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"3f5753f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"21982cfb\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":196,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Cutting-Leaf.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Cutting Leaf\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"404dc561\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"58d29b54\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":197,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Home-Garden.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Home Garden\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"3bff1dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"3c24185a\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":195,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/build-backyard.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Build Backyard\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_image_height_responsive_tablet\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b3cb58d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_image\":{\"id\":201,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-moving-aerial-photo-Z8KDGJ9-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_color\":\"#0000007D\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]}},\"elements\":[{\"id\":\"79705206\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"51c9a732\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73b2fe0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"What They Says About Us\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4876e632\",\"elType\":\"widget\",\"settings\":{\"sg_layout_testimonial_choose\":\"style-2\",\"sg_testimonials_image_size_imagesize_size\":\"medium\",\"sg_testimonials_list\":[{\"sg_testimonials_list_client_avatar\":{\"id\":\"75\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/3SUMAU.jpg\"},\"_id\":\"6e9b2e1\",\"sg_testimonials_list_client_name\":\"Regan Traynor\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"76\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/CASCKD8.jpg\"},\"sg_testimonials_list_client_name\":\"Maisha Dunn\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"d069a43\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"77\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/MKLVKTE.jpg\"},\"sg_testimonials_list_client_name\":\"Reis Leonard\",\"sg_testimonials_list_designation\":\"Businessman\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"05c24f5\"}],\"st_wrapper_alignment_responsive\":\"left\",\"st_client_name_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_description_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_client_name_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_client_designation_normal_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_client_designation_normal_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=d343bdf\",\"st_rating_color_responsive\":\"\",\"st_client_name_normal_color_responsive\":\"\",\"st_quote_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_layout_background_background_color\":\"\"},\"st_layout_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_layout_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_wrapper_fix_height\":\"\",\"sg_setting_autoplay\":\"yes\",\"sg_setting_autoplay_pause\":\"\",\"sg_setting_arrow\":\"\",\"sg_setting_arrow_position\":\"middle-edge\",\"sg_setting_dots\":\"\",\"sg_setting_quote\":\"yes\",\"sg_setting_rating\":\"\",\"st_layout_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_layout_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_slide_show_responsive\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"sg_setting_quote_icon\":{\"value\":\"jki jki-quote-light\",\"library\":\"jkiticon\"},\"sg_layout_image_position\":\"below\",\"st_layout_background_background_background\":\"classic\",\"st_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position\":\"\",\"st_quote_override_position_top_responsive\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"st_quote_override_position_left_responsive\":{\"unit\":\"px\",\"size\":442,\"sizes\":[]},\"st_client_name_normal_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_quote_normal_font_size_responsive\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"st_client_image_margin_responsive\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_rating_font_size_responsive\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"st_rating_margin_right_responsive\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_setting_slide_show_responsive_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"st_wrapper_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position_top_responsive_tablet\":{\"unit\":\"px\",\"size\":249,\"sizes\":[]},\"st_quote_override_position_top_responsive_mobile\":{\"unit\":\"px\",\"size\":193,\"sizes\":[]},\"st_quote_override_position_left_responsive_tablet\":{\"unit\":\"px\",\"size\":265,\"sizes\":[]},\"st_quote_override_position_left_responsive_mobile\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]},\"st_quote_normal_font_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"st_description_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_normal_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64afd05f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"746d276b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30338dfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f950be4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ca735b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5d6ca3ad\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_title_hover_color_responsive\":\"globals\\/colors?id=secondary\",\"st_readmore_hover_color_responsive\":\"globals\\/colors?id=secondary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#646974\",\"st_excerpt_color_responsive\":\"#646974\",\"st_title_normal_color_responsive\":\"#272B36\",\"st_thumbnail_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_title_hover_color_responsive\":\"#FA8D25\",\"st_readmore_normal_color_responsive\":\"#FA8D25\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":false}],\"isInner\":false}]'),(1169,209,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1170,210,'_elementor_edit_mode','builder'),(1171,210,'_elementor_template_type','wp-page'),(1172,210,'_elementor_version','3.23.2'),(1173,210,'_wp_page_template','default'),(1174,210,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1175,210,'_elementor_data','[{\"id\":\"35495243\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"Eldery male gardener using scissors for bushes\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"160\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0,\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_size_tablet\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"top center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00160E\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b\":\"#00000054\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_slideshow_gallery\":[{\"id\":154,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-02-5.jpg\"},{\"id\":155,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-03-3.jpg\"},{\"id\":156,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-04-3.jpg\"},{\"id\":157,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-01-5.jpg\"}]},\"elements\":[{\"id\":\"739a26d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":65,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=06a34e7\"}},\"elements\":[{\"id\":\"132d1a8e\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Complete For All\",\"sg_title_focused\":\" Landscape \",\"sg_title_after\":\" Service And Maintenance\",\"sg_title_html_tag\":\"h1\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=primary\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"7c49583a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"635cb25b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"23cf340e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37.85499999999999687361196265555918216705322265625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":48,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"1c4c950d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4768b6f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":62.14500000000000312638803734444081783294677734375,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"flex-start\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":52,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"34c0badb\",\"elType\":\"widget\",\"settings\":{\"sg_video_button_title\":\"Play Video\",\"sg_video_button_icon\":{\"value\":\"jki jki-play\",\"library\":\"jkiticon\"},\"sg_video_url\":\"#\",\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_width_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_line_height_responsive\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#FFD402\",\"st_button_normal_glow_color_responsive\":\"#00694361\",\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"_element_width\":\"auto\",\"__globals__\":{\"st_button_normal_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=accent\",\"st_border_normal_border_border_color\":\"\",\"st_button_hover_text_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_glow_color_responsive\":\"\"},\"st_button_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_button_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_width_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_line_height_responsive_mobile\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"st_border_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_border_normal_border_border_color\":\"#FFD027\",\"st_button_line_height_responsive_tablet\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"st_button_normal_background_background_color\":\"#006943\",\"st_button_hover_text_color_responsive\":\"#006943\",\"st_button_hover_background_background_color\":\"#FFD402\",\"sg_video_auto_play\":\"\",\"sg_video_mute\":\"\"},\"elements\":[],\"widgetType\":\"jkit_video_button\"},{\"id\":\"232ec8da\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Intro\",\"align\":\"right\",\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"hide_mobile\":\"hidden-mobile\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#00160E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49b348ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"edc2dbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.00200000000000244426701101474463939666748046875,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e2246bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Prestige Luxury Cleanings LLC\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"139cc45f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Landscaping And Garden Care Services\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dc78e71\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"597dc67d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"26cf3840\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b19bda0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":167,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"980\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a46c929\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c4d8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Public Liability Insurance\",\"_id\":\"a978734\"},{\"text\":\"Environmentally Friendly\",\"_id\":\"1cd10a1\"},{\"text\":\"On Time, Every Time\",\"_id\":\"c6767db\"},{\"text\":\"Beautiful Garden Designs\",\"_id\":\"d4743f4\"},{\"text\":\"Modern Machinery And Tool\",\"_id\":\"535c17d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"398321ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4c7c15d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.9129999999999967030817060731351375579833984375,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5683e90d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":162,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"860\",\"height\":\"980\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b6190b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":163,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"-59\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"250636f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"713aa588\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"51a71b71\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#00160E\",\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=primary\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=06a34e7\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"st_content_title_color_responsive\":\"#7F7F7F\",\"st_super_color_responsive\":\"#FFD402\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\",\"sg_setting_html_tag\":\"span\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5557874f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"73847855\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":174,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/garden-maintenance-performed-by-pro-gardener-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"b1058a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":224,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":478,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":325,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"69098afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"40\",\"bottom\":\"80\",\"left\":\"40\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"7cb7bf82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91cb5d9\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26358abf\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Have The Perfect Solution For Your Landscape Problems\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15a36cc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42c8d36c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7114454f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76f24ca8\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Variation Gardening\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"138cc39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28a78a06\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Expert Landscapers\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c5ac2bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38fdb183\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3ce0b95b\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Affordable Price\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-save-money-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4c80f133\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7451fb11\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Free Consultation\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-Consultancy-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e93f2c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"39a46e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6773b2a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"87647bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find The Best Service For Your Garden\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e2cc66e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30164d28\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e8639b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":142,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-services.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fa92c14\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2c434fb3\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"5abe2e18\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33425b9f\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Residential And Commercial Projects\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"472ed309\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"67cb221c\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37c1cce6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":143,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/driveway-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b3e60ba\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3b291bbf\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"20b91942\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5649f719\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Driveway Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6300b69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"256ddf68\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3735f0b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":144,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/deck-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"741128a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3691562\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3c8a0e6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5eb1b3b9\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Deck Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"25f37292\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"61c9ff8e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d41e618\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"8781ee3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":145,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/weed-control.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd84c7d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"14f7965\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fb2459e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0582197\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Weed Control \",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"f7b0fa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0197d9e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f3de9c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":146,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/grass-feed.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"75ba950\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"23edbf4\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"ad70b3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1c4ac7\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Grass Feed\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6f592ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0043a3b\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e6d8a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":147,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/edging-Cleaning.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd233da\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6535a16\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"937e2e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7aee\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Lawn Services\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"d9723d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"c908972\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"790dd775\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"360\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"160\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"140\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"background_overlay_color_b\":\"#000414\",\"background_overlay_image\":{\"id\":186,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/a-gardener-watering-plants-in-a-flowerbed-2RT8DWL-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]}},\"elements\":[{\"id\":\"a2ed5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7e37f762\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Landscaping\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a092069\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d5099\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need Someone To Take Care Your Garden & Lawn?\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=07ee36d\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1198756c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"66521a56\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":20,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":4},\"elements\":[{\"id\":\"1a89d099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.5090000000000003410605131648480892181396484375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"id\":191,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/happy-gardeners-with-plants-and-lawn-mower-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"space-between\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_color\":\"#FFFFFF00\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":9,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"46b821c1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":219,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":183,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"449971a9\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Make Appointment & Take Care Your Garden\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=secondary\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=93191b3\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_content_title_color_hover_responsive\":\"#FFFFFF\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#FFFFFF\",\"st_icon_color_responsive\":\"#00E5CC\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#00E5CC\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":false},{\"id\":\"13747b6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.4909999999999996589394868351519107818603515625,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a13f42e\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"178***1721830795182\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fde8487\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"59883b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1617542a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Process\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29c7aa96\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Complete Every Step Carefully\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ced0d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d62463d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18cf7834\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"41f79872\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-consult-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consultation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65e1b761\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"span\",\"title_color\":\"#FFD402\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#006943\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12cdbf13\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4175d29\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-pencil_art-light\",\"library\":\"jkiticon\"},\"title_text\":\"Design Installation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2adabf01\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b628\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"569b3221\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consturction \",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"67d6b2e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6fff79c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53c9a76e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"title_text\":\"Finished Work\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"555aace0\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d57540b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"71\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardening-background-with-garden-tolls-A9BGNJU.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]}},\"elements\":[{\"id\":\"147831a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"5a53d120\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"20\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Years of Experience\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"488f4727\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"6b8f6eae\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"76666759\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f532f9e\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"2850\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Happy Customers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"265fd738\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5473dc22\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"64\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Expert Landscapers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b38731e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4945f2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"627cd42c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65e3182\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.56499999999999772626324556767940521240234375},\"elements\":[{\"id\":\"43108b53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Projects\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45328989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Project We Have Done\\n\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"f382082\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.49900000000000233058017329312860965728759765625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":40,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"55ecfb57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"67afcbfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.0330000000000012505552149377763271331787109375,\"_inline_size_tablet\":23,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4989aa04\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Projects\",\"align\":\"right\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"left\",\"hover_animation\":\"float\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"32515d84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"3f5753f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"21982cfb\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":196,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Cutting-Leaf.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Cutting Leaf\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"404dc561\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"58d29b54\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":197,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Home-Garden.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Home Garden\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"3bff1dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"3c24185a\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":195,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/build-backyard.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Build Backyard\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_image_height_responsive_tablet\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b3cb58d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_image\":{\"id\":201,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-moving-aerial-photo-Z8KDGJ9-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_color\":\"#0000007D\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]}},\"elements\":[{\"id\":\"79705206\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"51c9a732\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73b2fe0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"What They Says About Us\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4876e632\",\"elType\":\"widget\",\"settings\":{\"sg_layout_testimonial_choose\":\"style-2\",\"sg_testimonials_image_size_imagesize_size\":\"medium\",\"sg_testimonials_list\":[{\"sg_testimonials_list_client_avatar\":{\"id\":\"75\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/3SUMAU.jpg\"},\"_id\":\"6e9b2e1\",\"sg_testimonials_list_client_name\":\"Regan Traynor\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"76\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/CASCKD8.jpg\"},\"sg_testimonials_list_client_name\":\"Maisha Dunn\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"d069a43\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"77\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/MKLVKTE.jpg\"},\"sg_testimonials_list_client_name\":\"Reis Leonard\",\"sg_testimonials_list_designation\":\"Businessman\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"05c24f5\"}],\"st_wrapper_alignment_responsive\":\"left\",\"st_client_name_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_description_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_client_name_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_client_designation_normal_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_client_designation_normal_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=d343bdf\",\"st_rating_color_responsive\":\"\",\"st_client_name_normal_color_responsive\":\"\",\"st_quote_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_layout_background_background_color\":\"\"},\"st_layout_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_layout_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_wrapper_fix_height\":\"\",\"sg_setting_autoplay\":\"yes\",\"sg_setting_autoplay_pause\":\"\",\"sg_setting_arrow\":\"\",\"sg_setting_arrow_position\":\"middle-edge\",\"sg_setting_dots\":\"\",\"sg_setting_quote\":\"yes\",\"sg_setting_rating\":\"\",\"st_layout_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_layout_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_slide_show_responsive\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"sg_setting_quote_icon\":{\"value\":\"jki jki-quote-light\",\"library\":\"jkiticon\"},\"sg_layout_image_position\":\"below\",\"st_layout_background_background_background\":\"classic\",\"st_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position\":\"\",\"st_quote_override_position_top_responsive\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"st_quote_override_position_left_responsive\":{\"unit\":\"px\",\"size\":442,\"sizes\":[]},\"st_client_name_normal_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_quote_normal_font_size_responsive\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"st_client_image_margin_responsive\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_rating_font_size_responsive\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"st_rating_margin_right_responsive\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_setting_slide_show_responsive_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"st_wrapper_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position_top_responsive_tablet\":{\"unit\":\"px\",\"size\":249,\"sizes\":[]},\"st_quote_override_position_top_responsive_mobile\":{\"unit\":\"px\",\"size\":193,\"sizes\":[]},\"st_quote_override_position_left_responsive_tablet\":{\"unit\":\"px\",\"size\":265,\"sizes\":[]},\"st_quote_override_position_left_responsive_mobile\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]},\"st_quote_normal_font_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"st_description_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_normal_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64afd05f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"746d276b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30338dfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f950be4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ca735b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5d6ca3ad\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_title_hover_color_responsive\":\"globals\\/colors?id=secondary\",\"st_readmore_hover_color_responsive\":\"globals\\/colors?id=secondary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#646974\",\"st_excerpt_color_responsive\":\"#646974\",\"st_title_normal_color_responsive\":\"#272B36\",\"st_thumbnail_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_title_hover_color_responsive\":\"#FA8D25\",\"st_readmore_normal_color_responsive\":\"#FA8D25\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":false}],\"isInner\":false}]'),(1176,210,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1186,212,'_elementor_edit_mode','builder'),(1187,212,'_elementor_template_type','wp-page'),(1188,212,'_elementor_version','3.23.2'),(1189,212,'_wp_page_template','default'),(1190,212,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1191,212,'_elementor_data','[{\"id\":\"35495243\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"Eldery male gardener using scissors for bushes\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"160\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0,\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_size_tablet\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"top center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00160E\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b\":\"#00000054\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_slideshow_gallery\":[{\"id\":154,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-02-5.jpg\"},{\"id\":155,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-03-3.jpg\"},{\"id\":156,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-04-3.jpg\"},{\"id\":157,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-01-5.jpg\"}]},\"elements\":[{\"id\":\"739a26d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":65,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=06a34e7\"}},\"elements\":[{\"id\":\"132d1a8e\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Complete For All\",\"sg_title_focused\":\" Landscape \",\"sg_title_after\":\" Service And Maintenance\",\"sg_title_html_tag\":\"h1\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=primary\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"7c49583a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"635cb25b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"23cf340e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37.85499999999999687361196265555918216705322265625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":48,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"1c4c950d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4768b6f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":62.14500000000000312638803734444081783294677734375,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"flex-start\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":52,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"34c0badb\",\"elType\":\"widget\",\"settings\":{\"sg_video_button_title\":\"Play Video\",\"sg_video_button_icon\":{\"value\":\"jki jki-play\",\"library\":\"jkiticon\"},\"sg_video_url\":\"#\",\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_width_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_line_height_responsive\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#FFD402\",\"st_button_normal_glow_color_responsive\":\"#00694361\",\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"_element_width\":\"auto\",\"__globals__\":{\"st_button_normal_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=accent\",\"st_border_normal_border_border_color\":\"\",\"st_button_hover_text_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_glow_color_responsive\":\"\"},\"st_button_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_button_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_width_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_line_height_responsive_mobile\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"st_border_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_border_normal_border_border_color\":\"#FFD027\",\"st_button_line_height_responsive_tablet\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"st_button_normal_background_background_color\":\"#006943\",\"st_button_hover_text_color_responsive\":\"#006943\",\"st_button_hover_background_background_color\":\"#FFD402\",\"sg_video_auto_play\":\"\",\"sg_video_mute\":\"\"},\"elements\":[],\"widgetType\":\"jkit_video_button\"},{\"id\":\"232ec8da\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Intro\",\"align\":\"right\",\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"hide_mobile\":\"hidden-mobile\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#00160E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49b348ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"edc2dbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.00200000000000244426701101474463939666748046875,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e2246bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Prestige Luxury Cleanings LLC\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"139cc45f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Landscaping And Garden Care Services\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dc78e71\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"597dc67d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"26cf3840\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b19bda0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":167,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"980\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a46c929\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c4d8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Public Liability Insurance\",\"_id\":\"a978734\"},{\"text\":\"Environmentally Friendly\",\"_id\":\"1cd10a1\"},{\"text\":\"On Time, Every Time\",\"_id\":\"c6767db\"},{\"text\":\"Beautiful Garden Designs\",\"_id\":\"d4743f4\"},{\"text\":\"Modern Machinery And Tool\",\"_id\":\"535c17d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"398321ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4c7c15d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.9129999999999967030817060731351375579833984375,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5683e90d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":162,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"860\",\"height\":\"980\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b6190b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":163,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"-59\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"250636f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"713aa588\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"51a71b71\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#00160E\",\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=primary\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=06a34e7\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"st_content_title_color_responsive\":\"#7F7F7F\",\"st_super_color_responsive\":\"#FFD402\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\",\"sg_setting_html_tag\":\"span\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5557874f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"73847855\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":174,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/garden-maintenance-performed-by-pro-gardener-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"b1058a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":224,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":478,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":325,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"69098afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"40\",\"bottom\":\"80\",\"left\":\"40\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"7cb7bf82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91cb5d9\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26358abf\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Have The Perfect Solution For Your Landscape Problems\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15a36cc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42c8d36c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7114454f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76f24ca8\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Variation Gardening\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"138cc39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28a78a06\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Expert Landscapers\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c5ac2bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38fdb183\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3ce0b95b\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Affordable Price\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-save-money-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4c80f133\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7451fb11\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Free Consultation\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-Consultancy-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e93f2c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"39a46e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6773b2a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"87647bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find The Best Service For Your Garden\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e2cc66e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30164d28\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e8639b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":142,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-services.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fa92c14\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2c434fb3\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"5abe2e18\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33425b9f\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Residential And Commercial Projects\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"472ed309\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"67cb221c\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37c1cce6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":143,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/driveway-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b3e60ba\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3b291bbf\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"20b91942\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5649f719\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Driveway Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6300b69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"256ddf68\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3735f0b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":144,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/deck-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"741128a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3691562\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3c8a0e6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5eb1b3b9\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Deck Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"25f37292\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"61c9ff8e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d41e618\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"8781ee3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":145,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/weed-control.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd84c7d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"14f7965\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fb2459e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0582197\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Weed Control \",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"f7b0fa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0197d9e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f3de9c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":146,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/grass-feed.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"75ba950\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"23edbf4\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"ad70b3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1c4ac7\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Grass Feed\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6f592ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0043a3b\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e6d8a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":147,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/edging-Cleaning.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd233da\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6535a16\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"937e2e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7aee\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Lawn Services\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"d9723d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"c908972\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"790dd775\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"360\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"160\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"140\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"background_overlay_color_b\":\"#000414\",\"background_overlay_image\":{\"id\":186,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/a-gardener-watering-plants-in-a-flowerbed-2RT8DWL-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]}},\"elements\":[{\"id\":\"a2ed5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7e37f762\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Landscaping\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a092069\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d5099\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need Someone To Take Care Your Garden & Lawn?\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=07ee36d\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1198756c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"66521a56\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":20,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":4},\"elements\":[{\"id\":\"1a89d099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.5090000000000003410605131648480892181396484375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"id\":191,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/happy-gardeners-with-plants-and-lawn-mower-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"space-between\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_color\":\"#FFFFFF00\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":9,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"46b821c1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":219,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":183,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"449971a9\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Make Appointment & Take Care Your Garden\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=secondary\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=93191b3\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_content_title_color_hover_responsive\":\"#FFFFFF\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#FFFFFF\",\"st_icon_color_responsive\":\"#00E5CC\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#00E5CC\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":false},{\"id\":\"13747b6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.4909999999999996589394868351519107818603515625,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a13f42e\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"178***1721830795182\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fde8487\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"59883b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1617542a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Process\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29c7aa96\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Complete Every Step Carefully\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ced0d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d62463d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18cf7834\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"41f79872\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-consult-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consultation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65e1b761\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"span\",\"title_color\":\"#FFD402\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#006943\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12cdbf13\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4175d29\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-pencil_art-light\",\"library\":\"jkiticon\"},\"title_text\":\"Design Installation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2adabf01\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b628\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"569b3221\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consturction \",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"67d6b2e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6fff79c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53c9a76e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"title_text\":\"Finished Work\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"555aace0\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d57540b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"71\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardening-background-with-garden-tolls-A9BGNJU.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]}},\"elements\":[{\"id\":\"147831a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"5a53d120\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"20\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Years of Experience\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"488f4727\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"6b8f6eae\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"76666759\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f532f9e\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"2850\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Happy Customers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"265fd738\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5473dc22\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"64\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Expert Landscapers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b38731e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4945f2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"627cd42c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65e3182\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.56499999999999772626324556767940521240234375},\"elements\":[{\"id\":\"43108b53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Projects\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45328989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Project We Have Done\\n\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"f382082\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.49900000000000233058017329312860965728759765625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":40,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"55ecfb57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"67afcbfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.0330000000000012505552149377763271331787109375,\"_inline_size_tablet\":23,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4989aa04\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Projects\",\"align\":\"right\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"left\",\"hover_animation\":\"float\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"32515d84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"3f5753f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"21982cfb\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":196,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Cutting-Leaf.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Cutting Leaf\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"404dc561\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"58d29b54\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":197,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Home-Garden.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Home Garden\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"3bff1dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"3c24185a\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":195,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/build-backyard.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Build Backyard\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_image_height_responsive_tablet\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b3cb58d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_image\":{\"id\":201,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-moving-aerial-photo-Z8KDGJ9-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_color\":\"#0000007D\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]}},\"elements\":[{\"id\":\"79705206\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"51c9a732\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73b2fe0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"What They Says About Us\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4876e632\",\"elType\":\"widget\",\"settings\":{\"sg_layout_testimonial_choose\":\"style-2\",\"sg_testimonials_image_size_imagesize_size\":\"medium\",\"sg_testimonials_list\":[{\"sg_testimonials_list_client_avatar\":{\"id\":\"75\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/3SUMAU.jpg\"},\"_id\":\"6e9b2e1\",\"sg_testimonials_list_client_name\":\"Regan Traynor\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"76\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/CASCKD8.jpg\"},\"sg_testimonials_list_client_name\":\"Maisha Dunn\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"d069a43\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"77\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/MKLVKTE.jpg\"},\"sg_testimonials_list_client_name\":\"Reis Leonard\",\"sg_testimonials_list_designation\":\"Businessman\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"05c24f5\"}],\"st_wrapper_alignment_responsive\":\"left\",\"st_client_name_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_description_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_client_name_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_client_designation_normal_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_client_designation_normal_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=d343bdf\",\"st_rating_color_responsive\":\"\",\"st_client_name_normal_color_responsive\":\"\",\"st_quote_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_layout_background_background_color\":\"\"},\"st_layout_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_layout_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_wrapper_fix_height\":\"\",\"sg_setting_autoplay\":\"yes\",\"sg_setting_autoplay_pause\":\"\",\"sg_setting_arrow\":\"\",\"sg_setting_arrow_position\":\"middle-edge\",\"sg_setting_dots\":\"\",\"sg_setting_quote\":\"yes\",\"sg_setting_rating\":\"\",\"st_layout_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_layout_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_slide_show_responsive\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"sg_setting_quote_icon\":{\"value\":\"jki jki-quote-light\",\"library\":\"jkiticon\"},\"sg_layout_image_position\":\"below\",\"st_layout_background_background_background\":\"classic\",\"st_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position\":\"\",\"st_quote_override_position_top_responsive\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"st_quote_override_position_left_responsive\":{\"unit\":\"px\",\"size\":442,\"sizes\":[]},\"st_client_name_normal_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_quote_normal_font_size_responsive\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"st_client_image_margin_responsive\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_rating_font_size_responsive\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"st_rating_margin_right_responsive\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_setting_slide_show_responsive_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"st_wrapper_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position_top_responsive_tablet\":{\"unit\":\"px\",\"size\":249,\"sizes\":[]},\"st_quote_override_position_top_responsive_mobile\":{\"unit\":\"px\",\"size\":193,\"sizes\":[]},\"st_quote_override_position_left_responsive_tablet\":{\"unit\":\"px\",\"size\":265,\"sizes\":[]},\"st_quote_override_position_left_responsive_mobile\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]},\"st_quote_normal_font_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"st_description_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_normal_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64afd05f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"746d276b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30338dfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f950be4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ca735b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5d6ca3ad\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_title_hover_color_responsive\":\"globals\\/colors?id=secondary\",\"st_readmore_hover_color_responsive\":\"globals\\/colors?id=secondary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#646974\",\"st_excerpt_color_responsive\":\"#646974\",\"st_title_normal_color_responsive\":\"#272B36\",\"st_thumbnail_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_title_hover_color_responsive\":\"#FA8D25\",\"st_readmore_normal_color_responsive\":\"#FA8D25\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":false}],\"isInner\":false}]'),(1192,212,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1193,213,'_elementor_edit_mode','builder'),(1194,213,'_elementor_template_type','wp-page'),(1195,213,'_elementor_version','3.23.2'),(1196,213,'_wp_page_template','default'),(1197,213,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1198,213,'_elementor_data','[{\"id\":\"35495243\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"Eldery male gardener using scissors for bushes\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"160\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0,\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_size_tablet\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"top center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00160E\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b\":\"#00000054\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_slideshow_gallery\":[{\"id\":154,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-02-5.jpg\"},{\"id\":155,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-03-3.jpg\"},{\"id\":156,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-04-3.jpg\"},{\"id\":157,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-01-5.jpg\"}]},\"elements\":[{\"id\":\"739a26d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":65,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=06a34e7\"}},\"elements\":[{\"id\":\"132d1a8e\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Complete For All\",\"sg_title_focused\":\" Landscape \",\"sg_title_after\":\" Service And Maintenance\",\"sg_title_html_tag\":\"h1\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=primary\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"7c49583a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"635cb25b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"23cf340e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37.85499999999999687361196265555918216705322265625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":48,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"1c4c950d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4768b6f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":62.14500000000000312638803734444081783294677734375,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"flex-start\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":52,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"34c0badb\",\"elType\":\"widget\",\"settings\":{\"sg_video_button_title\":\"Play Video\",\"sg_video_button_icon\":{\"value\":\"jki jki-play\",\"library\":\"jkiticon\"},\"sg_video_url\":\"#\",\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_width_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_line_height_responsive\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#FFD402\",\"st_button_normal_glow_color_responsive\":\"#00694361\",\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"_element_width\":\"auto\",\"__globals__\":{\"st_button_normal_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=accent\",\"st_border_normal_border_border_color\":\"\",\"st_button_hover_text_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_glow_color_responsive\":\"\"},\"st_button_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_button_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_width_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_line_height_responsive_mobile\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"st_border_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_border_normal_border_border_color\":\"#FFD027\",\"st_button_line_height_responsive_tablet\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"st_button_normal_background_background_color\":\"#006943\",\"st_button_hover_text_color_responsive\":\"#006943\",\"st_button_hover_background_background_color\":\"#FFD402\",\"sg_video_auto_play\":\"\",\"sg_video_mute\":\"\"},\"elements\":[],\"widgetType\":\"jkit_video_button\"},{\"id\":\"232ec8da\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Intro\",\"align\":\"right\",\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"hide_mobile\":\"hidden-mobile\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#00160E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49b348ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"edc2dbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.00200000000000244426701101474463939666748046875,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e2246bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Prestige Luxury Cleanings LLC\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"139cc45f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Landscaping And Garden Care Services\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dc78e71\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"597dc67d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"26cf3840\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b19bda0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":167,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"980\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a46c929\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c4d8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Public Liability Insurance\",\"_id\":\"a978734\"},{\"text\":\"Environmentally Friendly\",\"_id\":\"1cd10a1\"},{\"text\":\"On Time, Every Time\",\"_id\":\"c6767db\"},{\"text\":\"Beautiful Garden Designs\",\"_id\":\"d4743f4\"},{\"text\":\"Modern Machinery And Tool\",\"_id\":\"535c17d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"398321ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4c7c15d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.9129999999999967030817060731351375579833984375,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5683e90d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":162,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"860\",\"height\":\"980\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b6190b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":163,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"-59\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"250636f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"713aa588\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"51a71b71\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#00160E\",\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=primary\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=06a34e7\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"st_content_title_color_responsive\":\"#7F7F7F\",\"st_super_color_responsive\":\"#FFD402\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\",\"sg_setting_html_tag\":\"span\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5557874f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"73847855\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":174,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/garden-maintenance-performed-by-pro-gardener-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"b1058a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":224,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":478,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":325,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"69098afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"40\",\"bottom\":\"80\",\"left\":\"40\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"7cb7bf82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91cb5d9\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26358abf\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Have The Perfect Solution For Your Landscape Problems\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15a36cc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42c8d36c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7114454f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76f24ca8\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Variation Gardening\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"138cc39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28a78a06\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Expert Landscapers\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c5ac2bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38fdb183\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3ce0b95b\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Affordable Price\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-save-money-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4c80f133\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7451fb11\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Free Consultation\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-Consultancy-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e93f2c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"39a46e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6773b2a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"87647bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find The Best Service For Your Garden\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e2cc66e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30164d28\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e8639b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":142,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-services.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fa92c14\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2c434fb3\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"5abe2e18\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33425b9f\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Residential And Commercial Projects\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"472ed309\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"67cb221c\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37c1cce6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":143,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/driveway-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b3e60ba\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3b291bbf\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"20b91942\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5649f719\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Driveway Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6300b69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"256ddf68\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3735f0b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":144,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/deck-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"741128a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3691562\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3c8a0e6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5eb1b3b9\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Deck Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"25f37292\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"61c9ff8e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d41e618\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"8781ee3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":145,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/weed-control.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd84c7d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"14f7965\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fb2459e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0582197\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Weed Control \",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"f7b0fa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0197d9e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f3de9c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":146,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/grass-feed.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"75ba950\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"23edbf4\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"ad70b3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1c4ac7\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Grass Feed\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6f592ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0043a3b\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e6d8a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":147,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/edging-Cleaning.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd233da\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6535a16\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"937e2e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7aee\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Lawn Services\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"d9723d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"c908972\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"790dd775\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"360\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"160\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"140\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"background_overlay_color_b\":\"#000414\",\"background_overlay_image\":{\"id\":186,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/a-gardener-watering-plants-in-a-flowerbed-2RT8DWL-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]}},\"elements\":[{\"id\":\"a2ed5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7e37f762\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Landscaping\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a092069\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d5099\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need Someone To Take Care Your Garden & Lawn?\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=07ee36d\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1198756c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"66521a56\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":20,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":4},\"elements\":[{\"id\":\"1a89d099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.5090000000000003410605131648480892181396484375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"id\":191,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/happy-gardeners-with-plants-and-lawn-mower-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"space-between\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_color\":\"#FFFFFF00\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":9,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"46b821c1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":219,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":183,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"449971a9\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Make Appointment & Take Care Your Garden\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=secondary\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=93191b3\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_content_title_color_hover_responsive\":\"#FFFFFF\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#FFFFFF\",\"st_icon_color_responsive\":\"#00E5CC\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#00E5CC\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":false},{\"id\":\"13747b6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.4909999999999996589394868351519107818603515625,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a13f42e\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"178***1721830795182\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fde8487\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"59883b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1617542a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Process\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29c7aa96\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Complete Every Step Carefully\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ced0d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d62463d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18cf7834\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"41f79872\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-consult-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consultation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65e1b761\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"span\",\"title_color\":\"#FFD402\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#006943\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12cdbf13\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4175d29\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-pencil_art-light\",\"library\":\"jkiticon\"},\"title_text\":\"Design Installation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2adabf01\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b628\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"569b3221\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consturction \",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"67d6b2e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6fff79c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53c9a76e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"title_text\":\"Finished Work\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"555aace0\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d57540b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"71\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardening-background-with-garden-tolls-A9BGNJU.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]}},\"elements\":[{\"id\":\"147831a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"5a53d120\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"20\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Years of Experience\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"488f4727\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"6b8f6eae\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"76666759\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f532f9e\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"2850\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Happy Customers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"265fd738\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5473dc22\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"64\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Expert Landscapers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b38731e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4945f2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"627cd42c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65e3182\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.56499999999999772626324556767940521240234375},\"elements\":[{\"id\":\"43108b53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Projects\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45328989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Project We Have Done\\n\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"f382082\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.49900000000000233058017329312860965728759765625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":40,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"55ecfb57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"67afcbfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.0330000000000012505552149377763271331787109375,\"_inline_size_tablet\":23,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4989aa04\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Projects\",\"align\":\"right\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"left\",\"hover_animation\":\"float\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"32515d84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"3f5753f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"21982cfb\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":196,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Cutting-Leaf.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Cutting Leaf\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"404dc561\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"58d29b54\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":197,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Home-Garden.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Home Garden\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"3bff1dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"3c24185a\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":195,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/build-backyard.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Build Backyard\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_image_height_responsive_tablet\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b3cb58d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_image\":{\"id\":201,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-moving-aerial-photo-Z8KDGJ9-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_color\":\"#0000007D\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]}},\"elements\":[{\"id\":\"79705206\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"51c9a732\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73b2fe0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"What They Says About Us\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4876e632\",\"elType\":\"widget\",\"settings\":{\"sg_layout_testimonial_choose\":\"style-2\",\"sg_testimonials_image_size_imagesize_size\":\"medium\",\"sg_testimonials_list\":[{\"sg_testimonials_list_client_avatar\":{\"id\":\"75\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/3SUMAU.jpg\"},\"_id\":\"6e9b2e1\",\"sg_testimonials_list_client_name\":\"Regan Traynor\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"76\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/CASCKD8.jpg\"},\"sg_testimonials_list_client_name\":\"Maisha Dunn\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"d069a43\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"77\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/MKLVKTE.jpg\"},\"sg_testimonials_list_client_name\":\"Reis Leonard\",\"sg_testimonials_list_designation\":\"Businessman\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"05c24f5\"}],\"st_wrapper_alignment_responsive\":\"left\",\"st_client_name_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_description_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_client_name_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_client_designation_normal_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_client_designation_normal_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=d343bdf\",\"st_rating_color_responsive\":\"\",\"st_client_name_normal_color_responsive\":\"\",\"st_quote_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_layout_background_background_color\":\"\"},\"st_layout_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_layout_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_wrapper_fix_height\":\"\",\"sg_setting_autoplay\":\"yes\",\"sg_setting_autoplay_pause\":\"\",\"sg_setting_arrow\":\"\",\"sg_setting_arrow_position\":\"middle-edge\",\"sg_setting_dots\":\"\",\"sg_setting_quote\":\"yes\",\"sg_setting_rating\":\"\",\"st_layout_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_layout_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_slide_show_responsive\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"sg_setting_quote_icon\":{\"value\":\"jki jki-quote-light\",\"library\":\"jkiticon\"},\"sg_layout_image_position\":\"below\",\"st_layout_background_background_background\":\"classic\",\"st_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position\":\"\",\"st_quote_override_position_top_responsive\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"st_quote_override_position_left_responsive\":{\"unit\":\"px\",\"size\":442,\"sizes\":[]},\"st_client_name_normal_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_quote_normal_font_size_responsive\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"st_client_image_margin_responsive\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_rating_font_size_responsive\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"st_rating_margin_right_responsive\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_setting_slide_show_responsive_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"st_wrapper_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position_top_responsive_tablet\":{\"unit\":\"px\",\"size\":249,\"sizes\":[]},\"st_quote_override_position_top_responsive_mobile\":{\"unit\":\"px\",\"size\":193,\"sizes\":[]},\"st_quote_override_position_left_responsive_tablet\":{\"unit\":\"px\",\"size\":265,\"sizes\":[]},\"st_quote_override_position_left_responsive_mobile\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]},\"st_quote_normal_font_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"st_description_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_normal_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64afd05f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"746d276b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30338dfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f950be4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ca735b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5d6ca3ad\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_title_hover_color_responsive\":\"globals\\/colors?id=secondary\",\"st_readmore_hover_color_responsive\":\"globals\\/colors?id=secondary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#646974\",\"st_excerpt_color_responsive\":\"#646974\",\"st_title_normal_color_responsive\":\"#272B36\",\"st_thumbnail_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_title_hover_color_responsive\":\"#FA8D25\",\"st_readmore_normal_color_responsive\":\"#FA8D25\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":false}],\"isInner\":false}]'),(1199,213,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1200,214,'_elementor_edit_mode','builder'),(1201,214,'_elementor_template_type','wp-page'),(1202,214,'_elementor_version','3.23.2'),(1203,214,'_wp_page_template','default'),(1204,214,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1205,214,'_elementor_data','[{\"id\":\"35495243\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"Eldery male gardener using scissors for bushes\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"160\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0,\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_size_tablet\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"top center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00160E\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b\":\"#00000054\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_slideshow_gallery\":[{\"id\":154,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-02-5.jpg\"},{\"id\":155,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-03-3.jpg\"},{\"id\":156,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-04-3.jpg\"},{\"id\":157,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-01-5.jpg\"}]},\"elements\":[{\"id\":\"739a26d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":65,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=06a34e7\"}},\"elements\":[{\"id\":\"132d1a8e\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Complete For All\",\"sg_title_focused\":\" Landscape \",\"sg_title_after\":\" Service And Maintenance\",\"sg_title_html_tag\":\"h1\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=primary\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"7c49583a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"635cb25b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"23cf340e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37.85499999999999687361196265555918216705322265625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":48,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"1c4c950d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4768b6f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":62.14500000000000312638803734444081783294677734375,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"flex-start\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":52,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"34c0badb\",\"elType\":\"widget\",\"settings\":{\"sg_video_button_title\":\"Play Video\",\"sg_video_button_icon\":{\"value\":\"jki jki-play\",\"library\":\"jkiticon\"},\"sg_video_url\":\"#\",\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_width_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_line_height_responsive\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#FFD402\",\"st_button_normal_glow_color_responsive\":\"#00694361\",\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"_element_width\":\"auto\",\"__globals__\":{\"st_button_normal_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=accent\",\"st_border_normal_border_border_color\":\"\",\"st_button_hover_text_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_glow_color_responsive\":\"\"},\"st_button_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_button_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_width_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_line_height_responsive_mobile\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"st_border_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_border_normal_border_border_color\":\"#FFD027\",\"st_button_line_height_responsive_tablet\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"st_button_normal_background_background_color\":\"#006943\",\"st_button_hover_text_color_responsive\":\"#006943\",\"st_button_hover_background_background_color\":\"#FFD402\",\"sg_video_auto_play\":\"\",\"sg_video_mute\":\"\"},\"elements\":[],\"widgetType\":\"jkit_video_button\"},{\"id\":\"232ec8da\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Intro\",\"align\":\"right\",\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"hide_mobile\":\"hidden-mobile\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#00160E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49b348ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"edc2dbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.00200000000000244426701101474463939666748046875,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e2246bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Prestige Luxury Cleanings LLC\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"139cc45f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Landscaping And Garden Care Services\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dc78e71\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"597dc67d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"26cf3840\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b19bda0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":167,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"980\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a46c929\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c4d8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Public Liability Insurance\",\"_id\":\"a978734\"},{\"text\":\"Environmentally Friendly\",\"_id\":\"1cd10a1\"},{\"text\":\"On Time, Every Time\",\"_id\":\"c6767db\"},{\"text\":\"Beautiful Garden Designs\",\"_id\":\"d4743f4\"},{\"text\":\"Modern Machinery And Tool\",\"_id\":\"535c17d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"398321ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4c7c15d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.9129999999999967030817060731351375579833984375,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5683e90d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":162,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"860\",\"height\":\"980\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b6190b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":163,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"-59\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"250636f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"713aa588\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"51a71b71\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#00160E\",\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=primary\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=06a34e7\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"st_content_title_color_responsive\":\"#7F7F7F\",\"st_super_color_responsive\":\"#FFD402\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\",\"sg_setting_html_tag\":\"span\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5557874f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"73847855\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":174,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/garden-maintenance-performed-by-pro-gardener-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"b1058a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":224,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":478,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":325,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"69098afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"40\",\"bottom\":\"80\",\"left\":\"40\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"7cb7bf82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91cb5d9\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26358abf\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Have The Perfect Solution For Your Landscape Problems\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15a36cc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42c8d36c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7114454f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76f24ca8\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Variation Gardening\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"138cc39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28a78a06\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Expert Landscapers\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c5ac2bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38fdb183\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3ce0b95b\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Affordable Price\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-save-money-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4c80f133\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7451fb11\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Free Consultation\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-Consultancy-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e93f2c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"39a46e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6773b2a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"87647bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find The Best Service For Your Garden\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e2cc66e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30164d28\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e8639b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":142,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-services.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fa92c14\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2c434fb3\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"5abe2e18\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33425b9f\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Residential And Commercial Projects\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"472ed309\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"67cb221c\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e6d8a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":142,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-services.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd233da\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6535a16\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"937e2e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7aee\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Lawn Services\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"d9723d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"c908972\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37c1cce6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":143,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/driveway-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b3e60ba\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3b291bbf\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"20b91942\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5649f719\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Driveway Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6300b69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"256ddf68\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d41e618\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3735f0b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":144,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/deck-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"741128a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3691562\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3c8a0e6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5eb1b3b9\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Deck Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"25f37292\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"61c9ff8e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8781ee3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":145,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/weed-control.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd84c7d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"14f7965\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fb2459e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0582197\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Weed Control \",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"f7b0fa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0197d9e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f3de9c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":146,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/grass-feed.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"75ba950\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"23edbf4\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"ad70b3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1c4ac7\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Grass Feed\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6f592ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0043a3b\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"790dd775\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"360\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"160\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"140\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"background_overlay_color_b\":\"#000414\",\"background_overlay_image\":{\"id\":186,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/a-gardener-watering-plants-in-a-flowerbed-2RT8DWL-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]}},\"elements\":[{\"id\":\"a2ed5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7e37f762\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Landscaping\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a092069\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d5099\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need Someone To Take Care Your Garden & Lawn?\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=07ee36d\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1198756c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"66521a56\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":20,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":4},\"elements\":[{\"id\":\"1a89d099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.5090000000000003410605131648480892181396484375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"id\":191,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/happy-gardeners-with-plants-and-lawn-mower-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"space-between\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_color\":\"#FFFFFF00\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":9,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"46b821c1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":219,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":183,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"449971a9\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Make Appointment & Take Care Your Garden\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=secondary\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=93191b3\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_content_title_color_hover_responsive\":\"#FFFFFF\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#FFFFFF\",\"st_icon_color_responsive\":\"#00E5CC\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#00E5CC\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":false},{\"id\":\"13747b6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.4909999999999996589394868351519107818603515625,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a13f42e\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"178***1721830795182\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fde8487\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"59883b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1617542a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Process\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29c7aa96\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Complete Every Step Carefully\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ced0d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d62463d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18cf7834\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"41f79872\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-consult-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consultation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65e1b761\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"span\",\"title_color\":\"#FFD402\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#006943\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12cdbf13\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4175d29\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-pencil_art-light\",\"library\":\"jkiticon\"},\"title_text\":\"Design Installation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2adabf01\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b628\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"569b3221\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consturction \",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"67d6b2e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6fff79c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53c9a76e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"title_text\":\"Finished Work\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"555aace0\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d57540b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"71\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardening-background-with-garden-tolls-A9BGNJU.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]}},\"elements\":[{\"id\":\"147831a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"5a53d120\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"20\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Years of Experience\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"488f4727\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"6b8f6eae\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"76666759\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f532f9e\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"2850\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Happy Customers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"265fd738\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5473dc22\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"64\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Expert Landscapers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b38731e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4945f2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"627cd42c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65e3182\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.56499999999999772626324556767940521240234375},\"elements\":[{\"id\":\"43108b53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Projects\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45328989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Project We Have Done\\n\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"f382082\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.49900000000000233058017329312860965728759765625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":40,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"55ecfb57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"67afcbfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.0330000000000012505552149377763271331787109375,\"_inline_size_tablet\":23,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4989aa04\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Projects\",\"align\":\"right\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"left\",\"hover_animation\":\"float\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"32515d84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"3f5753f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"21982cfb\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":196,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Cutting-Leaf.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Cutting Leaf\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"404dc561\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"58d29b54\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":197,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Home-Garden.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Home Garden\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"3bff1dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"3c24185a\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":195,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/build-backyard.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Build Backyard\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_image_height_responsive_tablet\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b3cb58d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_image\":{\"id\":201,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-moving-aerial-photo-Z8KDGJ9-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_color\":\"#0000007D\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]}},\"elements\":[{\"id\":\"79705206\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"51c9a732\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73b2fe0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"What They Says About Us\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4876e632\",\"elType\":\"widget\",\"settings\":{\"sg_layout_testimonial_choose\":\"style-2\",\"sg_testimonials_image_size_imagesize_size\":\"medium\",\"sg_testimonials_list\":[{\"sg_testimonials_list_client_avatar\":{\"id\":\"75\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/3SUMAU.jpg\"},\"_id\":\"6e9b2e1\",\"sg_testimonials_list_client_name\":\"Regan Traynor\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"76\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/CASCKD8.jpg\"},\"sg_testimonials_list_client_name\":\"Maisha Dunn\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"d069a43\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"77\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/MKLVKTE.jpg\"},\"sg_testimonials_list_client_name\":\"Reis Leonard\",\"sg_testimonials_list_designation\":\"Businessman\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"05c24f5\"}],\"st_wrapper_alignment_responsive\":\"left\",\"st_client_name_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_description_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_client_name_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_client_designation_normal_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_client_designation_normal_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=d343bdf\",\"st_rating_color_responsive\":\"\",\"st_client_name_normal_color_responsive\":\"\",\"st_quote_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_layout_background_background_color\":\"\"},\"st_layout_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_layout_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_wrapper_fix_height\":\"\",\"sg_setting_autoplay\":\"yes\",\"sg_setting_autoplay_pause\":\"\",\"sg_setting_arrow\":\"\",\"sg_setting_arrow_position\":\"middle-edge\",\"sg_setting_dots\":\"\",\"sg_setting_quote\":\"yes\",\"sg_setting_rating\":\"\",\"st_layout_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_layout_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_slide_show_responsive\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"sg_setting_quote_icon\":{\"value\":\"jki jki-quote-light\",\"library\":\"jkiticon\"},\"sg_layout_image_position\":\"below\",\"st_layout_background_background_background\":\"classic\",\"st_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position\":\"\",\"st_quote_override_position_top_responsive\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"st_quote_override_position_left_responsive\":{\"unit\":\"px\",\"size\":442,\"sizes\":[]},\"st_client_name_normal_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_quote_normal_font_size_responsive\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"st_client_image_margin_responsive\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_rating_font_size_responsive\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"st_rating_margin_right_responsive\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_setting_slide_show_responsive_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"st_wrapper_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position_top_responsive_tablet\":{\"unit\":\"px\",\"size\":249,\"sizes\":[]},\"st_quote_override_position_top_responsive_mobile\":{\"unit\":\"px\",\"size\":193,\"sizes\":[]},\"st_quote_override_position_left_responsive_tablet\":{\"unit\":\"px\",\"size\":265,\"sizes\":[]},\"st_quote_override_position_left_responsive_mobile\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]},\"st_quote_normal_font_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"st_description_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_normal_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64afd05f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"746d276b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30338dfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f950be4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ca735b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5d6ca3ad\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_title_hover_color_responsive\":\"globals\\/colors?id=secondary\",\"st_readmore_hover_color_responsive\":\"globals\\/colors?id=secondary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#646974\",\"st_excerpt_color_responsive\":\"#646974\",\"st_title_normal_color_responsive\":\"#272B36\",\"st_thumbnail_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_title_hover_color_responsive\":\"#FA8D25\",\"st_readmore_normal_color_responsive\":\"#FA8D25\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":false}],\"isInner\":false}]'),(1206,214,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1208,215,'_elementor_edit_mode','builder'),(1209,215,'_elementor_template_type','wp-page'),(1210,215,'_elementor_version','3.23.2'),(1211,215,'_wp_page_template','default'),(1212,215,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'); INSERT INTO `victorq_postmeta` VALUES (1213,215,'_elementor_data','[{\"id\":\"35495243\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"Eldery male gardener using scissors for bushes\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"160\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0,\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_size_tablet\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"top center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00160E\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b\":\"#00000054\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_slideshow_gallery\":[{\"id\":154,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-02-5.jpg\"},{\"id\":155,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-03-3.jpg\"},{\"id\":156,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-04-3.jpg\"},{\"id\":157,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-01-5.jpg\"}]},\"elements\":[{\"id\":\"739a26d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":65,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=06a34e7\"}},\"elements\":[{\"id\":\"132d1a8e\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Complete For All\",\"sg_title_focused\":\" Landscape \",\"sg_title_after\":\" Service And Maintenance\",\"sg_title_html_tag\":\"h1\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=primary\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"7c49583a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"635cb25b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"23cf340e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37.85499999999999687361196265555918216705322265625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":48,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"1c4c950d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4768b6f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":62.14500000000000312638803734444081783294677734375,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"flex-start\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":52,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"34c0badb\",\"elType\":\"widget\",\"settings\":{\"sg_video_button_title\":\"Play Video\",\"sg_video_button_icon\":{\"value\":\"jki jki-play\",\"library\":\"jkiticon\"},\"sg_video_url\":\"#\",\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_width_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_line_height_responsive\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#FFD402\",\"st_button_normal_glow_color_responsive\":\"#00694361\",\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"_element_width\":\"auto\",\"__globals__\":{\"st_button_normal_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=accent\",\"st_border_normal_border_border_color\":\"\",\"st_button_hover_text_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_glow_color_responsive\":\"\"},\"st_button_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_button_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_width_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_line_height_responsive_mobile\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"st_border_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_border_normal_border_border_color\":\"#FFD027\",\"st_button_line_height_responsive_tablet\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"st_button_normal_background_background_color\":\"#006943\",\"st_button_hover_text_color_responsive\":\"#006943\",\"st_button_hover_background_background_color\":\"#FFD402\",\"sg_video_auto_play\":\"\",\"sg_video_mute\":\"\"},\"elements\":[],\"widgetType\":\"jkit_video_button\"},{\"id\":\"232ec8da\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Intro\",\"align\":\"right\",\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"hide_mobile\":\"hidden-mobile\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#00160E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49b348ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"edc2dbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.00200000000000244426701101474463939666748046875,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e2246bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Prestige Luxury Cleanings LLC\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"139cc45f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Landscaping And Garden Care Services\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dc78e71\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"597dc67d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"26cf3840\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b19bda0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":167,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"980\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a46c929\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c4d8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Public Liability Insurance\",\"_id\":\"a978734\"},{\"text\":\"Environmentally Friendly\",\"_id\":\"1cd10a1\"},{\"text\":\"On Time, Every Time\",\"_id\":\"c6767db\"},{\"text\":\"Beautiful Garden Designs\",\"_id\":\"d4743f4\"},{\"text\":\"Modern Machinery And Tool\",\"_id\":\"535c17d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"398321ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4c7c15d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.9129999999999967030817060731351375579833984375,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5683e90d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":162,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"860\",\"height\":\"980\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b6190b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":163,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"-59\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"250636f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"713aa588\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"51a71b71\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#00160E\",\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=primary\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=06a34e7\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"st_content_title_color_responsive\":\"#7F7F7F\",\"st_super_color_responsive\":\"#FFD402\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\",\"sg_setting_html_tag\":\"span\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5557874f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"73847855\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":174,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/garden-maintenance-performed-by-pro-gardener-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"b1058a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":224,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":478,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":325,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"69098afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"40\",\"bottom\":\"80\",\"left\":\"40\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"7cb7bf82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91cb5d9\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26358abf\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Have The Perfect Solution For Your Landscape Problems\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15a36cc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42c8d36c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7114454f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76f24ca8\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Variation Gardening\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"138cc39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28a78a06\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Expert Landscapers\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c5ac2bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38fdb183\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3ce0b95b\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Affordable Price\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-save-money-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4c80f133\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7451fb11\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Free Consultation\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-Consultancy-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e93f2c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"39a46e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6773b2a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"87647bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find The Best Service For Your Garden\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e2cc66e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30164d28\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e8639b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":142,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-services.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fa92c14\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2c434fb3\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"5abe2e18\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33425b9f\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Residential And Commercial Projects\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"472ed309\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"67cb221c\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e6d8a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":142,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-services.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd233da\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6535a16\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"937e2e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7aee\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Lawn Services\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"d9723d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"c908972\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37c1cce6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":143,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/driveway-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b3e60ba\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3b291bbf\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"20b91942\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5649f719\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Driveway Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6300b69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"256ddf68\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d41e618\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3735f0b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":144,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/deck-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"741128a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3691562\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3c8a0e6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5eb1b3b9\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Deck Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"25f37292\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"61c9ff8e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8781ee3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":145,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/weed-control.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd84c7d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"14f7965\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fb2459e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0582197\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Weed Control \",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"f7b0fa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0197d9e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f3de9c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":146,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/grass-feed.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"75ba950\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"23edbf4\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"ad70b3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1c4ac7\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Grass Feed\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6f592ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0043a3b\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"790dd775\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"360\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"160\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"140\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"background_overlay_color_b\":\"#000414\",\"background_overlay_image\":{\"id\":186,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/a-gardener-watering-plants-in-a-flowerbed-2RT8DWL-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]}},\"elements\":[{\"id\":\"a2ed5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7e37f762\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Landscaping\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a092069\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d5099\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need Someone To Take Care Your Garden & Lawn?\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=07ee36d\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1198756c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"66521a56\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":20,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":4},\"elements\":[{\"id\":\"1a89d099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.5090000000000003410605131648480892181396484375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"id\":191,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/happy-gardeners-with-plants-and-lawn-mower-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"space-between\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_color\":\"#FFFFFF00\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":9,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"46b821c1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":219,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":183,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"449971a9\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Make Appointment & Take Care Your Garden\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=secondary\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=93191b3\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_content_title_color_hover_responsive\":\"#FFFFFF\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#FFFFFF\",\"st_icon_color_responsive\":\"#00E5CC\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#00E5CC\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":false},{\"id\":\"13747b6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.4909999999999996589394868351519107818603515625,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a13f42e\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"178***1721830795182\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fde8487\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"59883b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1617542a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Process\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29c7aa96\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Complete Every Step Carefully\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ced0d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d62463d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18cf7834\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"41f79872\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-consult-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consultation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65e1b761\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"span\",\"title_color\":\"#FFD402\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#006943\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12cdbf13\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4175d29\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-pencil_art-light\",\"library\":\"jkiticon\"},\"title_text\":\"Design Installation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2adabf01\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b628\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"569b3221\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consturction \",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"67d6b2e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6fff79c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53c9a76e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"title_text\":\"Finished Work\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"555aace0\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d57540b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"71\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardening-background-with-garden-tolls-A9BGNJU.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]}},\"elements\":[{\"id\":\"147831a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"5a53d120\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"20\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Years of Experience\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"488f4727\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"6b8f6eae\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"76666759\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f532f9e\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"2850\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Happy Customers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"265fd738\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5473dc22\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"64\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Expert Landscapers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b38731e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4945f2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"627cd42c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65e3182\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.56499999999999772626324556767940521240234375},\"elements\":[{\"id\":\"43108b53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Projects\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45328989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Project We Have Done\\n\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"f382082\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.49900000000000233058017329312860965728759765625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":40,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"55ecfb57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"67afcbfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.0330000000000012505552149377763271331787109375,\"_inline_size_tablet\":23,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4989aa04\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Projects\",\"align\":\"right\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"left\",\"hover_animation\":\"float\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"32515d84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"3f5753f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"21982cfb\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":196,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Cutting-Leaf.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Cutting Leaf\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"404dc561\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"58d29b54\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":197,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Home-Garden.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Home Garden\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"3bff1dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"3c24185a\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":195,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/build-backyard.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Build Backyard\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_image_height_responsive_tablet\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b3cb58d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_image\":{\"id\":201,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-moving-aerial-photo-Z8KDGJ9-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_color\":\"#0000007D\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]}},\"elements\":[{\"id\":\"79705206\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"51c9a732\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73b2fe0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"What They Says About Us\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4876e632\",\"elType\":\"widget\",\"settings\":{\"sg_layout_testimonial_choose\":\"style-2\",\"sg_testimonials_image_size_imagesize_size\":\"medium\",\"sg_testimonials_list\":[{\"sg_testimonials_list_client_avatar\":{\"id\":\"75\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/3SUMAU.jpg\"},\"_id\":\"6e9b2e1\",\"sg_testimonials_list_client_name\":\"Regan Traynor\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"76\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/CASCKD8.jpg\"},\"sg_testimonials_list_client_name\":\"Maisha Dunn\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"d069a43\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"77\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/MKLVKTE.jpg\"},\"sg_testimonials_list_client_name\":\"Reis Leonard\",\"sg_testimonials_list_designation\":\"Businessman\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"05c24f5\"}],\"st_wrapper_alignment_responsive\":\"left\",\"st_client_name_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_description_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_client_name_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_client_designation_normal_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_client_designation_normal_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=d343bdf\",\"st_rating_color_responsive\":\"\",\"st_client_name_normal_color_responsive\":\"\",\"st_quote_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_layout_background_background_color\":\"\"},\"st_layout_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_layout_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_wrapper_fix_height\":\"\",\"sg_setting_autoplay\":\"yes\",\"sg_setting_autoplay_pause\":\"\",\"sg_setting_arrow\":\"\",\"sg_setting_arrow_position\":\"middle-edge\",\"sg_setting_dots\":\"\",\"sg_setting_quote\":\"yes\",\"sg_setting_rating\":\"\",\"st_layout_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_layout_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_slide_show_responsive\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"sg_setting_quote_icon\":{\"value\":\"jki jki-quote-light\",\"library\":\"jkiticon\"},\"sg_layout_image_position\":\"below\",\"st_layout_background_background_background\":\"classic\",\"st_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position\":\"\",\"st_quote_override_position_top_responsive\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"st_quote_override_position_left_responsive\":{\"unit\":\"px\",\"size\":442,\"sizes\":[]},\"st_client_name_normal_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_quote_normal_font_size_responsive\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"st_client_image_margin_responsive\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_rating_font_size_responsive\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"st_rating_margin_right_responsive\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_setting_slide_show_responsive_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"st_wrapper_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position_top_responsive_tablet\":{\"unit\":\"px\",\"size\":249,\"sizes\":[]},\"st_quote_override_position_top_responsive_mobile\":{\"unit\":\"px\",\"size\":193,\"sizes\":[]},\"st_quote_override_position_left_responsive_tablet\":{\"unit\":\"px\",\"size\":265,\"sizes\":[]},\"st_quote_override_position_left_responsive_mobile\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]},\"st_quote_normal_font_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"st_description_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_normal_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64afd05f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"746d276b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30338dfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f950be4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ca735b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5d6ca3ad\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_title_hover_color_responsive\":\"globals\\/colors?id=secondary\",\"st_readmore_hover_color_responsive\":\"globals\\/colors?id=secondary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#646974\",\"st_excerpt_color_responsive\":\"#646974\",\"st_title_normal_color_responsive\":\"#272B36\",\"st_thumbnail_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_title_hover_color_responsive\":\"#FA8D25\",\"st_readmore_normal_color_responsive\":\"#FA8D25\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":false}],\"isInner\":false}]'),(1214,215,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1215,215,'_elementor_css','a:6:{s:4:\"time\";i:1721833623;s:5:\"fonts\";a:1:{i:0;s:5:\"Inter\";}s:5:\"icons\";a:3:{i:0;s:0:\"\";i:1;s:8:\"jkiticon\";i:3;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1216,216,'_elementor_edit_mode','builder'),(1217,216,'_elementor_template_type','wp-page'),(1218,216,'_elementor_version','3.23.2'),(1219,216,'_wp_page_template','default'),(1220,216,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1221,216,'_elementor_data','[{\"id\":\"35495243\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"Eldery male gardener using scissors for bushes\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"160\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0,\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_size_tablet\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"top center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00160E\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b\":\"#00000054\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_slideshow_gallery\":[{\"id\":154,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-02-5.jpg\"},{\"id\":155,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-03-3.jpg\"},{\"id\":156,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-04-3.jpg\"},{\"id\":157,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-01-5.jpg\"}]},\"elements\":[{\"id\":\"739a26d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":65,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=06a34e7\"}},\"elements\":[{\"id\":\"132d1a8e\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Complete For All\",\"sg_title_focused\":\" Landscape \",\"sg_title_after\":\" Service And Maintenance\",\"sg_title_html_tag\":\"h1\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=primary\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"7c49583a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"635cb25b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"23cf340e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37.85499999999999687361196265555918216705322265625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":48,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"1c4c950d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4768b6f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":62.14500000000000312638803734444081783294677734375,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"flex-start\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":52,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"34c0badb\",\"elType\":\"widget\",\"settings\":{\"sg_video_button_title\":\"Play Video\",\"sg_video_button_icon\":{\"value\":\"jki jki-play\",\"library\":\"jkiticon\"},\"sg_video_url\":\"#\",\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_width_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_line_height_responsive\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#FFD402\",\"st_button_normal_glow_color_responsive\":\"#00694361\",\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"_element_width\":\"auto\",\"__globals__\":{\"st_button_normal_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=accent\",\"st_border_normal_border_border_color\":\"\",\"st_button_hover_text_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_glow_color_responsive\":\"\"},\"st_button_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_button_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_width_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_line_height_responsive_mobile\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"st_border_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_border_normal_border_border_color\":\"#FFD027\",\"st_button_line_height_responsive_tablet\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"st_button_normal_background_background_color\":\"#006943\",\"st_button_hover_text_color_responsive\":\"#006943\",\"st_button_hover_background_background_color\":\"#FFD402\",\"sg_video_auto_play\":\"\",\"sg_video_mute\":\"\"},\"elements\":[],\"widgetType\":\"jkit_video_button\"},{\"id\":\"232ec8da\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Intro\",\"align\":\"right\",\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"hide_mobile\":\"hidden-mobile\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#00160E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49b348ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"edc2dbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.00200000000000244426701101474463939666748046875,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e2246bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Prestige Luxury Cleanings LLC\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"139cc45f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Landscaping And Garden Care Services\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dc78e71\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"597dc67d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"26cf3840\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b19bda0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":167,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"980\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a46c929\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c4d8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Public Liability Insurance\",\"_id\":\"a978734\"},{\"text\":\"Environmentally Friendly\",\"_id\":\"1cd10a1\"},{\"text\":\"On Time, Every Time\",\"_id\":\"c6767db\"},{\"text\":\"Beautiful Garden Designs\",\"_id\":\"d4743f4\"},{\"text\":\"Modern Machinery And Tool\",\"_id\":\"535c17d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"398321ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4c7c15d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.9129999999999967030817060731351375579833984375,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5683e90d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":162,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"860\",\"height\":\"980\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b6190b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":163,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"-59\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"250636f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"713aa588\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"51a71b71\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#00160E\",\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=primary\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=06a34e7\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"st_content_title_color_responsive\":\"#7F7F7F\",\"st_super_color_responsive\":\"#FFD402\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\",\"sg_setting_html_tag\":\"span\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5557874f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"73847855\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":174,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/garden-maintenance-performed-by-pro-gardener-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"b1058a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":224,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":478,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":325,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"69098afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"40\",\"bottom\":\"80\",\"left\":\"40\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"7cb7bf82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91cb5d9\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26358abf\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Have The Perfect Solution For Your Landscape Problems\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15a36cc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42c8d36c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7114454f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76f24ca8\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Variation Gardening\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"138cc39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28a78a06\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Expert Landscapers\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c5ac2bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38fdb183\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3ce0b95b\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Affordable Price\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-save-money-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4c80f133\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7451fb11\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Free Consultation\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-Consultancy-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e93f2c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"39a46e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6773b2a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"87647bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find The Best Service For Your Garden\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e2cc66e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30164d28\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e8639b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":142,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-services.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fa92c14\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2c434fb3\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"5abe2e18\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33425b9f\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Residential And Commercial Projects\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"472ed309\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"67cb221c\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e6d8a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":142,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-services.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd233da\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6535a16\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"937e2e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7aee\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Lawn Services\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"d9723d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"c908972\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37c1cce6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":143,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/driveway-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b3e60ba\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3b291bbf\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"20b91942\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5649f719\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Driveway Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6300b69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"256ddf68\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d41e618\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3735f0b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":144,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/deck-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"741128a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3691562\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3c8a0e6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5eb1b3b9\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Deck Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"25f37292\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"61c9ff8e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8781ee3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":145,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/weed-control.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd84c7d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"14f7965\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fb2459e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0582197\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Weed Control \",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"f7b0fa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0197d9e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f3de9c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":146,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/grass-feed.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"75ba950\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"23edbf4\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"ad70b3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1c4ac7\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Grass Feed\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6f592ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0043a3b\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"790dd775\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"360\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"160\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"140\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"background_overlay_color_b\":\"#000414\",\"background_overlay_image\":{\"id\":186,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/a-gardener-watering-plants-in-a-flowerbed-2RT8DWL-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]}},\"elements\":[{\"id\":\"a2ed5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7e37f762\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Landscaping\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a092069\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d5099\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need Someone To Take Care Your Garden & Lawn?\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=07ee36d\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1198756c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"66521a56\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":20,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":4},\"elements\":[{\"id\":\"1a89d099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.5090000000000003410605131648480892181396484375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"id\":191,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/happy-gardeners-with-plants-and-lawn-mower-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"space-between\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_color\":\"#FFFFFF00\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":9,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"46b821c1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":219,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":183,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"449971a9\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Make Appointment & Take Care Your Garden\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=secondary\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=93191b3\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_content_title_color_hover_responsive\":\"#FFFFFF\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#FFFFFF\",\"st_icon_color_responsive\":\"#00E5CC\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#00E5CC\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":false},{\"id\":\"13747b6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.4909999999999996589394868351519107818603515625,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a13f42e\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"178***1721830795182\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fde8487\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"59883b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1617542a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Process\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29c7aa96\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Complete Every Step Carefully\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ced0d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d62463d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18cf7834\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"41f79872\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-consult-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consultation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65e1b761\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"span\",\"title_color\":\"#FFD402\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#006943\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12cdbf13\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4175d29\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-pencil_art-light\",\"library\":\"jkiticon\"},\"title_text\":\"Design Installation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2adabf01\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b628\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"569b3221\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consturction \",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"67d6b2e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6fff79c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53c9a76e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"title_text\":\"Finished Work\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"555aace0\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d57540b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"71\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardening-background-with-garden-tolls-A9BGNJU.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]}},\"elements\":[{\"id\":\"147831a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"5a53d120\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"20\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Years of Experience\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"488f4727\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"6b8f6eae\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"76666759\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f532f9e\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"2850\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Happy Customers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"265fd738\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5473dc22\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"64\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Expert Landscapers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b38731e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4945f2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"627cd42c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65e3182\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.56499999999999772626324556767940521240234375},\"elements\":[{\"id\":\"43108b53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Projects\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45328989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Project We Have Done\\n\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"f382082\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.49900000000000233058017329312860965728759765625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":40,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"55ecfb57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"67afcbfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.0330000000000012505552149377763271331787109375,\"_inline_size_tablet\":23,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4989aa04\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Projects\",\"align\":\"right\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"left\",\"hover_animation\":\"float\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"32515d84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"3f5753f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"21982cfb\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":196,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Cutting-Leaf.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Cutting Leaf\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"404dc561\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"58d29b54\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":197,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Home-Garden.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Home Garden\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"3bff1dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"3c24185a\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":195,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/build-backyard.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Build Backyard\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_image_height_responsive_tablet\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b3cb58d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_image\":{\"id\":201,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-moving-aerial-photo-Z8KDGJ9-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_color\":\"#0000007D\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]}},\"elements\":[{\"id\":\"79705206\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"51c9a732\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73b2fe0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"What They Says About Us\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4876e632\",\"elType\":\"widget\",\"settings\":{\"sg_layout_testimonial_choose\":\"style-2\",\"sg_testimonials_image_size_imagesize_size\":\"medium\",\"sg_testimonials_list\":[{\"sg_testimonials_list_client_avatar\":{\"id\":\"75\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/3SUMAU.jpg\"},\"_id\":\"6e9b2e1\",\"sg_testimonials_list_client_name\":\"Regan Traynor\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"76\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/CASCKD8.jpg\"},\"sg_testimonials_list_client_name\":\"Maisha Dunn\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"d069a43\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"77\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/MKLVKTE.jpg\"},\"sg_testimonials_list_client_name\":\"Reis Leonard\",\"sg_testimonials_list_designation\":\"Businessman\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"05c24f5\"}],\"st_wrapper_alignment_responsive\":\"left\",\"st_client_name_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_description_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_client_name_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_client_designation_normal_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_client_designation_normal_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=d343bdf\",\"st_rating_color_responsive\":\"\",\"st_client_name_normal_color_responsive\":\"\",\"st_quote_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_layout_background_background_color\":\"\"},\"st_layout_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_layout_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_wrapper_fix_height\":\"\",\"sg_setting_autoplay\":\"yes\",\"sg_setting_autoplay_pause\":\"\",\"sg_setting_arrow\":\"\",\"sg_setting_arrow_position\":\"middle-edge\",\"sg_setting_dots\":\"\",\"sg_setting_quote\":\"yes\",\"sg_setting_rating\":\"\",\"st_layout_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_layout_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_slide_show_responsive\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"sg_setting_quote_icon\":{\"value\":\"jki jki-quote-light\",\"library\":\"jkiticon\"},\"sg_layout_image_position\":\"below\",\"st_layout_background_background_background\":\"classic\",\"st_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position\":\"\",\"st_quote_override_position_top_responsive\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"st_quote_override_position_left_responsive\":{\"unit\":\"px\",\"size\":442,\"sizes\":[]},\"st_client_name_normal_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_quote_normal_font_size_responsive\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"st_client_image_margin_responsive\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_rating_font_size_responsive\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"st_rating_margin_right_responsive\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_setting_slide_show_responsive_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"st_wrapper_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position_top_responsive_tablet\":{\"unit\":\"px\",\"size\":249,\"sizes\":[]},\"st_quote_override_position_top_responsive_mobile\":{\"unit\":\"px\",\"size\":193,\"sizes\":[]},\"st_quote_override_position_left_responsive_tablet\":{\"unit\":\"px\",\"size\":265,\"sizes\":[]},\"st_quote_override_position_left_responsive_mobile\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]},\"st_quote_normal_font_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"st_description_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_normal_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64afd05f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"746d276b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30338dfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f950be4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ca735b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5d6ca3ad\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_title_hover_color_responsive\":\"globals\\/colors?id=secondary\",\"st_readmore_hover_color_responsive\":\"globals\\/colors?id=secondary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#646974\",\"st_excerpt_color_responsive\":\"#646974\",\"st_title_normal_color_responsive\":\"#272B36\",\"st_thumbnail_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_title_hover_color_responsive\":\"#FA8D25\",\"st_readmore_normal_color_responsive\":\"#FA8D25\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":false}],\"isInner\":false}]'),(1222,216,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1223,216,'_elementor_css','a:6:{s:4:\"time\";i:1721833623;s:5:\"fonts\";a:1:{i:0;s:5:\"Inter\";}s:5:\"icons\";a:3:{i:0;s:0:\"\";i:1;s:8:\"jkiticon\";i:3;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1224,217,'_elementor_edit_mode','builder'),(1225,217,'_elementor_template_type','wp-page'),(1226,217,'_elementor_version','3.23.2'),(1227,217,'_wp_page_template','default'),(1228,217,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1229,217,'_elementor_data','[{\"id\":\"35495243\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"Eldery male gardener using scissors for bushes\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"160\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0,\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_size_tablet\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"top center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00160E\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b\":\"#00000054\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_slideshow_gallery\":[{\"id\":154,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-02-5.jpg\"},{\"id\":155,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-03-3.jpg\"},{\"id\":156,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-04-3.jpg\"},{\"id\":157,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-01-5.jpg\"}]},\"elements\":[{\"id\":\"739a26d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":65,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=06a34e7\"}},\"elements\":[{\"id\":\"132d1a8e\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Complete For All\",\"sg_title_focused\":\" Landscape \",\"sg_title_after\":\" Service And Maintenance\",\"sg_title_html_tag\":\"h1\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=primary\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"7c49583a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"635cb25b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"23cf340e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37.85499999999999687361196265555918216705322265625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":48,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"1c4c950d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4768b6f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":62.14500000000000312638803734444081783294677734375,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"flex-start\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":52,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"34c0badb\",\"elType\":\"widget\",\"settings\":{\"sg_video_button_title\":\"Play Video\",\"sg_video_button_icon\":{\"value\":\"jki jki-play\",\"library\":\"jkiticon\"},\"sg_video_url\":\"#\",\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_width_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_line_height_responsive\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#FFD402\",\"st_button_normal_glow_color_responsive\":\"#00694361\",\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"_element_width\":\"auto\",\"__globals__\":{\"st_button_normal_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=accent\",\"st_border_normal_border_border_color\":\"\",\"st_button_hover_text_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_glow_color_responsive\":\"\"},\"st_button_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_button_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_width_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_line_height_responsive_mobile\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"st_border_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_border_normal_border_border_color\":\"#FFD027\",\"st_button_line_height_responsive_tablet\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"st_button_normal_background_background_color\":\"#006943\",\"st_button_hover_text_color_responsive\":\"#006943\",\"st_button_hover_background_background_color\":\"#FFD402\",\"sg_video_auto_play\":\"\",\"sg_video_mute\":\"\"},\"elements\":[],\"widgetType\":\"jkit_video_button\"},{\"id\":\"232ec8da\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Intro\",\"align\":\"right\",\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"hide_mobile\":\"hidden-mobile\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#00160E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49b348ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"edc2dbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.00200000000000244426701101474463939666748046875,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e2246bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Prestige Luxury Cleanings LLC\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"139cc45f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Landscaping And Garden Care Services\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dc78e71\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"597dc67d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"26cf3840\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b19bda0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":167,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"980\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a46c929\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c4d8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Public Liability Insurance\",\"_id\":\"a978734\"},{\"text\":\"Environmentally Friendly\",\"_id\":\"1cd10a1\"},{\"text\":\"On Time, Every Time\",\"_id\":\"c6767db\"},{\"text\":\"Beautiful Garden Designs\",\"_id\":\"d4743f4\"},{\"text\":\"Modern Machinery And Tool\",\"_id\":\"535c17d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"398321ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4c7c15d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.9129999999999967030817060731351375579833984375,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5683e90d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":162,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"860\",\"height\":\"980\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b6190b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":163,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"-59\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"250636f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"713aa588\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"51a71b71\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#00160E\",\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=primary\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=06a34e7\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"st_content_title_color_responsive\":\"#7F7F7F\",\"st_super_color_responsive\":\"#FFD402\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\",\"sg_setting_html_tag\":\"span\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5557874f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"73847855\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":174,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/garden-maintenance-performed-by-pro-gardener-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"b1058a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":224,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":478,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":325,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"69098afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"40\",\"bottom\":\"80\",\"left\":\"40\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"7cb7bf82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91cb5d9\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26358abf\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Have The Perfect Solution For Your Landscape Problems\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15a36cc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42c8d36c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7114454f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76f24ca8\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Variation Gardening\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"138cc39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28a78a06\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Expert Landscapers\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c5ac2bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38fdb183\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3ce0b95b\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Affordable Price\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-save-money-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4c80f133\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7451fb11\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Free Consultation\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-Consultancy-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e93f2c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"39a46e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6773b2a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"87647bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find The Best Service For Your Garden\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e2cc66e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30164d28\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e8639b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":142,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-services.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fa92c14\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2c434fb3\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"5abe2e18\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33425b9f\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Residential And Commercial Projects\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"472ed309\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"67cb221c\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e6d8a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":142,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-services.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd233da\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6535a16\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"937e2e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7aee\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Lawn Services\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"d9723d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"c908972\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37c1cce6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":143,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/driveway-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b3e60ba\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3b291bbf\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"20b91942\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5649f719\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Driveway Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6300b69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"256ddf68\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d41e618\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3735f0b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":144,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/deck-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"741128a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3691562\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3c8a0e6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5eb1b3b9\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Deck Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"25f37292\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"61c9ff8e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8781ee3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":145,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/weed-control.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd84c7d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"14f7965\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fb2459e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0582197\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Weed Control \",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"f7b0fa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0197d9e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f3de9c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":146,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/grass-feed.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"75ba950\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"23edbf4\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"ad70b3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1c4ac7\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Grass Feed\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6f592ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0043a3b\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"790dd775\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"360\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"160\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"140\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"background_overlay_color_b\":\"#000414\",\"background_overlay_image\":{\"id\":186,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/a-gardener-watering-plants-in-a-flowerbed-2RT8DWL-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]}},\"elements\":[{\"id\":\"a2ed5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7e37f762\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Landscaping\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a092069\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d5099\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need Someone To Take Care Your Garden & Lawn?\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=07ee36d\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1198756c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"66521a56\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":20,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":4},\"elements\":[{\"id\":\"1a89d099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.5090000000000003410605131648480892181396484375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"id\":191,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/happy-gardeners-with-plants-and-lawn-mower-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"space-between\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_color\":\"#FFFFFF00\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":9,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"46b821c1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":219,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":183,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"449971a9\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Make Appointment & Take Care Your Garden\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=secondary\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=93191b3\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_content_title_color_hover_responsive\":\"#FFFFFF\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#FFFFFF\",\"st_icon_color_responsive\":\"#00E5CC\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#00E5CC\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":false},{\"id\":\"13747b6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.4909999999999996589394868351519107818603515625,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a13f42e\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"178***1721830795182\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fde8487\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"59883b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1617542a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Process\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29c7aa96\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Complete Every Step Carefully\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ced0d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d62463d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18cf7834\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"41f79872\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-consult-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consultation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65e1b761\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"span\",\"title_color\":\"#FFD402\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#006943\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12cdbf13\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4175d29\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-pencil_art-light\",\"library\":\"jkiticon\"},\"title_text\":\"Design Installation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2adabf01\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b628\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"569b3221\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consturction \",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"67d6b2e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6fff79c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53c9a76e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"title_text\":\"Finished Work\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"555aace0\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d57540b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"71\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardening-background-with-garden-tolls-A9BGNJU.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]}},\"elements\":[{\"id\":\"147831a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"5a53d120\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"20\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Years of Experience\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"488f4727\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"6b8f6eae\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"76666759\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f532f9e\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"2850\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Happy Customers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"265fd738\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5473dc22\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"64\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Expert Landscapers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b38731e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4945f2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"627cd42c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65e3182\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.56499999999999772626324556767940521240234375},\"elements\":[{\"id\":\"43108b53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Projects\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45328989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Project We Have Done\\n\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"f382082\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.49900000000000233058017329312860965728759765625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":40,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"55ecfb57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"67afcbfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.0330000000000012505552149377763271331787109375,\"_inline_size_tablet\":23,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4989aa04\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Projects\",\"align\":\"right\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"left\",\"hover_animation\":\"float\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"32515d84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"3f5753f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"21982cfb\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":196,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Cutting-Leaf.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Cutting Leaf\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"404dc561\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"58d29b54\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":197,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Home-Garden.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Home Garden\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"3bff1dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"3c24185a\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":195,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/build-backyard.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Build Backyard\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_image_height_responsive_tablet\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b3cb58d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_image\":{\"id\":201,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-moving-aerial-photo-Z8KDGJ9-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_color\":\"#0000007D\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]}},\"elements\":[{\"id\":\"79705206\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"51c9a732\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73b2fe0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"What They Says About Us\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4876e632\",\"elType\":\"widget\",\"settings\":{\"sg_layout_testimonial_choose\":\"style-2\",\"sg_testimonials_image_size_imagesize_size\":\"medium\",\"sg_testimonials_list\":[{\"sg_testimonials_list_client_avatar\":{\"id\":\"75\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/3SUMAU.jpg\"},\"_id\":\"6e9b2e1\",\"sg_testimonials_list_client_name\":\"Regan Traynor\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"76\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/CASCKD8.jpg\"},\"sg_testimonials_list_client_name\":\"Maisha Dunn\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"d069a43\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"77\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/MKLVKTE.jpg\"},\"sg_testimonials_list_client_name\":\"Reis Leonard\",\"sg_testimonials_list_designation\":\"Businessman\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"05c24f5\"}],\"st_wrapper_alignment_responsive\":\"left\",\"st_client_name_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_description_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_client_name_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_client_designation_normal_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_client_designation_normal_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=d343bdf\",\"st_rating_color_responsive\":\"\",\"st_client_name_normal_color_responsive\":\"\",\"st_quote_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_layout_background_background_color\":\"\"},\"st_layout_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_layout_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_wrapper_fix_height\":\"\",\"sg_setting_autoplay\":\"yes\",\"sg_setting_autoplay_pause\":\"\",\"sg_setting_arrow\":\"\",\"sg_setting_arrow_position\":\"middle-edge\",\"sg_setting_dots\":\"\",\"sg_setting_quote\":\"yes\",\"sg_setting_rating\":\"\",\"st_layout_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_layout_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_slide_show_responsive\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"sg_setting_quote_icon\":{\"value\":\"jki jki-quote-light\",\"library\":\"jkiticon\"},\"sg_layout_image_position\":\"below\",\"st_layout_background_background_background\":\"classic\",\"st_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position\":\"\",\"st_quote_override_position_top_responsive\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"st_quote_override_position_left_responsive\":{\"unit\":\"px\",\"size\":442,\"sizes\":[]},\"st_client_name_normal_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_quote_normal_font_size_responsive\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"st_client_image_margin_responsive\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_rating_font_size_responsive\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"st_rating_margin_right_responsive\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_setting_slide_show_responsive_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"st_wrapper_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position_top_responsive_tablet\":{\"unit\":\"px\",\"size\":249,\"sizes\":[]},\"st_quote_override_position_top_responsive_mobile\":{\"unit\":\"px\",\"size\":193,\"sizes\":[]},\"st_quote_override_position_left_responsive_tablet\":{\"unit\":\"px\",\"size\":265,\"sizes\":[]},\"st_quote_override_position_left_responsive_mobile\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]},\"st_quote_normal_font_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"st_description_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_normal_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64afd05f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"746d276b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30338dfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f950be4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ca735b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5d6ca3ad\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_title_hover_color_responsive\":\"globals\\/colors?id=secondary\",\"st_readmore_hover_color_responsive\":\"globals\\/colors?id=secondary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#646974\",\"st_excerpt_color_responsive\":\"#646974\",\"st_title_normal_color_responsive\":\"#272B36\",\"st_thumbnail_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_title_hover_color_responsive\":\"#FA8D25\",\"st_readmore_normal_color_responsive\":\"#FA8D25\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":false}],\"isInner\":false}]'),(1230,217,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1231,217,'_elementor_css','a:6:{s:4:\"time\";i:1721833623;s:5:\"fonts\";a:1:{i:0;s:5:\"Inter\";}s:5:\"icons\";a:3:{i:0;s:0:\"\";i:1;s:8:\"jkiticon\";i:3;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1233,218,'_wp_attached_file','2024/07/Prestige-Luxury-Cleanings-LLC-logo-fav-1.png'),(1234,218,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:100;s:6:\"height\";i:100;s:4:\"file\";s:52:\"2024/07/Prestige-Luxury-Cleanings-LLC-logo-fav-1.png\";s:8:\"filesize\";i:2055;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1235,219,'_wp_attached_file','2024/07/Prestige-Luxury-Cleanings-LLC-logo-2.png'),(1236,219,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1176;s:6:\"height\";i:749;s:4:\"file\";s:48:\"2024/07/Prestige-Luxury-Cleanings-LLC-logo-2.png\";s:8:\"filesize\";i:40325;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:48:\"Prestige-Luxury-Cleanings-LLC-logo-2-300x191.png\";s:5:\"width\";i:300;s:6:\"height\";i:191;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11893;}s:5:\"large\";a:5:{s:4:\"file\";s:49:\"Prestige-Luxury-Cleanings-LLC-logo-2-1024x652.png\";s:5:\"width\";i:1024;s:6:\"height\";i:652;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:55011;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"Prestige-Luxury-Cleanings-LLC-logo-2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7703;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:48:\"Prestige-Luxury-Cleanings-LLC-logo-2-768x489.png\";s:5:\"width\";i:768;s:6:\"height\";i:489;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:37998;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1237,220,'_wp_page_template','default'),(1238,220,'_elementor_edit_mode','builder'),(1239,220,'_elementor_template_type','wp-post'),(1240,220,'_elementor_version','3.23.2'),(1241,220,'_elementor_data','[{\"id\":\"65d61e79\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"z_index\":2,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"49c5f53f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"z_index_tablet\":5},\"elements\":[{\"id\":\"7fd427a5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"a5ad795\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.315000000000001278976924368180334568023681640625,\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"4b6500b7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":107,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2eb94bb5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":58.89099999999999823785401531495153903961181640625,\"align\":\"flex-end\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":70,\"hide_mobile\":\"hidden-phone\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18bb12d6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-map-marker1-light\",\"library\":\"jkiticon\"},\"title_text\":\"Location\",\"description_text\":\"123 Wall St\\nMiami, FL 12345\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#EAEAEA\",\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"description_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"globals\\/typography?id=8966ad4\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"view\":\"framed\",\"icon_padding\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#006943\",\"title_color\":\"#00160E\",\"description_color\":\"#7F7F7F\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"294dea9a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-phone-call-line\",\"library\":\"jkiticon\"},\"title_text\":\"Call Us\",\"description_text\":\"+1 505 555 5555\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"description_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"globals\\/typography?id=8966ad4\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"view\":\"framed\",\"icon_padding\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"5ef5f227\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":21.452000000000001733724275254644453525543212890625,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"234dd6d2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"align\":\"right\",\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=558fe58\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"hover_animation\":\"float\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1ed2d9f1\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":3,\"blur\":15,\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.06)\"},\"background_background\":\"classic\",\"z_index\":1,\"jet_sticky_section_sticky\":\"yes\",\"jet_sticky_section_sticky_z_index\":\"10\",\"jet_sticky_section_sticky_background_background\":\"classic\",\"jet_sticky_section_sticky_background_color\":\"#FFFFFF\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"z_index_tablet\":4,\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a58714b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80.3490000000000037516656448133289813995361328125,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":20,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"14c9c516\",\"elType\":\"widget\",\"settings\":{\"sg_menu_choose\":\"menu\",\"sg_mobile_menu_logo\":{\"id\":107,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_mobile_menu_logo_size_imagesize_size\":\"full\",\"sg_mobile_menu_icon\":{\"value\":\"jki jki-bars-solid\",\"library\":\"jkiticon\"},\"st_menu_wrapper_height_responsive\":{\"unit\":\"px\",\"size\":74,\"sizes\":[]},\"st_menu_wrapper_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"},\"st_submenu_item_indicator_margin_responsive\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_submenu_panel_padding_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_panel_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_background_background_background\":\"classic\",\"st_submenu_panel_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_position_responsive_tablet\":\"left\",\"st_hamburger_menu_icon_background_background_background\":\"classic\",\"st_hamburger_menu_icon_background_background_color\":\"#FFFFFF00\",\"st_hamburger_menu_icon_border_border_border\":\"solid\",\"st_hamburger_menu_icon_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_hamburger_menu_close_background_background_background\":\"classic\",\"st_hamburger_menu_close_border_border_border\":\"solid\",\"st_hamburger_menu_close_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"st_menu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_menu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_color_responsive\":\"\",\"st_submenu_panel_background_background_color\":\"\",\"st_submenu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_submenu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_wrapper_mobile_color_tablet_responsive_tablet\":\"\",\"st_menu_item_text_normal_color_responsive_tablet\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_item_text_active_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_submenu_item_indicator_color_responsive_tablet\":\"\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_icon_color_hover_responsive_tablet\":\"\",\"st_hamburger_menu_close_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_close_color_hover_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_wrapper_background_background_color\":\"\",\"st_hamburger_menu_close_background_background_color\":\"globals\\/colors?id=secondary\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_border_border_color\":\"\",\"st_hamburger_menu_close_background_hover_background_color\":\"globals\\/colors?id=accent\"},\"st_submenu_panel_box_shadow_box_shadow_box_shadow_type\":\"yes\",\"st_submenu_panel_box_shadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_submenu_item_indicator_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_submenu_item_indicator_border_border_border\":\"solid\",\"st_submenu_item_indicator_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_submenu_panel_background_background_color\":\"#FFFFFF\",\"st_hamburger_menu_icon_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_icon_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_close_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_hamburger_menu_close_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_hamburger_menu_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_menu_item_text_normal_color_responsive_tablet\":\"#6EC1E4\",\"st_menu_item_text_hover_color_responsive_tablet\":\"#54595F\",\"st_menu_item_text_active_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_close_background_background_color\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"#54595F\",\"st_hamburger_menu_position_responsive_mobile\":\"left\",\"st_hamburger_menu_close_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_hamburger_menu_close_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"st_mobile_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"st_menu_item_text_hover_color_responsive\":\"#54595F\",\"st_menu_item_text_active_color_responsive\":\"#54595F\",\"st_mobile_menu_object_fit_responsive_tablet\":\"cover\",\"st_mobile_menu_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_hamburger_menu_close_background_hover_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_nav_menu\"}],\"isInner\":\"\"},{\"id\":\"5e047152\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":19.650999999999999801048033987171947956085205078125,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":30,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":80},\"elements\":[{\"id\":\"976c2f8\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"jki jki-facebook-f\",\"library\":\"jkiticon\"},\"_id\":\"0fb8cc7\"},{\"social_icon\":{\"value\":\"fab fa-x-twitter\",\"library\":\"fa-brands\"},\"_id\":\"4be5bc7\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"147010a\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"df2ad14\"}],\"shape\":\"circle\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"hover_animation\":\"shrink\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=secondary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_secondary_color\":\"globals\\/colors?id=accent\",\"hover_primary_color\":\"globals\\/colors?id=accent\"},\"align_tablet\":\"right\",\"hover_primary_color\":\"#006943\",\"hover_secondary_color\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(1242,220,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1243,220,'_elementor_css','a:6:{s:4:\"time\";i:1721822667;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:4:{i:0;s:8:\"jkiticon\";i:2;s:0:\"\";i:4;s:8:\"fa-solid\";i:7;s:9:\"fa-brands\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1244,221,'_wp_page_template','default'),(1245,221,'_elementor_edit_mode','builder'),(1246,221,'_elementor_template_type','wp-post'),(1247,221,'_elementor_version','3.23.2'),(1248,221,'_elementor_data','[{\"id\":\"65d61e79\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"z_index\":2,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"49c5f53f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"z_index_tablet\":5},\"elements\":[{\"id\":\"7fd427a5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"a5ad795\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.315000000000001278976924368180334568023681640625,\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"4b6500b7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":107,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2eb94bb5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":58.89099999999999823785401531495153903961181640625,\"align\":\"flex-end\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":70,\"hide_mobile\":\"hidden-phone\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18bb12d6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-map-marker1-light\",\"library\":\"jkiticon\"},\"title_text\":\"Location\",\"description_text\":\"123 Wall St\\nMiami, FL 12345\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#EAEAEA\",\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"description_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"globals\\/typography?id=8966ad4\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"view\":\"framed\",\"icon_padding\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#006943\",\"title_color\":\"#00160E\",\"description_color\":\"#7F7F7F\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"294dea9a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-phone-call-line\",\"library\":\"jkiticon\"},\"title_text\":\"Call Us\",\"description_text\":\"+1 505 555 5555\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"description_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"globals\\/typography?id=8966ad4\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"view\":\"framed\",\"icon_padding\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"5ef5f227\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":21.452000000000001733724275254644453525543212890625,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"234dd6d2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"align\":\"right\",\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=558fe58\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"hover_animation\":\"float\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1ed2d9f1\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":3,\"blur\":15,\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.06)\"},\"background_background\":\"classic\",\"z_index\":1,\"jet_sticky_section_sticky\":\"yes\",\"jet_sticky_section_sticky_z_index\":\"10\",\"jet_sticky_section_sticky_background_background\":\"classic\",\"jet_sticky_section_sticky_background_color\":\"#FFFFFF\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"z_index_tablet\":4,\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a58714b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80.3490000000000037516656448133289813995361328125,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":20,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"14c9c516\",\"elType\":\"widget\",\"settings\":{\"sg_menu_choose\":\"menu\",\"sg_mobile_menu_logo\":{\"id\":107,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_mobile_menu_logo_size_imagesize_size\":\"full\",\"sg_mobile_menu_icon\":{\"value\":\"jki jki-bars-solid\",\"library\":\"jkiticon\"},\"st_menu_wrapper_height_responsive\":{\"unit\":\"px\",\"size\":74,\"sizes\":[]},\"st_menu_wrapper_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"},\"st_submenu_item_indicator_margin_responsive\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_submenu_panel_padding_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_panel_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_background_background_background\":\"classic\",\"st_submenu_panel_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_position_responsive_tablet\":\"left\",\"st_hamburger_menu_icon_background_background_background\":\"classic\",\"st_hamburger_menu_icon_background_background_color\":\"#FFFFFF00\",\"st_hamburger_menu_icon_border_border_border\":\"solid\",\"st_hamburger_menu_icon_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_hamburger_menu_close_background_background_background\":\"classic\",\"st_hamburger_menu_close_border_border_border\":\"solid\",\"st_hamburger_menu_close_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"st_menu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_menu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_color_responsive\":\"\",\"st_submenu_panel_background_background_color\":\"\",\"st_submenu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_submenu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_wrapper_mobile_color_tablet_responsive_tablet\":\"\",\"st_menu_item_text_normal_color_responsive_tablet\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_item_text_active_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_submenu_item_indicator_color_responsive_tablet\":\"\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_icon_color_hover_responsive_tablet\":\"\",\"st_hamburger_menu_close_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_close_color_hover_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_wrapper_background_background_color\":\"\",\"st_hamburger_menu_close_background_background_color\":\"globals\\/colors?id=secondary\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_border_border_color\":\"\",\"st_hamburger_menu_close_background_hover_background_color\":\"globals\\/colors?id=accent\"},\"st_submenu_panel_box_shadow_box_shadow_box_shadow_type\":\"yes\",\"st_submenu_panel_box_shadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_submenu_item_indicator_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_submenu_item_indicator_border_border_border\":\"solid\",\"st_submenu_item_indicator_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_submenu_panel_background_background_color\":\"#FFFFFF\",\"st_hamburger_menu_icon_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_icon_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_close_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_hamburger_menu_close_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_hamburger_menu_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_menu_item_text_normal_color_responsive_tablet\":\"#6EC1E4\",\"st_menu_item_text_hover_color_responsive_tablet\":\"#54595F\",\"st_menu_item_text_active_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_close_background_background_color\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"#54595F\",\"st_hamburger_menu_position_responsive_mobile\":\"left\",\"st_hamburger_menu_close_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_hamburger_menu_close_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"st_mobile_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"st_menu_item_text_hover_color_responsive\":\"#54595F\",\"st_menu_item_text_active_color_responsive\":\"#54595F\",\"st_mobile_menu_object_fit_responsive_tablet\":\"cover\",\"st_mobile_menu_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_hamburger_menu_close_background_hover_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_nav_menu\"}],\"isInner\":\"\"},{\"id\":\"5e047152\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":19.650999999999999801048033987171947956085205078125,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":30,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":80},\"elements\":[{\"id\":\"976c2f8\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"jki jki-facebook-f\",\"library\":\"jkiticon\"},\"_id\":\"0fb8cc7\"},{\"social_icon\":{\"value\":\"fab fa-x-twitter\",\"library\":\"fa-brands\"},\"_id\":\"4be5bc7\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"147010a\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"df2ad14\"}],\"shape\":\"circle\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"hover_animation\":\"shrink\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=secondary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_secondary_color\":\"globals\\/colors?id=accent\",\"hover_primary_color\":\"globals\\/colors?id=accent\"},\"align_tablet\":\"right\",\"hover_primary_color\":\"#006943\",\"hover_secondary_color\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(1249,221,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1250,221,'_elementor_css','a:6:{s:4:\"time\";i:1721822667;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:4:{i:0;s:8:\"jkiticon\";i:2;s:0:\"\";i:4;s:8:\"fa-solid\";i:7;s:9:\"fa-brands\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1251,222,'_wp_page_template','default'),(1252,222,'_elementor_edit_mode','builder'),(1253,222,'_elementor_template_type','wp-post'),(1254,222,'_elementor_version','3.23.2'),(1255,222,'_elementor_data','[{\"id\":\"65d61e79\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"z_index\":2,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"49c5f53f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"z_index_tablet\":5},\"elements\":[{\"id\":\"7fd427a5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"a5ad795\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.315000000000001278976924368180334568023681640625,\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"4b6500b7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":219,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-2.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2eb94bb5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":58.89099999999999823785401531495153903961181640625,\"align\":\"flex-end\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":70,\"hide_mobile\":\"hidden-phone\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18bb12d6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-map-marker1-light\",\"library\":\"jkiticon\"},\"title_text\":\"Location\",\"description_text\":\"123 Wall St\\nMiami, FL 12345\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#EAEAEA\",\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"description_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"globals\\/typography?id=8966ad4\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"view\":\"framed\",\"icon_padding\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#006943\",\"title_color\":\"#00160E\",\"description_color\":\"#7F7F7F\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"294dea9a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-phone-call-line\",\"library\":\"jkiticon\"},\"title_text\":\"Call Us\",\"description_text\":\"+1 505 555 5555\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"description_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"globals\\/typography?id=8966ad4\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"view\":\"framed\",\"icon_padding\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"5ef5f227\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":21.452000000000001733724275254644453525543212890625,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"234dd6d2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"align\":\"right\",\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=558fe58\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"hover_animation\":\"float\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1ed2d9f1\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":3,\"blur\":15,\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.06)\"},\"background_background\":\"classic\",\"z_index\":1,\"jet_sticky_section_sticky\":\"yes\",\"jet_sticky_section_sticky_z_index\":\"10\",\"jet_sticky_section_sticky_background_background\":\"classic\",\"jet_sticky_section_sticky_background_color\":\"#FFFFFF\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"z_index_tablet\":4,\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a58714b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80.3490000000000037516656448133289813995361328125,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":20,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"14c9c516\",\"elType\":\"widget\",\"settings\":{\"sg_menu_choose\":\"menu\",\"sg_mobile_menu_logo\":{\"id\":107,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_mobile_menu_logo_size_imagesize_size\":\"full\",\"sg_mobile_menu_icon\":{\"value\":\"jki jki-bars-solid\",\"library\":\"jkiticon\"},\"st_menu_wrapper_height_responsive\":{\"unit\":\"px\",\"size\":74,\"sizes\":[]},\"st_menu_wrapper_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"},\"st_submenu_item_indicator_margin_responsive\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_submenu_panel_padding_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_panel_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_background_background_background\":\"classic\",\"st_submenu_panel_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_position_responsive_tablet\":\"left\",\"st_hamburger_menu_icon_background_background_background\":\"classic\",\"st_hamburger_menu_icon_background_background_color\":\"#FFFFFF00\",\"st_hamburger_menu_icon_border_border_border\":\"solid\",\"st_hamburger_menu_icon_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_hamburger_menu_close_background_background_background\":\"classic\",\"st_hamburger_menu_close_border_border_border\":\"solid\",\"st_hamburger_menu_close_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"st_menu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_menu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_color_responsive\":\"\",\"st_submenu_panel_background_background_color\":\"\",\"st_submenu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_submenu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_wrapper_mobile_color_tablet_responsive_tablet\":\"\",\"st_menu_item_text_normal_color_responsive_tablet\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_item_text_active_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_submenu_item_indicator_color_responsive_tablet\":\"\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_icon_color_hover_responsive_tablet\":\"\",\"st_hamburger_menu_close_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_close_color_hover_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_wrapper_background_background_color\":\"\",\"st_hamburger_menu_close_background_background_color\":\"globals\\/colors?id=secondary\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_border_border_color\":\"\",\"st_hamburger_menu_close_background_hover_background_color\":\"globals\\/colors?id=accent\"},\"st_submenu_panel_box_shadow_box_shadow_box_shadow_type\":\"yes\",\"st_submenu_panel_box_shadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_submenu_item_indicator_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_submenu_item_indicator_border_border_border\":\"solid\",\"st_submenu_item_indicator_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_submenu_panel_background_background_color\":\"#FFFFFF\",\"st_hamburger_menu_icon_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_icon_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_close_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_hamburger_menu_close_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_hamburger_menu_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_menu_item_text_normal_color_responsive_tablet\":\"#6EC1E4\",\"st_menu_item_text_hover_color_responsive_tablet\":\"#54595F\",\"st_menu_item_text_active_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_close_background_background_color\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"#54595F\",\"st_hamburger_menu_position_responsive_mobile\":\"left\",\"st_hamburger_menu_close_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_hamburger_menu_close_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"st_mobile_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"st_menu_item_text_hover_color_responsive\":\"#54595F\",\"st_menu_item_text_active_color_responsive\":\"#54595F\",\"st_mobile_menu_object_fit_responsive_tablet\":\"cover\",\"st_mobile_menu_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_hamburger_menu_close_background_hover_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_nav_menu\"}],\"isInner\":\"\"},{\"id\":\"5e047152\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":19.650999999999999801048033987171947956085205078125,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":30,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":80},\"elements\":[{\"id\":\"976c2f8\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"jki jki-facebook-f\",\"library\":\"jkiticon\"},\"_id\":\"0fb8cc7\"},{\"social_icon\":{\"value\":\"fab fa-x-twitter\",\"library\":\"fa-brands\"},\"_id\":\"4be5bc7\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"147010a\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"df2ad14\"}],\"shape\":\"circle\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"hover_animation\":\"shrink\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=secondary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_secondary_color\":\"globals\\/colors?id=accent\",\"hover_primary_color\":\"globals\\/colors?id=accent\"},\"align_tablet\":\"right\",\"hover_primary_color\":\"#006943\",\"hover_secondary_color\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(1256,222,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1257,222,'_elementor_css','a:6:{s:4:\"time\";i:1721822667;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:4:{i:0;s:8:\"jkiticon\";i:2;s:0:\"\";i:4;s:8:\"fa-solid\";i:7;s:9:\"fa-brands\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1259,223,'_elementor_edit_mode','builder'),(1260,223,'_elementor_template_type','wp-page'),(1261,223,'_elementor_version','3.23.2'),(1262,223,'_wp_page_template','default'),(1263,223,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1264,223,'_elementor_data','[{\"id\":\"35495243\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"Eldery male gardener using scissors for bushes\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"160\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0,\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_size_tablet\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"top center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00160E\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b\":\"#00000054\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_slideshow_gallery\":[{\"id\":154,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-02-5.jpg\"},{\"id\":155,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-03-3.jpg\"},{\"id\":156,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-04-3.jpg\"},{\"id\":157,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-01-5.jpg\"}]},\"elements\":[{\"id\":\"739a26d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":65,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=06a34e7\"}},\"elements\":[{\"id\":\"132d1a8e\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Complete For All\",\"sg_title_focused\":\" Landscape \",\"sg_title_after\":\" Service And Maintenance\",\"sg_title_html_tag\":\"h1\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=primary\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"7c49583a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"635cb25b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"23cf340e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37.85499999999999687361196265555918216705322265625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":48,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"1c4c950d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4768b6f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":62.14500000000000312638803734444081783294677734375,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"flex-start\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":52,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"34c0badb\",\"elType\":\"widget\",\"settings\":{\"sg_video_button_title\":\"Play Video\",\"sg_video_button_icon\":{\"value\":\"jki jki-play\",\"library\":\"jkiticon\"},\"sg_video_url\":\"#\",\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_width_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_line_height_responsive\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#FFD402\",\"st_button_normal_glow_color_responsive\":\"#00694361\",\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"_element_width\":\"auto\",\"__globals__\":{\"st_button_normal_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=accent\",\"st_border_normal_border_border_color\":\"\",\"st_button_hover_text_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_glow_color_responsive\":\"\"},\"st_button_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_button_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_width_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_line_height_responsive_mobile\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"st_border_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_border_normal_border_border_color\":\"#FFD027\",\"st_button_line_height_responsive_tablet\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"st_button_normal_background_background_color\":\"#006943\",\"st_button_hover_text_color_responsive\":\"#006943\",\"st_button_hover_background_background_color\":\"#FFD402\",\"sg_video_auto_play\":\"\",\"sg_video_mute\":\"\"},\"elements\":[],\"widgetType\":\"jkit_video_button\"},{\"id\":\"232ec8da\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Intro\",\"align\":\"right\",\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"hide_mobile\":\"hidden-mobile\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#00160E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49b348ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"edc2dbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.00200000000000244426701101474463939666748046875,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e2246bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Prestige Luxury Cleanings LLC\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"139cc45f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Landscaping And Garden Care Services\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dc78e71\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"597dc67d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"26cf3840\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b19bda0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":167,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"980\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a46c929\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c4d8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Public Liability Insurance\",\"_id\":\"a978734\"},{\"text\":\"Environmentally Friendly\",\"_id\":\"1cd10a1\"},{\"text\":\"On Time, Every Time\",\"_id\":\"c6767db\"},{\"text\":\"Beautiful Garden Designs\",\"_id\":\"d4743f4\"},{\"text\":\"Modern Machinery And Tool\",\"_id\":\"535c17d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"398321ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4c7c15d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.9129999999999967030817060731351375579833984375,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5683e90d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":162,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"860\",\"height\":\"980\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b6190b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":163,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"-59\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"250636f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"713aa588\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"51a71b71\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#00160E\",\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=primary\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=06a34e7\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"st_content_title_color_responsive\":\"#7F7F7F\",\"st_super_color_responsive\":\"#FFD402\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\",\"sg_setting_html_tag\":\"span\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5557874f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"73847855\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":174,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/garden-maintenance-performed-by-pro-gardener-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"b1058a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":224,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":478,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":325,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"69098afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"40\",\"bottom\":\"80\",\"left\":\"40\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"7cb7bf82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91cb5d9\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26358abf\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Have The Perfect Solution For Your Landscape Problems\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15a36cc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42c8d36c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7114454f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76f24ca8\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Variation Gardening\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"138cc39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28a78a06\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Expert Landscapers\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c5ac2bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38fdb183\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3ce0b95b\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Affordable Price\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-save-money-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4c80f133\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7451fb11\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Free Consultation\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-Consultancy-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e93f2c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"39a46e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6773b2a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"87647bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find The Best Service For Your Garden\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e2cc66e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30164d28\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e8639b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":142,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-services.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fa92c14\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2c434fb3\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"5abe2e18\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33425b9f\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Residential And Commercial Projects\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"472ed309\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"67cb221c\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e6d8a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":142,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-services.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd233da\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6535a16\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"937e2e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7aee\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Lawn Services\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"d9723d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"c908972\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37c1cce6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":143,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/driveway-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b3e60ba\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3b291bbf\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"20b91942\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5649f719\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Driveway Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6300b69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"256ddf68\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d41e618\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3735f0b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":144,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/deck-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"741128a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3691562\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3c8a0e6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5eb1b3b9\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Deck Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"25f37292\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"61c9ff8e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8781ee3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":145,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/weed-control.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd84c7d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"14f7965\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fb2459e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0582197\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Weed Control \",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"f7b0fa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0197d9e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f3de9c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":146,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/grass-feed.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"75ba950\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"23edbf4\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"ad70b3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1c4ac7\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Grass Feed\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6f592ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0043a3b\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"790dd775\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"360\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"160\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"140\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"background_overlay_color_b\":\"#000414\",\"background_overlay_image\":{\"id\":186,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/a-gardener-watering-plants-in-a-flowerbed-2RT8DWL-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]}},\"elements\":[{\"id\":\"a2ed5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7e37f762\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Landscaping\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a092069\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d5099\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need Someone To Take Care Your Garden & Lawn?\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=07ee36d\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1198756c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"66521a56\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":20,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":4},\"elements\":[{\"id\":\"1a89d099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.5090000000000003410605131648480892181396484375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"id\":191,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/happy-gardeners-with-plants-and-lawn-mower-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"space-between\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_color\":\"#FFFFFF00\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":9,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"46b821c1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":219,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":183,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"449971a9\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Make Appointment & Take Care Your Garden\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=secondary\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=93191b3\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_content_title_color_hover_responsive\":\"#FFFFFF\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#FFFFFF\",\"st_icon_color_responsive\":\"#00E5CC\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#00E5CC\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":false},{\"id\":\"13747b6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.4909999999999996589394868351519107818603515625,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a13f42e\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"178***1721830795182\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fde8487\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"59883b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1617542a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Process\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29c7aa96\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Complete Every Step Carefully\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ced0d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d62463d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18cf7834\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"41f79872\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-consult-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consultation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65e1b761\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"span\",\"title_color\":\"#FFD402\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#006943\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12cdbf13\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4175d29\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-pencil_art-light\",\"library\":\"jkiticon\"},\"title_text\":\"Design Installation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2adabf01\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b628\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"569b3221\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consturction \",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"67d6b2e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6fff79c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53c9a76e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"title_text\":\"Finished Work\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"555aace0\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d57540b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"71\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardening-background-with-garden-tolls-A9BGNJU.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]}},\"elements\":[{\"id\":\"147831a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"5a53d120\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"20\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Years of Experience\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"488f4727\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"6b8f6eae\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"76666759\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f532f9e\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"2850\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Happy Customers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"265fd738\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5473dc22\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"64\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Expert Landscapers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b38731e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4945f2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"627cd42c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65e3182\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.56499999999999772626324556767940521240234375},\"elements\":[{\"id\":\"43108b53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Projects\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45328989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Project We Have Done\\n\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"f382082\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.49900000000000233058017329312860965728759765625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":40,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"55ecfb57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"67afcbfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.0330000000000012505552149377763271331787109375,\"_inline_size_tablet\":23,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4989aa04\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Projects\",\"align\":\"right\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"left\",\"hover_animation\":\"float\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"32515d84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"3f5753f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"21982cfb\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":196,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Cutting-Leaf.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Cutting Leaf\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"404dc561\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"58d29b54\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":197,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Home-Garden.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Home Garden\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"3bff1dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"3c24185a\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":195,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/build-backyard.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Build Backyard\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_image_height_responsive_tablet\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b3cb58d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_image\":{\"id\":201,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-moving-aerial-photo-Z8KDGJ9-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_color\":\"#0000007D\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]}},\"elements\":[{\"id\":\"79705206\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"51c9a732\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73b2fe0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"What They Says About Us\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4876e632\",\"elType\":\"widget\",\"settings\":{\"sg_layout_testimonial_choose\":\"style-2\",\"sg_testimonials_image_size_imagesize_size\":\"medium\",\"sg_testimonials_list\":[{\"sg_testimonials_list_client_avatar\":{\"id\":\"75\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/3SUMAU.jpg\"},\"_id\":\"6e9b2e1\",\"sg_testimonials_list_client_name\":\"Regan Traynor\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"76\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/CASCKD8.jpg\"},\"sg_testimonials_list_client_name\":\"Maisha Dunn\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"d069a43\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"77\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/MKLVKTE.jpg\"},\"sg_testimonials_list_client_name\":\"Reis Leonard\",\"sg_testimonials_list_designation\":\"Businessman\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"05c24f5\"}],\"st_wrapper_alignment_responsive\":\"left\",\"st_client_name_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_description_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_client_name_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_client_designation_normal_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_client_designation_normal_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=d343bdf\",\"st_rating_color_responsive\":\"\",\"st_client_name_normal_color_responsive\":\"\",\"st_quote_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_layout_background_background_color\":\"\"},\"st_layout_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_layout_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_wrapper_fix_height\":\"\",\"sg_setting_autoplay\":\"yes\",\"sg_setting_autoplay_pause\":\"\",\"sg_setting_arrow\":\"\",\"sg_setting_arrow_position\":\"middle-edge\",\"sg_setting_dots\":\"\",\"sg_setting_quote\":\"yes\",\"sg_setting_rating\":\"\",\"st_layout_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_layout_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_slide_show_responsive\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"sg_setting_quote_icon\":{\"value\":\"jki jki-quote-light\",\"library\":\"jkiticon\"},\"sg_layout_image_position\":\"below\",\"st_layout_background_background_background\":\"classic\",\"st_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position\":\"\",\"st_quote_override_position_top_responsive\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"st_quote_override_position_left_responsive\":{\"unit\":\"px\",\"size\":442,\"sizes\":[]},\"st_client_name_normal_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_quote_normal_font_size_responsive\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"st_client_image_margin_responsive\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_rating_font_size_responsive\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"st_rating_margin_right_responsive\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_setting_slide_show_responsive_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"st_wrapper_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position_top_responsive_tablet\":{\"unit\":\"px\",\"size\":249,\"sizes\":[]},\"st_quote_override_position_top_responsive_mobile\":{\"unit\":\"px\",\"size\":193,\"sizes\":[]},\"st_quote_override_position_left_responsive_tablet\":{\"unit\":\"px\",\"size\":265,\"sizes\":[]},\"st_quote_override_position_left_responsive_mobile\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]},\"st_quote_normal_font_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"st_description_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_normal_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64afd05f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"746d276b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30338dfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f950be4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ca735b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5d6ca3ad\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_title_hover_color_responsive\":\"globals\\/colors?id=secondary\",\"st_readmore_hover_color_responsive\":\"globals\\/colors?id=secondary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#646974\",\"st_excerpt_color_responsive\":\"#646974\",\"st_title_normal_color_responsive\":\"#272B36\",\"st_thumbnail_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_title_hover_color_responsive\":\"#FA8D25\",\"st_readmore_normal_color_responsive\":\"#FA8D25\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":false}],\"isInner\":false}]'),(1265,223,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1266,223,'_elementor_css','a:6:{s:4:\"time\";i:1721834273;s:5:\"fonts\";a:1:{i:0;s:5:\"Inter\";}s:5:\"icons\";a:3:{i:0;s:0:\"\";i:1;s:8:\"jkiticon\";i:3;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1267,224,'_elementor_edit_mode','builder'),(1268,224,'_elementor_template_type','wp-page'),(1269,224,'_elementor_version','3.23.2'),(1270,224,'_wp_page_template','default'),(1271,224,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1272,224,'_elementor_data','[{\"id\":\"35495243\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"Eldery male gardener using scissors for bushes\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"160\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0,\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_size_tablet\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"top center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00160E\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b\":\"#00000054\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_slideshow_gallery\":[{\"id\":154,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-02-5.jpg\"},{\"id\":155,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-03-3.jpg\"},{\"id\":156,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-04-3.jpg\"},{\"id\":157,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-01-5.jpg\"}]},\"elements\":[{\"id\":\"739a26d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":65,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=06a34e7\"}},\"elements\":[{\"id\":\"132d1a8e\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Complete For All\",\"sg_title_focused\":\" Landscape \",\"sg_title_after\":\" Service And Maintenance\",\"sg_title_html_tag\":\"h1\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=primary\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"7c49583a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"635cb25b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"23cf340e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37.85499999999999687361196265555918216705322265625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":48,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"1c4c950d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4768b6f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":62.14500000000000312638803734444081783294677734375,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"flex-start\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":52,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"34c0badb\",\"elType\":\"widget\",\"settings\":{\"sg_video_button_title\":\"Play Video\",\"sg_video_button_icon\":{\"value\":\"jki jki-play\",\"library\":\"jkiticon\"},\"sg_video_url\":\"#\",\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_width_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_line_height_responsive\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#FFD402\",\"st_button_normal_glow_color_responsive\":\"#00694361\",\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"_element_width\":\"auto\",\"__globals__\":{\"st_button_normal_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=accent\",\"st_border_normal_border_border_color\":\"\",\"st_button_hover_text_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_glow_color_responsive\":\"\"},\"st_button_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_button_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_width_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_line_height_responsive_mobile\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"st_border_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_border_normal_border_border_color\":\"#FFD027\",\"st_button_line_height_responsive_tablet\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"st_button_normal_background_background_color\":\"#006943\",\"st_button_hover_text_color_responsive\":\"#006943\",\"st_button_hover_background_background_color\":\"#FFD402\",\"sg_video_auto_play\":\"\",\"sg_video_mute\":\"\"},\"elements\":[],\"widgetType\":\"jkit_video_button\"},{\"id\":\"232ec8da\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Intro\",\"align\":\"right\",\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"hide_mobile\":\"hidden-mobile\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#00160E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49b348ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"edc2dbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.00200000000000244426701101474463939666748046875,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e2246bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Prestige Luxury Cleanings LLC\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"139cc45f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Landscaping And Garden Care Services\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dc78e71\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"597dc67d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"26cf3840\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b19bda0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":167,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"980\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a46c929\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c4d8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Public Liability Insurance\",\"_id\":\"a978734\"},{\"text\":\"Environmentally Friendly\",\"_id\":\"1cd10a1\"},{\"text\":\"On Time, Every Time\",\"_id\":\"c6767db\"},{\"text\":\"Beautiful Garden Designs\",\"_id\":\"d4743f4\"},{\"text\":\"Modern Machinery And Tool\",\"_id\":\"535c17d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"398321ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4c7c15d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.9129999999999967030817060731351375579833984375,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5683e90d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":162,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"860\",\"height\":\"980\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b6190b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":163,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"-59\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"250636f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"713aa588\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"51a71b71\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#00160E\",\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=primary\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=06a34e7\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"st_content_title_color_responsive\":\"#7F7F7F\",\"st_super_color_responsive\":\"#FFD402\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\",\"sg_setting_html_tag\":\"span\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5557874f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"73847855\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":174,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/garden-maintenance-performed-by-pro-gardener-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"b1058a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":224,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":478,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":325,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"69098afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"40\",\"bottom\":\"80\",\"left\":\"40\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"7cb7bf82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91cb5d9\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26358abf\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Have The Perfect Solution For Your Landscape Problems\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15a36cc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42c8d36c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7114454f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76f24ca8\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Variation Gardening\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"138cc39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28a78a06\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Expert Landscapers\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c5ac2bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38fdb183\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3ce0b95b\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Affordable Price\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-save-money-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4c80f133\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7451fb11\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Free Consultation\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-Consultancy-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e93f2c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"39a46e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6773b2a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"87647bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find The Best Service For Your Garden\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e2cc66e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30164d28\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e8639b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":142,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-services.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fa92c14\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2c434fb3\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"5abe2e18\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33425b9f\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Residential And Commercial Projects\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"472ed309\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"67cb221c\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e6d8a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":142,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-services.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd233da\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6535a16\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"937e2e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7aee\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Lawn Services\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"d9723d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"c908972\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37c1cce6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":143,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/driveway-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b3e60ba\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3b291bbf\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"20b91942\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5649f719\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Driveway Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6300b69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"256ddf68\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d41e618\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3735f0b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":144,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/deck-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"741128a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3691562\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3c8a0e6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5eb1b3b9\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Deck Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"25f37292\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"61c9ff8e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8781ee3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":145,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/weed-control.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd84c7d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"14f7965\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fb2459e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0582197\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Weed Control \",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"f7b0fa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0197d9e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f3de9c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":146,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/grass-feed.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"75ba950\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"23edbf4\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"ad70b3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1c4ac7\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Grass Feed\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6f592ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0043a3b\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"790dd775\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"360\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"160\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"140\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"background_overlay_color_b\":\"#000414\",\"background_overlay_image\":{\"id\":186,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/a-gardener-watering-plants-in-a-flowerbed-2RT8DWL-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]}},\"elements\":[{\"id\":\"a2ed5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7e37f762\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Landscaping\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a092069\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d5099\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need Someone To Take Care Your Garden & Lawn?\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=07ee36d\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1198756c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"66521a56\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":20,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":4},\"elements\":[{\"id\":\"1a89d099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.5090000000000003410605131648480892181396484375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"id\":191,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/happy-gardeners-with-plants-and-lawn-mower-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"space-between\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_color\":\"#FFFFFF00\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":9,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"46b821c1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":219,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":183,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"449971a9\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Make Appointment & Take Care Your Garden\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=secondary\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=93191b3\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_content_title_color_hover_responsive\":\"#FFFFFF\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#FFFFFF\",\"st_icon_color_responsive\":\"#00E5CC\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#00E5CC\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":false},{\"id\":\"13747b6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.4909999999999996589394868351519107818603515625,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a13f42e\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"178***1721830795182\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fde8487\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"59883b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1617542a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Process\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29c7aa96\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Complete Every Step Carefully\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ced0d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d62463d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18cf7834\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"41f79872\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-consult-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consultation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65e1b761\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"span\",\"title_color\":\"#FFD402\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#006943\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12cdbf13\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4175d29\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-pencil_art-light\",\"library\":\"jkiticon\"},\"title_text\":\"Design Installation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2adabf01\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b628\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"569b3221\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consturction \",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"67d6b2e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6fff79c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53c9a76e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"title_text\":\"Finished Work\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"555aace0\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d57540b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"71\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardening-background-with-garden-tolls-A9BGNJU.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]}},\"elements\":[{\"id\":\"147831a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"5a53d120\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"20\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Years of Experience\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"488f4727\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"6b8f6eae\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"76666759\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f532f9e\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"2850\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Happy Customers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"265fd738\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5473dc22\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"64\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Expert Landscapers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b38731e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4945f2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"627cd42c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65e3182\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.56499999999999772626324556767940521240234375},\"elements\":[{\"id\":\"43108b53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Projects\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45328989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Project We Have Done\\n\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"f382082\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.49900000000000233058017329312860965728759765625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":40,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"55ecfb57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"67afcbfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.0330000000000012505552149377763271331787109375,\"_inline_size_tablet\":23,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4989aa04\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Projects\",\"align\":\"right\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"left\",\"hover_animation\":\"float\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"32515d84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"3f5753f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"21982cfb\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":196,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Cutting-Leaf.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Cutting Leaf\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"404dc561\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"58d29b54\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":197,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Home-Garden.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Home Garden\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"3bff1dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"3c24185a\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":195,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/build-backyard.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Build Backyard\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_image_height_responsive_tablet\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b3cb58d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_image\":{\"id\":201,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-moving-aerial-photo-Z8KDGJ9-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_color\":\"#0000007D\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]}},\"elements\":[{\"id\":\"79705206\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"51c9a732\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73b2fe0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"What They Says About Us\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4876e632\",\"elType\":\"widget\",\"settings\":{\"sg_layout_testimonial_choose\":\"style-2\",\"sg_testimonials_image_size_imagesize_size\":\"medium\",\"sg_testimonials_list\":[{\"sg_testimonials_list_client_avatar\":{\"id\":\"75\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/3SUMAU.jpg\"},\"_id\":\"6e9b2e1\",\"sg_testimonials_list_client_name\":\"Regan Traynor\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"76\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/CASCKD8.jpg\"},\"sg_testimonials_list_client_name\":\"Maisha Dunn\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"d069a43\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"77\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/MKLVKTE.jpg\"},\"sg_testimonials_list_client_name\":\"Reis Leonard\",\"sg_testimonials_list_designation\":\"Businessman\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"05c24f5\"}],\"st_wrapper_alignment_responsive\":\"left\",\"st_client_name_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_description_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_client_name_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_client_designation_normal_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_client_designation_normal_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=d343bdf\",\"st_rating_color_responsive\":\"\",\"st_client_name_normal_color_responsive\":\"\",\"st_quote_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_layout_background_background_color\":\"\"},\"st_layout_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_layout_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_wrapper_fix_height\":\"\",\"sg_setting_autoplay\":\"yes\",\"sg_setting_autoplay_pause\":\"\",\"sg_setting_arrow\":\"\",\"sg_setting_arrow_position\":\"middle-edge\",\"sg_setting_dots\":\"\",\"sg_setting_quote\":\"yes\",\"sg_setting_rating\":\"\",\"st_layout_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_layout_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_slide_show_responsive\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"sg_setting_quote_icon\":{\"value\":\"jki jki-quote-light\",\"library\":\"jkiticon\"},\"sg_layout_image_position\":\"below\",\"st_layout_background_background_background\":\"classic\",\"st_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position\":\"\",\"st_quote_override_position_top_responsive\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"st_quote_override_position_left_responsive\":{\"unit\":\"px\",\"size\":442,\"sizes\":[]},\"st_client_name_normal_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_quote_normal_font_size_responsive\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"st_client_image_margin_responsive\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_rating_font_size_responsive\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"st_rating_margin_right_responsive\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_setting_slide_show_responsive_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"st_wrapper_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position_top_responsive_tablet\":{\"unit\":\"px\",\"size\":249,\"sizes\":[]},\"st_quote_override_position_top_responsive_mobile\":{\"unit\":\"px\",\"size\":193,\"sizes\":[]},\"st_quote_override_position_left_responsive_tablet\":{\"unit\":\"px\",\"size\":265,\"sizes\":[]},\"st_quote_override_position_left_responsive_mobile\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]},\"st_quote_normal_font_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"st_description_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_normal_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64afd05f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"746d276b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30338dfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f950be4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ca735b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5d6ca3ad\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_title_hover_color_responsive\":\"globals\\/colors?id=secondary\",\"st_readmore_hover_color_responsive\":\"globals\\/colors?id=secondary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#646974\",\"st_excerpt_color_responsive\":\"#646974\",\"st_title_normal_color_responsive\":\"#272B36\",\"st_thumbnail_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_title_hover_color_responsive\":\"#FA8D25\",\"st_readmore_normal_color_responsive\":\"#FA8D25\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":false}],\"isInner\":false}]'),(1273,224,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1274,224,'_elementor_css','a:6:{s:4:\"time\";i:1721834273;s:5:\"fonts\";a:1:{i:0;s:5:\"Inter\";}s:5:\"icons\";a:3:{i:0;s:0:\"\";i:1;s:8:\"jkiticon\";i:3;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1275,225,'_elementor_edit_mode','builder'),(1276,225,'_elementor_template_type','wp-page'),(1277,225,'_elementor_version','3.23.2'),(1278,225,'_wp_page_template','default'),(1279,225,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'); INSERT INTO `victorq_postmeta` VALUES (1280,225,'_elementor_data','[{\"id\":\"35495243\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"Eldery male gardener using scissors for bushes\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"160\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0,\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_size_tablet\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"top center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00160E\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b\":\"#00000054\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_slideshow_gallery\":[{\"id\":154,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-02-5.jpg\"},{\"id\":155,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-03-3.jpg\"},{\"id\":156,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-04-3.jpg\"},{\"id\":157,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-01-5.jpg\"}]},\"elements\":[{\"id\":\"739a26d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":65,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=06a34e7\"}},\"elements\":[{\"id\":\"132d1a8e\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Complete For All\",\"sg_title_focused\":\" Landscape \",\"sg_title_after\":\" Service And Maintenance\",\"sg_title_html_tag\":\"h1\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=primary\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"7c49583a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"635cb25b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"23cf340e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37.85499999999999687361196265555918216705322265625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":48,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"1c4c950d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4768b6f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":62.14500000000000312638803734444081783294677734375,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"flex-start\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":52,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"34c0badb\",\"elType\":\"widget\",\"settings\":{\"sg_video_button_title\":\"Play Video\",\"sg_video_button_icon\":{\"value\":\"jki jki-play\",\"library\":\"jkiticon\"},\"sg_video_url\":\"#\",\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_width_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_line_height_responsive\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#FFD402\",\"st_button_normal_glow_color_responsive\":\"#00694361\",\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"_element_width\":\"auto\",\"__globals__\":{\"st_button_normal_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=accent\",\"st_border_normal_border_border_color\":\"\",\"st_button_hover_text_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_glow_color_responsive\":\"\"},\"st_button_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_button_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_width_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_line_height_responsive_mobile\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"st_border_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_border_normal_border_border_color\":\"#FFD027\",\"st_button_line_height_responsive_tablet\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"st_button_normal_background_background_color\":\"#006943\",\"st_button_hover_text_color_responsive\":\"#006943\",\"st_button_hover_background_background_color\":\"#FFD402\",\"sg_video_auto_play\":\"\",\"sg_video_mute\":\"\"},\"elements\":[],\"widgetType\":\"jkit_video_button\"},{\"id\":\"232ec8da\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Intro\",\"align\":\"right\",\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"hide_mobile\":\"hidden-mobile\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#00160E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49b348ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"edc2dbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.00200000000000244426701101474463939666748046875,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e2246bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Prestige Luxury Cleanings LLC\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"139cc45f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Landscaping And Garden Care Services\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dc78e71\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"597dc67d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"26cf3840\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b19bda0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":167,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"980\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a46c929\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c4d8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Public Liability Insurance\",\"_id\":\"a978734\"},{\"text\":\"Environmentally Friendly\",\"_id\":\"1cd10a1\"},{\"text\":\"On Time, Every Time\",\"_id\":\"c6767db\"},{\"text\":\"Beautiful Garden Designs\",\"_id\":\"d4743f4\"},{\"text\":\"Modern Machinery And Tool\",\"_id\":\"535c17d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"398321ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4c7c15d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.9129999999999967030817060731351375579833984375,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5683e90d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":162,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"860\",\"height\":\"980\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b6190b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":163,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"-59\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"250636f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"713aa588\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"51a71b71\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#00160E\",\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=primary\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=06a34e7\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"st_content_title_color_responsive\":\"#7F7F7F\",\"st_super_color_responsive\":\"#FFD402\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\",\"sg_setting_html_tag\":\"span\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5557874f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"73847855\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":174,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/garden-maintenance-performed-by-pro-gardener-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"b1058a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":224,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":478,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":325,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"69098afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"40\",\"bottom\":\"80\",\"left\":\"40\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"7cb7bf82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91cb5d9\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26358abf\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Have The Perfect Solution For Your Landscape Problems\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15a36cc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42c8d36c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7114454f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76f24ca8\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Variation Gardening\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"138cc39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28a78a06\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Expert Landscapers\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c5ac2bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38fdb183\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3ce0b95b\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Affordable Price\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-save-money-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4c80f133\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7451fb11\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Free Consultation\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-Consultancy-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e93f2c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"39a46e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6773b2a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"87647bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Providing Services For All Your Residential And Commercial Needs.\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3d4509\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"59ebf2c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Providing services for all your residential and commercial needs \",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"align\":\"center\",\"title_color\":\"#00160E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30164d28\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e8639b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":142,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-services.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fa92c14\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2c434fb3\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"5abe2e18\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33425b9f\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Residential And Commercial Projects\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"472ed309\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"67cb221c\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e6d8a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":142,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-services.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd233da\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6535a16\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"937e2e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7aee\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Lawn Services\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"d9723d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"c908972\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37c1cce6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":143,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/driveway-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b3e60ba\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3b291bbf\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"20b91942\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5649f719\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Driveway Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6300b69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"256ddf68\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d41e618\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3735f0b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":144,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/deck-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"741128a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3691562\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3c8a0e6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5eb1b3b9\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Deck Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"25f37292\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"61c9ff8e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8781ee3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":145,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/weed-control.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd84c7d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"14f7965\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fb2459e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0582197\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Weed Control \",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"f7b0fa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0197d9e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f3de9c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":146,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/grass-feed.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"75ba950\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"23edbf4\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"ad70b3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1c4ac7\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Grass Feed\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6f592ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0043a3b\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"790dd775\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"360\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"160\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"140\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"background_overlay_color_b\":\"#000414\",\"background_overlay_image\":{\"id\":186,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/a-gardener-watering-plants-in-a-flowerbed-2RT8DWL-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]}},\"elements\":[{\"id\":\"a2ed5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7e37f762\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Landscaping\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a092069\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d5099\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need Someone To Take Care Your Garden & Lawn?\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=07ee36d\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1198756c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"66521a56\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":20,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":4},\"elements\":[{\"id\":\"1a89d099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.5090000000000003410605131648480892181396484375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"id\":191,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/happy-gardeners-with-plants-and-lawn-mower-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"space-between\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_color\":\"#FFFFFF00\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":9,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"46b821c1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":219,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":183,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"449971a9\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Make Appointment & Take Care Your Garden\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=secondary\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=93191b3\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_content_title_color_hover_responsive\":\"#FFFFFF\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#FFFFFF\",\"st_icon_color_responsive\":\"#00E5CC\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#00E5CC\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":false},{\"id\":\"13747b6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.4909999999999996589394868351519107818603515625,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a13f42e\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"178***1721830795182\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fde8487\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"59883b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1617542a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Process\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29c7aa96\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Complete Every Step Carefully\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ced0d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d62463d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18cf7834\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"41f79872\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-consult-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consultation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65e1b761\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"span\",\"title_color\":\"#FFD402\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#006943\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12cdbf13\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4175d29\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-pencil_art-light\",\"library\":\"jkiticon\"},\"title_text\":\"Design Installation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2adabf01\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b628\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"569b3221\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consturction \",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"67d6b2e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6fff79c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53c9a76e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"title_text\":\"Finished Work\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"555aace0\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d57540b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"71\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardening-background-with-garden-tolls-A9BGNJU.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]}},\"elements\":[{\"id\":\"147831a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"5a53d120\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"20\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Years of Experience\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"488f4727\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"6b8f6eae\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"76666759\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f532f9e\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"2850\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Happy Customers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"265fd738\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5473dc22\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"64\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Expert Landscapers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b38731e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4945f2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"627cd42c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65e3182\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.56499999999999772626324556767940521240234375},\"elements\":[{\"id\":\"43108b53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Projects\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45328989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Project We Have Done\\n\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"f382082\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.49900000000000233058017329312860965728759765625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":40,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"55ecfb57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"67afcbfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.0330000000000012505552149377763271331787109375,\"_inline_size_tablet\":23,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4989aa04\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Projects\",\"align\":\"right\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"left\",\"hover_animation\":\"float\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"32515d84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"3f5753f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"21982cfb\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":196,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Cutting-Leaf.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Cutting Leaf\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"404dc561\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"58d29b54\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":197,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Home-Garden.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Home Garden\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"3bff1dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"3c24185a\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":195,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/build-backyard.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Build Backyard\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_image_height_responsive_tablet\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b3cb58d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_image\":{\"id\":201,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-moving-aerial-photo-Z8KDGJ9-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_color\":\"#0000007D\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"79705206\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"51c9a732\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73b2fe0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"What They Says About Us\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4876e632\",\"elType\":\"widget\",\"settings\":{\"sg_layout_testimonial_choose\":\"style-2\",\"sg_testimonials_image_size_imagesize_size\":\"medium\",\"sg_testimonials_list\":[{\"sg_testimonials_list_client_avatar\":{\"id\":\"75\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/3SUMAU.jpg\"},\"_id\":\"6e9b2e1\",\"sg_testimonials_list_client_name\":\"Regan Traynor\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"76\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/CASCKD8.jpg\"},\"sg_testimonials_list_client_name\":\"Maisha Dunn\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"d069a43\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"77\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/MKLVKTE.jpg\"},\"sg_testimonials_list_client_name\":\"Reis Leonard\",\"sg_testimonials_list_designation\":\"Businessman\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"05c24f5\"}],\"st_wrapper_alignment_responsive\":\"left\",\"st_client_name_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_description_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_client_name_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_client_designation_normal_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_client_designation_normal_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=d343bdf\",\"st_rating_color_responsive\":\"\",\"st_client_name_normal_color_responsive\":\"\",\"st_quote_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_layout_background_background_color\":\"\"},\"st_layout_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_layout_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_wrapper_fix_height\":\"\",\"sg_setting_autoplay\":\"yes\",\"sg_setting_autoplay_pause\":\"\",\"sg_setting_arrow\":\"\",\"sg_setting_arrow_position\":\"middle-edge\",\"sg_setting_dots\":\"\",\"sg_setting_quote\":\"yes\",\"sg_setting_rating\":\"\",\"st_layout_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_layout_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_slide_show_responsive\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"sg_setting_quote_icon\":{\"value\":\"jki jki-quote-light\",\"library\":\"jkiticon\"},\"sg_layout_image_position\":\"below\",\"st_layout_background_background_background\":\"classic\",\"st_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position\":\"\",\"st_quote_override_position_top_responsive\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"st_quote_override_position_left_responsive\":{\"unit\":\"px\",\"size\":442,\"sizes\":[]},\"st_client_name_normal_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_quote_normal_font_size_responsive\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"st_client_image_margin_responsive\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_rating_font_size_responsive\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"st_rating_margin_right_responsive\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_setting_slide_show_responsive_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"st_wrapper_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position_top_responsive_tablet\":{\"unit\":\"px\",\"size\":249,\"sizes\":[]},\"st_quote_override_position_top_responsive_mobile\":{\"unit\":\"px\",\"size\":193,\"sizes\":[]},\"st_quote_override_position_left_responsive_tablet\":{\"unit\":\"px\",\"size\":265,\"sizes\":[]},\"st_quote_override_position_left_responsive_mobile\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]},\"st_quote_normal_font_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"st_description_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_normal_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64afd05f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"746d276b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30338dfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f950be4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ca735b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5d6ca3ad\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_title_hover_color_responsive\":\"globals\\/colors?id=secondary\",\"st_readmore_hover_color_responsive\":\"globals\\/colors?id=secondary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#646974\",\"st_excerpt_color_responsive\":\"#646974\",\"st_title_normal_color_responsive\":\"#272B36\",\"st_thumbnail_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_title_hover_color_responsive\":\"#FA8D25\",\"st_readmore_normal_color_responsive\":\"#FA8D25\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":false}],\"isInner\":false}]'),(1281,225,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1282,225,'_elementor_css','a:6:{s:4:\"time\";i:1721834273;s:5:\"fonts\";a:1:{i:0;s:5:\"Inter\";}s:5:\"icons\";a:3:{i:0;s:0:\"\";i:1;s:8:\"jkiticon\";i:3;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1283,226,'_elementor_edit_mode','builder'),(1284,226,'_elementor_template_type','wp-page'),(1285,226,'_elementor_version','3.23.2'),(1286,226,'_wp_page_template','default'),(1287,226,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1288,226,'_elementor_data','[{\"id\":\"35495243\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"Eldery male gardener using scissors for bushes\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"160\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0,\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_size_tablet\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"top center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00160E\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b\":\"#00000054\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_slideshow_gallery\":[{\"id\":154,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-02-5.jpg\"},{\"id\":155,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-03-3.jpg\"},{\"id\":156,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-04-3.jpg\"},{\"id\":157,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-01-5.jpg\"}]},\"elements\":[{\"id\":\"739a26d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":65,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=06a34e7\"}},\"elements\":[{\"id\":\"132d1a8e\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Complete For All\",\"sg_title_focused\":\" Landscape \",\"sg_title_after\":\" Service And Maintenance\",\"sg_title_html_tag\":\"h1\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=primary\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"7c49583a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"635cb25b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"23cf340e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37.85499999999999687361196265555918216705322265625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":48,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"1c4c950d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4768b6f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":62.14500000000000312638803734444081783294677734375,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"flex-start\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":52,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"34c0badb\",\"elType\":\"widget\",\"settings\":{\"sg_video_button_title\":\"Play Video\",\"sg_video_button_icon\":{\"value\":\"jki jki-play\",\"library\":\"jkiticon\"},\"sg_video_url\":\"#\",\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_width_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_line_height_responsive\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#FFD402\",\"st_button_normal_glow_color_responsive\":\"#00694361\",\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"_element_width\":\"auto\",\"__globals__\":{\"st_button_normal_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=accent\",\"st_border_normal_border_border_color\":\"\",\"st_button_hover_text_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_glow_color_responsive\":\"\"},\"st_button_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_button_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_width_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_line_height_responsive_mobile\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"st_border_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_border_normal_border_border_color\":\"#FFD027\",\"st_button_line_height_responsive_tablet\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"st_button_normal_background_background_color\":\"#006943\",\"st_button_hover_text_color_responsive\":\"#006943\",\"st_button_hover_background_background_color\":\"#FFD402\",\"sg_video_auto_play\":\"\",\"sg_video_mute\":\"\"},\"elements\":[],\"widgetType\":\"jkit_video_button\"},{\"id\":\"232ec8da\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Intro\",\"align\":\"right\",\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"hide_mobile\":\"hidden-mobile\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#00160E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49b348ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"edc2dbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.00200000000000244426701101474463939666748046875,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e2246bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Prestige Luxury Cleanings LLC\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"139cc45f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Landscaping And Garden Care Services\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dc78e71\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"597dc67d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"26cf3840\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b19bda0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":167,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"980\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a46c929\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c4d8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Public Liability Insurance\",\"_id\":\"a978734\"},{\"text\":\"Environmentally Friendly\",\"_id\":\"1cd10a1\"},{\"text\":\"On Time, Every Time\",\"_id\":\"c6767db\"},{\"text\":\"Beautiful Garden Designs\",\"_id\":\"d4743f4\"},{\"text\":\"Modern Machinery And Tool\",\"_id\":\"535c17d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"398321ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4c7c15d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.9129999999999967030817060731351375579833984375,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5683e90d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":162,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"860\",\"height\":\"980\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b6190b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":163,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"-59\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"250636f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"713aa588\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"51a71b71\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#00160E\",\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=primary\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=06a34e7\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"st_content_title_color_responsive\":\"#7F7F7F\",\"st_super_color_responsive\":\"#FFD402\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\",\"sg_setting_html_tag\":\"span\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5557874f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"73847855\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":174,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/garden-maintenance-performed-by-pro-gardener-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"b1058a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":224,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":478,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":325,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"69098afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"40\",\"bottom\":\"80\",\"left\":\"40\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"7cb7bf82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91cb5d9\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26358abf\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Have The Perfect Solution For Your Landscape Problems\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15a36cc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42c8d36c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7114454f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76f24ca8\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Variation Gardening\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"138cc39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28a78a06\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Expert Landscapers\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c5ac2bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38fdb183\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3ce0b95b\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Affordable Price\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-save-money-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4c80f133\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7451fb11\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Free Consultation\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-Consultancy-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e93f2c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"39a46e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6773b2a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"87647bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Providing Services For All Your Residential And Commercial Needs.\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3d4509\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"59ebf2c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Providing services for all your residential and commercial needs \",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"align\":\"center\",\"title_color\":\"#00160E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30164d28\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e8639b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":142,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-services.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fa92c14\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2c434fb3\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"5abe2e18\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33425b9f\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Residential And Commercial Projects\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"472ed309\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"67cb221c\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e6d8a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":142,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-services.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd233da\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6535a16\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"937e2e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7aee\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Lawn Services\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"d9723d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"c908972\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37c1cce6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":143,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/driveway-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b3e60ba\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3b291bbf\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"20b91942\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5649f719\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Driveway Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6300b69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"256ddf68\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d41e618\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3735f0b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":144,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/deck-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"741128a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3691562\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3c8a0e6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5eb1b3b9\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Deck Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"25f37292\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"61c9ff8e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8781ee3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":145,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/weed-control.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd84c7d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"14f7965\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fb2459e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0582197\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Weed Control \",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"f7b0fa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0197d9e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f3de9c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":146,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/grass-feed.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"75ba950\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"23edbf4\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"ad70b3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1c4ac7\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Grass Feed\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6f592ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0043a3b\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"790dd775\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"360\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"160\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"140\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"background_overlay_color_b\":\"#000414\",\"background_overlay_image\":{\"id\":186,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/a-gardener-watering-plants-in-a-flowerbed-2RT8DWL-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]}},\"elements\":[{\"id\":\"a2ed5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7e37f762\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Landscaping\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a092069\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d5099\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need Someone To Take Care Your Garden & Lawn?\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=07ee36d\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1198756c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"66521a56\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":20,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":4},\"elements\":[{\"id\":\"1a89d099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.5090000000000003410605131648480892181396484375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"id\":191,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/happy-gardeners-with-plants-and-lawn-mower-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"space-between\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_color\":\"#FFFFFF00\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":9,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"46b821c1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":219,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":183,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"449971a9\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Make Appointment & Take Care Your Garden\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=secondary\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=93191b3\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_content_title_color_hover_responsive\":\"#FFFFFF\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#FFFFFF\",\"st_icon_color_responsive\":\"#00E5CC\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#00E5CC\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":false},{\"id\":\"13747b6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.4909999999999996589394868351519107818603515625,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a13f42e\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"178***1721830795182\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fde8487\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"59883b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1617542a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Process\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29c7aa96\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Complete Every Step Carefully\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ced0d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d62463d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18cf7834\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"41f79872\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-consult-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consultation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65e1b761\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"span\",\"title_color\":\"#FFD402\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#006943\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12cdbf13\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4175d29\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-pencil_art-light\",\"library\":\"jkiticon\"},\"title_text\":\"Design Installation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2adabf01\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b628\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"569b3221\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consturction \",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"67d6b2e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6fff79c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53c9a76e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"title_text\":\"Finished Work\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"555aace0\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d57540b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"71\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardening-background-with-garden-tolls-A9BGNJU.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]}},\"elements\":[{\"id\":\"147831a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"5a53d120\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"20\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Years of Experience\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"488f4727\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"6b8f6eae\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"76666759\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f532f9e\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"2850\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Happy Customers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"265fd738\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5473dc22\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"64\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Expert Landscapers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b38731e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4945f2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"627cd42c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65e3182\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.56499999999999772626324556767940521240234375},\"elements\":[{\"id\":\"43108b53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Projects\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45328989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Project We Have Done\\n\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"f382082\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.49900000000000233058017329312860965728759765625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":40,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"55ecfb57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"67afcbfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.0330000000000012505552149377763271331787109375,\"_inline_size_tablet\":23,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4989aa04\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Projects\",\"align\":\"right\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"left\",\"hover_animation\":\"float\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"32515d84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"3f5753f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"21982cfb\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":196,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Cutting-Leaf.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Cutting Leaf\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"404dc561\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"58d29b54\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":197,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Home-Garden.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Home Garden\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"3bff1dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"3c24185a\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":195,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/build-backyard.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Build Backyard\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_image_height_responsive_tablet\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b3cb58d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_image\":{\"id\":201,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-moving-aerial-photo-Z8KDGJ9-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_color\":\"#0000007D\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"79705206\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"51c9a732\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73b2fe0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"What They Says About Us\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4876e632\",\"elType\":\"widget\",\"settings\":{\"sg_layout_testimonial_choose\":\"style-2\",\"sg_testimonials_image_size_imagesize_size\":\"medium\",\"sg_testimonials_list\":[{\"sg_testimonials_list_client_avatar\":{\"id\":\"75\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/3SUMAU.jpg\"},\"_id\":\"6e9b2e1\",\"sg_testimonials_list_client_name\":\"Regan Traynor\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"76\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/CASCKD8.jpg\"},\"sg_testimonials_list_client_name\":\"Maisha Dunn\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"d069a43\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"77\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/MKLVKTE.jpg\"},\"sg_testimonials_list_client_name\":\"Reis Leonard\",\"sg_testimonials_list_designation\":\"Businessman\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"05c24f5\"}],\"st_wrapper_alignment_responsive\":\"left\",\"st_client_name_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_description_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_client_name_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_client_designation_normal_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_client_designation_normal_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=d343bdf\",\"st_rating_color_responsive\":\"\",\"st_client_name_normal_color_responsive\":\"\",\"st_quote_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_layout_background_background_color\":\"\"},\"st_layout_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_layout_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_wrapper_fix_height\":\"\",\"sg_setting_autoplay\":\"yes\",\"sg_setting_autoplay_pause\":\"\",\"sg_setting_arrow\":\"\",\"sg_setting_arrow_position\":\"middle-edge\",\"sg_setting_dots\":\"\",\"sg_setting_quote\":\"yes\",\"sg_setting_rating\":\"\",\"st_layout_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_layout_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_slide_show_responsive\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"sg_setting_quote_icon\":{\"value\":\"jki jki-quote-light\",\"library\":\"jkiticon\"},\"sg_layout_image_position\":\"below\",\"st_layout_background_background_background\":\"classic\",\"st_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position\":\"\",\"st_quote_override_position_top_responsive\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"st_quote_override_position_left_responsive\":{\"unit\":\"px\",\"size\":442,\"sizes\":[]},\"st_client_name_normal_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_quote_normal_font_size_responsive\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"st_client_image_margin_responsive\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_rating_font_size_responsive\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"st_rating_margin_right_responsive\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_setting_slide_show_responsive_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"st_wrapper_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position_top_responsive_tablet\":{\"unit\":\"px\",\"size\":249,\"sizes\":[]},\"st_quote_override_position_top_responsive_mobile\":{\"unit\":\"px\",\"size\":193,\"sizes\":[]},\"st_quote_override_position_left_responsive_tablet\":{\"unit\":\"px\",\"size\":265,\"sizes\":[]},\"st_quote_override_position_left_responsive_mobile\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]},\"st_quote_normal_font_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"st_description_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_normal_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64afd05f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"746d276b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30338dfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f950be4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ca735b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5d6ca3ad\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_title_hover_color_responsive\":\"globals\\/colors?id=secondary\",\"st_readmore_hover_color_responsive\":\"globals\\/colors?id=secondary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#646974\",\"st_excerpt_color_responsive\":\"#646974\",\"st_title_normal_color_responsive\":\"#272B36\",\"st_thumbnail_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_title_hover_color_responsive\":\"#FA8D25\",\"st_readmore_normal_color_responsive\":\"#FA8D25\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":false}],\"isInner\":false}]'),(1289,226,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1290,227,'_elementor_edit_mode','builder'),(1291,227,'_elementor_template_type','wp-page'),(1292,227,'_elementor_version','3.23.2'),(1293,227,'_wp_page_template','default'),(1294,227,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1295,227,'_elementor_data','[{\"id\":\"35495243\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"Eldery male gardener using scissors for bushes\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"160\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0,\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_size_tablet\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"top center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00160E\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b\":\"#00000054\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_slideshow_gallery\":[{\"id\":154,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-02-5.jpg\"},{\"id\":155,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-03-3.jpg\"},{\"id\":156,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-04-3.jpg\"},{\"id\":157,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-01-5.jpg\"}]},\"elements\":[{\"id\":\"739a26d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":65,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=06a34e7\"}},\"elements\":[{\"id\":\"132d1a8e\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Complete For All\",\"sg_title_focused\":\" Landscape \",\"sg_title_after\":\" Service And Maintenance\",\"sg_title_html_tag\":\"h1\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=primary\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"7c49583a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"635cb25b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"23cf340e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37.85499999999999687361196265555918216705322265625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":48,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"1c4c950d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4768b6f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":62.14500000000000312638803734444081783294677734375,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"flex-start\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":52,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"34c0badb\",\"elType\":\"widget\",\"settings\":{\"sg_video_button_title\":\"Play Video\",\"sg_video_button_icon\":{\"value\":\"jki jki-play\",\"library\":\"jkiticon\"},\"sg_video_url\":\"#\",\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_width_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_line_height_responsive\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#FFD402\",\"st_button_normal_glow_color_responsive\":\"#00694361\",\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"_element_width\":\"auto\",\"__globals__\":{\"st_button_normal_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=accent\",\"st_border_normal_border_border_color\":\"\",\"st_button_hover_text_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_glow_color_responsive\":\"\"},\"st_button_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_button_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_width_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_line_height_responsive_mobile\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"st_border_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_border_normal_border_border_color\":\"#FFD027\",\"st_button_line_height_responsive_tablet\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"st_button_normal_background_background_color\":\"#006943\",\"st_button_hover_text_color_responsive\":\"#006943\",\"st_button_hover_background_background_color\":\"#FFD402\",\"sg_video_auto_play\":\"\",\"sg_video_mute\":\"\"},\"elements\":[],\"widgetType\":\"jkit_video_button\"},{\"id\":\"232ec8da\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Intro\",\"align\":\"right\",\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"hide_mobile\":\"hidden-mobile\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#00160E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49b348ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"edc2dbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.00200000000000244426701101474463939666748046875,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e2246bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Prestige Luxury Cleanings LLC\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"139cc45f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Landscaping And Garden Care Services\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dc78e71\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"597dc67d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"26cf3840\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b19bda0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":167,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"980\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a46c929\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c4d8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Public Liability Insurance\",\"_id\":\"a978734\"},{\"text\":\"Environmentally Friendly\",\"_id\":\"1cd10a1\"},{\"text\":\"On Time, Every Time\",\"_id\":\"c6767db\"},{\"text\":\"Beautiful Garden Designs\",\"_id\":\"d4743f4\"},{\"text\":\"Modern Machinery And Tool\",\"_id\":\"535c17d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"398321ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4c7c15d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.9129999999999967030817060731351375579833984375,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5683e90d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":162,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"860\",\"height\":\"980\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b6190b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":163,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"-59\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"250636f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"713aa588\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"51a71b71\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#00160E\",\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=primary\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=06a34e7\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"st_content_title_color_responsive\":\"#7F7F7F\",\"st_super_color_responsive\":\"#FFD402\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\",\"sg_setting_html_tag\":\"span\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5557874f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"73847855\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":174,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/garden-maintenance-performed-by-pro-gardener-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"b1058a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":224,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":478,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":325,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"69098afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"40\",\"bottom\":\"80\",\"left\":\"40\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"7cb7bf82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91cb5d9\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26358abf\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Have The Perfect Solution For Your Landscape Problems\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15a36cc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42c8d36c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7114454f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76f24ca8\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Variation Gardening\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"138cc39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28a78a06\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Expert Landscapers\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c5ac2bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38fdb183\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3ce0b95b\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Affordable Price\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-save-money-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4c80f133\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7451fb11\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Free Consultation\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-Consultancy-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e93f2c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"39a46e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6773b2a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"87647bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Providing Services For All Your Residential And Commercial Needs.\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3d4509\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"59ebf2c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Providing services for all your residential and commercial needs \",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"align\":\"center\",\"title_color\":\"#00160E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30164d28\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e8639b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":142,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-services.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fa92c14\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2c434fb3\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"5abe2e18\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33425b9f\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Residential And Commercial Projects\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"472ed309\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"67cb221c\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e6d8a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":142,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-services.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd233da\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6535a16\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"937e2e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7aee\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Lawn Services\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"d9723d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"c908972\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37c1cce6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":143,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/driveway-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b3e60ba\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3b291bbf\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"20b91942\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5649f719\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Driveway Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6300b69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"256ddf68\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d41e618\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3735f0b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":144,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/deck-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"741128a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3691562\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3c8a0e6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5eb1b3b9\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Deck Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"25f37292\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"61c9ff8e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8781ee3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":145,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/weed-control.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd84c7d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"14f7965\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fb2459e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0582197\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Weed Control \",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"f7b0fa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0197d9e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f3de9c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":146,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/grass-feed.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"75ba950\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"23edbf4\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"ad70b3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1c4ac7\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Grass Feed\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6f592ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0043a3b\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"790dd775\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"360\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"160\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"140\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"background_overlay_color_b\":\"#000414\",\"background_overlay_image\":{\"id\":186,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/a-gardener-watering-plants-in-a-flowerbed-2RT8DWL-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]}},\"elements\":[{\"id\":\"a2ed5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7e37f762\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Landscaping\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a092069\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d5099\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need Someone To Take Care Your Garden & Lawn?\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=07ee36d\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1198756c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"66521a56\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":20,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":4},\"elements\":[{\"id\":\"1a89d099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.5090000000000003410605131648480892181396484375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"id\":191,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/happy-gardeners-with-plants-and-lawn-mower-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"space-between\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_color\":\"#FFFFFF00\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":9,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"46b821c1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":219,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":183,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"449971a9\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Make Appointment & Take Care Your Garden\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=secondary\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=93191b3\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_content_title_color_hover_responsive\":\"#FFFFFF\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#FFFFFF\",\"st_icon_color_responsive\":\"#00E5CC\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#00E5CC\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":false},{\"id\":\"13747b6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.4909999999999996589394868351519107818603515625,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a13f42e\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"178***1721830795182\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fde8487\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"59883b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1617542a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Process\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29c7aa96\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Complete Every Step Carefully\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ced0d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d62463d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18cf7834\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"41f79872\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-consult-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consultation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65e1b761\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"span\",\"title_color\":\"#FFD402\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#006943\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12cdbf13\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4175d29\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-pencil_art-light\",\"library\":\"jkiticon\"},\"title_text\":\"Design Installation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2adabf01\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b628\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"569b3221\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consturction \",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"67d6b2e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6fff79c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53c9a76e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"title_text\":\"Finished Work\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"555aace0\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d57540b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"71\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardening-background-with-garden-tolls-A9BGNJU.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]}},\"elements\":[{\"id\":\"147831a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"5a53d120\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"20\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Years of Experience\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"488f4727\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"6b8f6eae\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"76666759\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f532f9e\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"2850\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Happy Customers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"265fd738\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5473dc22\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"64\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Expert Landscapers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b38731e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4945f2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"627cd42c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65e3182\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.56499999999999772626324556767940521240234375},\"elements\":[{\"id\":\"43108b53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Projects\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45328989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Project We Have Done\\n\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"f382082\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.49900000000000233058017329312860965728759765625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":40,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"55ecfb57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"67afcbfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.0330000000000012505552149377763271331787109375,\"_inline_size_tablet\":23,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4989aa04\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Projects\",\"align\":\"right\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"left\",\"hover_animation\":\"float\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"32515d84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"3f5753f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"21982cfb\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":196,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Cutting-Leaf.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Cutting Leaf\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"404dc561\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"58d29b54\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":197,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Home-Garden.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Home Garden\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"3bff1dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"3c24185a\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":195,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/build-backyard.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Build Backyard\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_image_height_responsive_tablet\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b3cb58d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_image\":{\"id\":201,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-moving-aerial-photo-Z8KDGJ9-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_color\":\"#0000007D\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"79705206\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"51c9a732\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73b2fe0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"What They Says About Us\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4876e632\",\"elType\":\"widget\",\"settings\":{\"sg_layout_testimonial_choose\":\"style-2\",\"sg_testimonials_image_size_imagesize_size\":\"medium\",\"sg_testimonials_list\":[{\"sg_testimonials_list_client_avatar\":{\"id\":\"75\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/3SUMAU.jpg\"},\"_id\":\"6e9b2e1\",\"sg_testimonials_list_client_name\":\"Regan Traynor\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"76\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/CASCKD8.jpg\"},\"sg_testimonials_list_client_name\":\"Maisha Dunn\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"d069a43\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"77\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/MKLVKTE.jpg\"},\"sg_testimonials_list_client_name\":\"Reis Leonard\",\"sg_testimonials_list_designation\":\"Businessman\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"05c24f5\"}],\"st_wrapper_alignment_responsive\":\"left\",\"st_client_name_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_description_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_client_name_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_client_designation_normal_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_client_designation_normal_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=d343bdf\",\"st_rating_color_responsive\":\"\",\"st_client_name_normal_color_responsive\":\"\",\"st_quote_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_layout_background_background_color\":\"\"},\"st_layout_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_layout_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_wrapper_fix_height\":\"\",\"sg_setting_autoplay\":\"yes\",\"sg_setting_autoplay_pause\":\"\",\"sg_setting_arrow\":\"\",\"sg_setting_arrow_position\":\"middle-edge\",\"sg_setting_dots\":\"\",\"sg_setting_quote\":\"yes\",\"sg_setting_rating\":\"\",\"st_layout_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_layout_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_slide_show_responsive\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"sg_setting_quote_icon\":{\"value\":\"jki jki-quote-light\",\"library\":\"jkiticon\"},\"sg_layout_image_position\":\"below\",\"st_layout_background_background_background\":\"classic\",\"st_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position\":\"\",\"st_quote_override_position_top_responsive\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"st_quote_override_position_left_responsive\":{\"unit\":\"px\",\"size\":442,\"sizes\":[]},\"st_client_name_normal_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_quote_normal_font_size_responsive\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"st_client_image_margin_responsive\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_rating_font_size_responsive\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"st_rating_margin_right_responsive\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_setting_slide_show_responsive_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"st_wrapper_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position_top_responsive_tablet\":{\"unit\":\"px\",\"size\":249,\"sizes\":[]},\"st_quote_override_position_top_responsive_mobile\":{\"unit\":\"px\",\"size\":193,\"sizes\":[]},\"st_quote_override_position_left_responsive_tablet\":{\"unit\":\"px\",\"size\":265,\"sizes\":[]},\"st_quote_override_position_left_responsive_mobile\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]},\"st_quote_normal_font_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"st_description_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_normal_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64afd05f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"746d276b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30338dfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f950be4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ca735b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5d6ca3ad\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_title_hover_color_responsive\":\"globals\\/colors?id=secondary\",\"st_readmore_hover_color_responsive\":\"globals\\/colors?id=secondary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#646974\",\"st_excerpt_color_responsive\":\"#646974\",\"st_title_normal_color_responsive\":\"#272B36\",\"st_thumbnail_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_title_hover_color_responsive\":\"#FA8D25\",\"st_readmore_normal_color_responsive\":\"#FA8D25\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":false}],\"isInner\":false}]'),(1296,227,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1297,228,'_elementor_edit_mode','builder'),(1298,228,'_elementor_template_type','wp-page'),(1299,228,'_elementor_version','3.23.2'),(1300,228,'_wp_page_template','default'),(1301,228,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1302,228,'_elementor_data','[{\"id\":\"35495243\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"Eldery male gardener using scissors for bushes\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"160\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0,\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_size_tablet\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"top center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00160E\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b\":\"#00000054\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_slideshow_gallery\":[{\"id\":154,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-02-5.jpg\"},{\"id\":155,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-03-3.jpg\"},{\"id\":156,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-04-3.jpg\"},{\"id\":157,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-01-5.jpg\"}]},\"elements\":[{\"id\":\"739a26d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":65,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=06a34e7\"}},\"elements\":[{\"id\":\"132d1a8e\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Complete For All\",\"sg_title_focused\":\" Landscape \",\"sg_title_after\":\" Service And Maintenance\",\"sg_title_html_tag\":\"h1\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=primary\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"7c49583a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"635cb25b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"23cf340e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37.85499999999999687361196265555918216705322265625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":48,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"1c4c950d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4768b6f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":62.14500000000000312638803734444081783294677734375,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"flex-start\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":52,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"34c0badb\",\"elType\":\"widget\",\"settings\":{\"sg_video_button_title\":\"Play Video\",\"sg_video_button_icon\":{\"value\":\"jki jki-play\",\"library\":\"jkiticon\"},\"sg_video_url\":\"#\",\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_width_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_line_height_responsive\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#FFD402\",\"st_button_normal_glow_color_responsive\":\"#00694361\",\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"_element_width\":\"auto\",\"__globals__\":{\"st_button_normal_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=accent\",\"st_border_normal_border_border_color\":\"\",\"st_button_hover_text_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_glow_color_responsive\":\"\"},\"st_button_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_button_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_width_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_line_height_responsive_mobile\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"st_border_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_border_normal_border_border_color\":\"#FFD027\",\"st_button_line_height_responsive_tablet\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"st_button_normal_background_background_color\":\"#006943\",\"st_button_hover_text_color_responsive\":\"#006943\",\"st_button_hover_background_background_color\":\"#FFD402\",\"sg_video_auto_play\":\"\",\"sg_video_mute\":\"\"},\"elements\":[],\"widgetType\":\"jkit_video_button\"},{\"id\":\"232ec8da\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Intro\",\"align\":\"right\",\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"hide_mobile\":\"hidden-mobile\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#00160E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49b348ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"edc2dbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.00200000000000244426701101474463939666748046875,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e2246bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Prestige Luxury Cleanings LLC\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"139cc45f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Landscaping And Garden Care Services\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dc78e71\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"597dc67d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"26cf3840\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b19bda0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":167,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"980\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a46c929\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c4d8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Public Liability Insurance\",\"_id\":\"a978734\"},{\"text\":\"Environmentally Friendly\",\"_id\":\"1cd10a1\"},{\"text\":\"On Time, Every Time\",\"_id\":\"c6767db\"},{\"text\":\"Beautiful Garden Designs\",\"_id\":\"d4743f4\"},{\"text\":\"Modern Machinery And Tool\",\"_id\":\"535c17d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"398321ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4c7c15d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.9129999999999967030817060731351375579833984375,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5683e90d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":162,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"860\",\"height\":\"980\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b6190b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":163,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"-59\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"250636f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"713aa588\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"51a71b71\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#00160E\",\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=primary\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=06a34e7\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"st_content_title_color_responsive\":\"#7F7F7F\",\"st_super_color_responsive\":\"#FFD402\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\",\"sg_setting_html_tag\":\"span\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5557874f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"73847855\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":174,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/garden-maintenance-performed-by-pro-gardener-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"b1058a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":224,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":478,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":325,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"69098afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"40\",\"bottom\":\"80\",\"left\":\"40\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"7cb7bf82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91cb5d9\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26358abf\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Have The Perfect Solution For Your Landscape Problems\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15a36cc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42c8d36c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7114454f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76f24ca8\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Variation Gardening\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"138cc39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28a78a06\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Expert Landscapers\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c5ac2bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38fdb183\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3ce0b95b\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Affordable Price\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-save-money-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4c80f133\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7451fb11\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Free Consultation\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-Consultancy-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e93f2c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"39a46e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6773b2a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"87647bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Providing Services For All Your Residential And Commercial Needs.\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3d4509\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"59ebf2c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Providing services for all your residential and commercial needs \",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"align\":\"center\",\"title_color\":\"#00160E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30164d28\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e8639b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":142,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-services.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fa92c14\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2c434fb3\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"5abe2e18\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33425b9f\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Residential And Commercial Projects\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"472ed309\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"67cb221c\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e6d8a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":142,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-services.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd233da\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6535a16\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"937e2e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7aee\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Lawn Services\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"d9723d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"c908972\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37c1cce6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":143,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/driveway-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b3e60ba\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3b291bbf\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"20b91942\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5649f719\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Driveway Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6300b69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"256ddf68\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d41e618\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3735f0b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":144,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/deck-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"741128a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3691562\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3c8a0e6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5eb1b3b9\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Deck Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"25f37292\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"61c9ff8e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8781ee3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":145,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/weed-control.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd84c7d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"14f7965\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fb2459e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0582197\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Weed Control \",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"f7b0fa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0197d9e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f3de9c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":146,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/grass-feed.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"75ba950\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"23edbf4\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"ad70b3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1c4ac7\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Grass Feed\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6f592ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0043a3b\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"790dd775\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"360\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"160\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"140\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"background_overlay_color_b\":\"#000414\",\"background_overlay_image\":{\"id\":186,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/a-gardener-watering-plants-in-a-flowerbed-2RT8DWL-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]}},\"elements\":[{\"id\":\"a2ed5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7e37f762\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Landscaping\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a092069\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d5099\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need Someone To Take Care Your Garden & Lawn?\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=07ee36d\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1198756c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"66521a56\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":20,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":4},\"elements\":[{\"id\":\"1a89d099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.5090000000000003410605131648480892181396484375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"id\":191,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/happy-gardeners-with-plants-and-lawn-mower-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"space-between\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_color\":\"#FFFFFF00\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":9,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"46b821c1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":219,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":183,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"449971a9\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Make Appointment & Take Care Your Garden\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=secondary\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=93191b3\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_content_title_color_hover_responsive\":\"#FFFFFF\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#FFFFFF\",\"st_icon_color_responsive\":\"#00E5CC\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#00E5CC\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":false},{\"id\":\"13747b6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.4909999999999996589394868351519107818603515625,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a13f42e\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"178***1721830795182\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fde8487\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"59883b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1617542a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Process\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29c7aa96\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Complete Every Step Carefully\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ced0d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d62463d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18cf7834\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"41f79872\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-consult-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consultation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65e1b761\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"span\",\"title_color\":\"#FFD402\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#006943\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12cdbf13\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4175d29\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-pencil_art-light\",\"library\":\"jkiticon\"},\"title_text\":\"Design Installation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2adabf01\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b628\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"569b3221\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consturction \",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"67d6b2e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6fff79c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53c9a76e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"title_text\":\"Finished Work\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"555aace0\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d57540b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"71\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardening-background-with-garden-tolls-A9BGNJU.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"147831a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"5a53d120\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"20\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Years of Experience\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"488f4727\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"6b8f6eae\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"76666759\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f532f9e\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"2850\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Happy Customers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"265fd738\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5473dc22\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"64\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Expert Landscapers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b38731e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4945f2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"627cd42c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65e3182\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.56499999999999772626324556767940521240234375},\"elements\":[{\"id\":\"43108b53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Projects\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45328989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Project We Have Done\\n\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"f382082\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.49900000000000233058017329312860965728759765625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":40,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"55ecfb57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"67afcbfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.0330000000000012505552149377763271331787109375,\"_inline_size_tablet\":23,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4989aa04\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Projects\",\"align\":\"right\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"left\",\"hover_animation\":\"float\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"32515d84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"3f5753f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"21982cfb\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":196,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Cutting-Leaf.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Cutting Leaf\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"404dc561\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"58d29b54\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":197,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Home-Garden.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Home Garden\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"3bff1dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"3c24185a\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":195,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/build-backyard.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Build Backyard\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_image_height_responsive_tablet\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b3cb58d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_image\":{\"id\":201,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-moving-aerial-photo-Z8KDGJ9-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_color\":\"#0000007D\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"79705206\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"51c9a732\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73b2fe0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"What They Says About Us\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4876e632\",\"elType\":\"widget\",\"settings\":{\"sg_layout_testimonial_choose\":\"style-2\",\"sg_testimonials_image_size_imagesize_size\":\"medium\",\"sg_testimonials_list\":[{\"sg_testimonials_list_client_avatar\":{\"id\":\"75\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/3SUMAU.jpg\"},\"_id\":\"6e9b2e1\",\"sg_testimonials_list_client_name\":\"Regan Traynor\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"76\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/CASCKD8.jpg\"},\"sg_testimonials_list_client_name\":\"Maisha Dunn\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"d069a43\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"77\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/MKLVKTE.jpg\"},\"sg_testimonials_list_client_name\":\"Reis Leonard\",\"sg_testimonials_list_designation\":\"Businessman\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"05c24f5\"}],\"st_wrapper_alignment_responsive\":\"left\",\"st_client_name_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_description_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_client_name_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_client_designation_normal_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_client_designation_normal_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=d343bdf\",\"st_rating_color_responsive\":\"\",\"st_client_name_normal_color_responsive\":\"\",\"st_quote_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_layout_background_background_color\":\"\"},\"st_layout_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_layout_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_wrapper_fix_height\":\"\",\"sg_setting_autoplay\":\"yes\",\"sg_setting_autoplay_pause\":\"\",\"sg_setting_arrow\":\"\",\"sg_setting_arrow_position\":\"middle-edge\",\"sg_setting_dots\":\"\",\"sg_setting_quote\":\"yes\",\"sg_setting_rating\":\"\",\"st_layout_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_layout_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_slide_show_responsive\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"sg_setting_quote_icon\":{\"value\":\"jki jki-quote-light\",\"library\":\"jkiticon\"},\"sg_layout_image_position\":\"below\",\"st_layout_background_background_background\":\"classic\",\"st_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position\":\"\",\"st_quote_override_position_top_responsive\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"st_quote_override_position_left_responsive\":{\"unit\":\"px\",\"size\":442,\"sizes\":[]},\"st_client_name_normal_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_quote_normal_font_size_responsive\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"st_client_image_margin_responsive\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_rating_font_size_responsive\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"st_rating_margin_right_responsive\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_setting_slide_show_responsive_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"st_wrapper_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position_top_responsive_tablet\":{\"unit\":\"px\",\"size\":249,\"sizes\":[]},\"st_quote_override_position_top_responsive_mobile\":{\"unit\":\"px\",\"size\":193,\"sizes\":[]},\"st_quote_override_position_left_responsive_tablet\":{\"unit\":\"px\",\"size\":265,\"sizes\":[]},\"st_quote_override_position_left_responsive_mobile\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]},\"st_quote_normal_font_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"st_description_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_normal_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64afd05f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"746d276b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30338dfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f950be4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ca735b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5d6ca3ad\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_title_hover_color_responsive\":\"globals\\/colors?id=secondary\",\"st_readmore_hover_color_responsive\":\"globals\\/colors?id=secondary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#646974\",\"st_excerpt_color_responsive\":\"#646974\",\"st_title_normal_color_responsive\":\"#272B36\",\"st_thumbnail_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_title_hover_color_responsive\":\"#FA8D25\",\"st_readmore_normal_color_responsive\":\"#FA8D25\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":false}],\"isInner\":false}]'),(1303,228,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1305,229,'_wp_attached_file','2024/07/cropped-Prestige-Luxury-Cleanings-LLC-logo-fav-1.png'),(1306,229,'_wp_attachment_context','site-icon'),(1307,229,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:60:\"2024/07/cropped-Prestige-Luxury-Cleanings-LLC-logo-fav-1.png\";s:8:\"filesize\";i:12933;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:60:\"cropped-Prestige-Luxury-Cleanings-LLC-logo-fav-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13852;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:60:\"cropped-Prestige-Luxury-Cleanings-LLC-logo-fav-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:6358;}s:13:\"site_icon-270\";a:5:{s:4:\"file\";s:60:\"cropped-Prestige-Luxury-Cleanings-LLC-logo-fav-1-270x270.png\";s:5:\"width\";i:270;s:6:\"height\";i:270;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12143;}s:13:\"site_icon-192\";a:5:{s:4:\"file\";s:60:\"cropped-Prestige-Luxury-Cleanings-LLC-logo-fav-1-192x192.png\";s:5:\"width\";i:192;s:6:\"height\";i:192;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8624;}s:13:\"site_icon-180\";a:5:{s:4:\"file\";s:60:\"cropped-Prestige-Luxury-Cleanings-LLC-logo-fav-1-180x180.png\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7987;}s:12:\"site_icon-32\";a:5:{s:4:\"file\";s:58:\"cropped-Prestige-Luxury-Cleanings-LLC-logo-fav-1-32x32.png\";s:5:\"width\";i:32;s:6:\"height\";i:32;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:838;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1318,232,'_elementor_edit_mode','builder'),(1319,232,'_elementor_template_type','wp-page'),(1320,232,'_elementor_version','3.23.2'),(1321,232,'_wp_page_template','default'),(1322,232,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1323,232,'_elementor_data','[{\"id\":\"35495243\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"Eldery male gardener using scissors for bushes\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"160\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0,\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_size_tablet\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"top center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00160E\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b\":\"#00000054\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_slideshow_gallery\":[{\"id\":154,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-02-5.jpg\"},{\"id\":155,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-03-3.jpg\"},{\"id\":156,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-04-3.jpg\"},{\"id\":157,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-01-5.jpg\"}]},\"elements\":[{\"id\":\"739a26d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":65,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=06a34e7\"}},\"elements\":[{\"id\":\"132d1a8e\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Complete For All\",\"sg_title_focused\":\" Landscape \",\"sg_title_after\":\" Service And Maintenance\",\"sg_title_html_tag\":\"h1\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=primary\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"7c49583a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"635cb25b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"23cf340e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37.85499999999999687361196265555918216705322265625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":48,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"1c4c950d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4768b6f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":62.14500000000000312638803734444081783294677734375,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"flex-start\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":52,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"34c0badb\",\"elType\":\"widget\",\"settings\":{\"sg_video_button_title\":\"Play Video\",\"sg_video_button_icon\":{\"value\":\"jki jki-play\",\"library\":\"jkiticon\"},\"sg_video_url\":\"#\",\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_width_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_line_height_responsive\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#FFD402\",\"st_button_normal_glow_color_responsive\":\"#00694361\",\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"_element_width\":\"auto\",\"__globals__\":{\"st_button_normal_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=accent\",\"st_border_normal_border_border_color\":\"\",\"st_button_hover_text_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_glow_color_responsive\":\"\"},\"st_button_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_button_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_width_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_line_height_responsive_mobile\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"st_border_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_border_normal_border_border_color\":\"#FFD027\",\"st_button_line_height_responsive_tablet\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"st_button_normal_background_background_color\":\"#006943\",\"st_button_hover_text_color_responsive\":\"#006943\",\"st_button_hover_background_background_color\":\"#FFD402\",\"sg_video_auto_play\":\"\",\"sg_video_mute\":\"\"},\"elements\":[],\"widgetType\":\"jkit_video_button\"},{\"id\":\"232ec8da\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Intro\",\"align\":\"right\",\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"hide_mobile\":\"hidden-mobile\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#00160E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49b348ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"edc2dbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.00200000000000244426701101474463939666748046875,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e2246bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Prestige Luxury Cleanings LLC\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"139cc45f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Landscaping And Garden Care Services\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dc78e71\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"597dc67d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"26cf3840\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b19bda0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":167,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"980\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a46c929\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c4d8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Public Liability Insurance\",\"_id\":\"a978734\"},{\"text\":\"Environmentally Friendly\",\"_id\":\"1cd10a1\"},{\"text\":\"On Time, Every Time\",\"_id\":\"c6767db\"},{\"text\":\"Beautiful Garden Designs\",\"_id\":\"d4743f4\"},{\"text\":\"Modern Machinery And Tool\",\"_id\":\"535c17d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"398321ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4c7c15d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.9129999999999967030817060731351375579833984375,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5683e90d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":162,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"860\",\"height\":\"980\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b6190b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":163,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"-59\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"250636f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"713aa588\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"51a71b71\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#00160E\",\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=primary\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=06a34e7\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"st_content_title_color_responsive\":\"#7F7F7F\",\"st_super_color_responsive\":\"#FFD402\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\",\"sg_setting_html_tag\":\"span\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5557874f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"73847855\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":174,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/garden-maintenance-performed-by-pro-gardener-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"b1058a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":224,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":478,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":325,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"69098afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"40\",\"bottom\":\"80\",\"left\":\"40\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"7cb7bf82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91cb5d9\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26358abf\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Have The Perfect Solution For Your Landscape Problems\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15a36cc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42c8d36c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7114454f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76f24ca8\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Variation Gardening\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"138cc39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28a78a06\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Expert Landscapers\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c5ac2bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38fdb183\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3ce0b95b\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Affordable Price\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-save-money-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4c80f133\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7451fb11\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Free Consultation\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-Consultancy-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e93f2c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"39a46e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6773b2a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"87647bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Providing Services For All Your Residential And Commercial Needs.\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3d4509\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"59ebf2c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Providing services for all your residential and commercial needs \",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"align\":\"center\",\"title_color\":\"#00160E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30164d28\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e8639b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":142,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-services.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fa92c14\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2c434fb3\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"5abe2e18\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33425b9f\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Residential And Commercial Projects\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"472ed309\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"67cb221c\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e6d8a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":142,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-services.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd233da\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6535a16\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"937e2e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7aee\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Lawn Services\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"d9723d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"c908972\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37c1cce6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":143,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/driveway-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b3e60ba\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3b291bbf\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"20b91942\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5649f719\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Driveway Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6300b69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"256ddf68\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d41e618\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3735f0b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":144,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/deck-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"741128a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3691562\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3c8a0e6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5eb1b3b9\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Deck Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"25f37292\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"61c9ff8e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8781ee3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":145,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/weed-control.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd84c7d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"14f7965\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fb2459e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0582197\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Weed Control \",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"f7b0fa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0197d9e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f3de9c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":146,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/grass-feed.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"75ba950\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"23edbf4\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"ad70b3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1c4ac7\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Grass Feed\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6f592ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0043a3b\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"790dd775\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"360\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"160\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"140\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"background_overlay_color_b\":\"#000414\",\"background_overlay_image\":{\"id\":186,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/a-gardener-watering-plants-in-a-flowerbed-2RT8DWL-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]}},\"elements\":[{\"id\":\"a2ed5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7e37f762\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Landscaping\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a092069\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d5099\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need Someone To Take Care Your Garden & Lawn?\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=07ee36d\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1198756c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"66521a56\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":20,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":4},\"elements\":[{\"id\":\"1a89d099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.5090000000000003410605131648480892181396484375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"id\":191,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/happy-gardeners-with-plants-and-lawn-mower-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"space-between\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_color\":\"#FFFFFF00\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":9,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"46b821c1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":219,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":183,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"449971a9\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Make Appointment & Take Care Your Garden\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=secondary\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=93191b3\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_content_title_color_hover_responsive\":\"#FFFFFF\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#FFFFFF\",\"st_icon_color_responsive\":\"#00E5CC\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#00E5CC\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":false},{\"id\":\"13747b6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.4909999999999996589394868351519107818603515625,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a13f42e\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"178***1721830795182\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fde8487\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"59883b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1617542a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Process\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29c7aa96\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Complete Every Step Carefully\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ced0d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d62463d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18cf7834\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"41f79872\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-consult-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consultation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65e1b761\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"span\",\"title_color\":\"#FFD402\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#006943\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12cdbf13\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4175d29\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-pencil_art-light\",\"library\":\"jkiticon\"},\"title_text\":\"Design Installation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2adabf01\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b628\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"569b3221\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consturction \",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"67d6b2e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6fff79c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53c9a76e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"title_text\":\"Finished Work\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"555aace0\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d57540b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"71\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardening-background-with-garden-tolls-A9BGNJU.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"147831a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"5a53d120\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"20\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Years of Experience\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"488f4727\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"6b8f6eae\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"76666759\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f532f9e\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"2850\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Happy Customers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"265fd738\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5473dc22\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"64\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Expert Landscapers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b38731e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4945f2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"627cd42c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65e3182\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.56499999999999772626324556767940521240234375},\"elements\":[{\"id\":\"43108b53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Projects\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45328989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Project We Have Done\\n\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"f382082\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.49900000000000233058017329312860965728759765625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":40,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"55ecfb57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"67afcbfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.0330000000000012505552149377763271331787109375,\"_inline_size_tablet\":23,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4989aa04\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Projects\",\"align\":\"right\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"left\",\"hover_animation\":\"float\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"32515d84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"3f5753f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"21982cfb\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":196,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Cutting-Leaf.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Cutting Leaf\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"404dc561\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"58d29b54\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":197,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Home-Garden.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Home Garden\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"3bff1dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"3c24185a\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":195,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/build-backyard.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Build Backyard\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_image_height_responsive_tablet\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b3cb58d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_image\":{\"id\":201,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-moving-aerial-photo-Z8KDGJ9-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_color\":\"#0000007D\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"79705206\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"51c9a732\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73b2fe0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"What They Says About Us\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4876e632\",\"elType\":\"widget\",\"settings\":{\"sg_layout_testimonial_choose\":\"style-2\",\"sg_testimonials_image_size_imagesize_size\":\"medium\",\"sg_testimonials_list\":[{\"sg_testimonials_list_client_avatar\":{\"id\":\"75\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/3SUMAU.jpg\"},\"_id\":\"6e9b2e1\",\"sg_testimonials_list_client_name\":\"Regan Traynor\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"76\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/CASCKD8.jpg\"},\"sg_testimonials_list_client_name\":\"Maisha Dunn\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"d069a43\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"77\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/MKLVKTE.jpg\"},\"sg_testimonials_list_client_name\":\"Reis Leonard\",\"sg_testimonials_list_designation\":\"Businessman\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"05c24f5\"}],\"st_wrapper_alignment_responsive\":\"left\",\"st_client_name_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_description_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_client_name_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_client_designation_normal_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_client_designation_normal_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=d343bdf\",\"st_rating_color_responsive\":\"\",\"st_client_name_normal_color_responsive\":\"\",\"st_quote_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_layout_background_background_color\":\"\"},\"st_layout_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_layout_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_wrapper_fix_height\":\"\",\"sg_setting_autoplay\":\"yes\",\"sg_setting_autoplay_pause\":\"\",\"sg_setting_arrow\":\"\",\"sg_setting_arrow_position\":\"middle-edge\",\"sg_setting_dots\":\"\",\"sg_setting_quote\":\"yes\",\"sg_setting_rating\":\"\",\"st_layout_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_layout_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_slide_show_responsive\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"sg_setting_quote_icon\":{\"value\":\"jki jki-quote-light\",\"library\":\"jkiticon\"},\"sg_layout_image_position\":\"below\",\"st_layout_background_background_background\":\"classic\",\"st_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position\":\"\",\"st_quote_override_position_top_responsive\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"st_quote_override_position_left_responsive\":{\"unit\":\"px\",\"size\":442,\"sizes\":[]},\"st_client_name_normal_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_quote_normal_font_size_responsive\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"st_client_image_margin_responsive\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_rating_font_size_responsive\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"st_rating_margin_right_responsive\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_setting_slide_show_responsive_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"st_wrapper_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position_top_responsive_tablet\":{\"unit\":\"px\",\"size\":249,\"sizes\":[]},\"st_quote_override_position_top_responsive_mobile\":{\"unit\":\"px\",\"size\":193,\"sizes\":[]},\"st_quote_override_position_left_responsive_tablet\":{\"unit\":\"px\",\"size\":265,\"sizes\":[]},\"st_quote_override_position_left_responsive_mobile\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]},\"st_quote_normal_font_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"st_description_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_normal_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64afd05f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"746d276b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30338dfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f950be4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ca735b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5d6ca3ad\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_title_hover_color_responsive\":\"globals\\/colors?id=secondary\",\"st_readmore_hover_color_responsive\":\"globals\\/colors?id=secondary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#646974\",\"st_excerpt_color_responsive\":\"#646974\",\"st_title_normal_color_responsive\":\"#272B36\",\"st_thumbnail_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_title_hover_color_responsive\":\"#FA8D25\",\"st_readmore_normal_color_responsive\":\"#FA8D25\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":false}],\"isInner\":false}]'),(1324,232,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1325,233,'_elementor_edit_mode','builder'),(1326,233,'_elementor_template_type','wp-page'),(1327,233,'_elementor_version','3.23.2'),(1328,233,'_wp_page_template','default'),(1329,233,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1330,233,'_elementor_data','[{\"id\":\"35495243\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"Eldery male gardener using scissors for bushes\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"160\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0,\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_size_tablet\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"top center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00160E\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b\":\"#00000054\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_slideshow_gallery\":[{\"id\":154,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-02-5.jpg\"},{\"id\":155,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-03-3.jpg\"},{\"id\":156,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-04-3.jpg\"},{\"id\":157,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-01-5.jpg\"}]},\"elements\":[{\"id\":\"739a26d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":65,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=06a34e7\"}},\"elements\":[{\"id\":\"132d1a8e\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Complete For All\",\"sg_title_focused\":\" Landscape \",\"sg_title_after\":\" Service And Maintenance\",\"sg_title_html_tag\":\"h1\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=primary\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"7c49583a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"635cb25b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"23cf340e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37.85499999999999687361196265555918216705322265625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":48,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"1c4c950d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4768b6f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":62.14500000000000312638803734444081783294677734375,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"flex-start\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":52,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"34c0badb\",\"elType\":\"widget\",\"settings\":{\"sg_video_button_title\":\"Play Video\",\"sg_video_button_icon\":{\"value\":\"jki jki-play\",\"library\":\"jkiticon\"},\"sg_video_url\":\"#\",\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_width_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_line_height_responsive\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#FFD402\",\"st_button_normal_glow_color_responsive\":\"#00694361\",\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"_element_width\":\"auto\",\"__globals__\":{\"st_button_normal_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=accent\",\"st_border_normal_border_border_color\":\"\",\"st_button_hover_text_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_glow_color_responsive\":\"\"},\"st_button_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_button_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_width_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_line_height_responsive_mobile\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"st_border_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_border_normal_border_border_color\":\"#FFD027\",\"st_button_line_height_responsive_tablet\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"st_button_normal_background_background_color\":\"#006943\",\"st_button_hover_text_color_responsive\":\"#006943\",\"st_button_hover_background_background_color\":\"#FFD402\",\"sg_video_auto_play\":\"\",\"sg_video_mute\":\"\"},\"elements\":[],\"widgetType\":\"jkit_video_button\"},{\"id\":\"232ec8da\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Intro\",\"align\":\"right\",\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"hide_mobile\":\"hidden-mobile\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#00160E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49b348ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"edc2dbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.00200000000000244426701101474463939666748046875,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e2246bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Prestige Luxury Cleanings LLC\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"139cc45f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Landscaping And Garden Care Services\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dc78e71\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"597dc67d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"26cf3840\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b19bda0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":167,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"980\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a46c929\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c4d8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Public Liability Insurance\",\"_id\":\"a978734\"},{\"text\":\"Environmentally Friendly\",\"_id\":\"1cd10a1\"},{\"text\":\"On Time, Every Time\",\"_id\":\"c6767db\"},{\"text\":\"Beautiful Garden Designs\",\"_id\":\"d4743f4\"},{\"text\":\"Modern Machinery And Tool\",\"_id\":\"535c17d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"398321ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4c7c15d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.9129999999999967030817060731351375579833984375,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5683e90d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":162,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"860\",\"height\":\"980\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b6190b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":163,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"-59\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"250636f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"713aa588\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"51a71b71\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#00160E\",\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=primary\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=06a34e7\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"st_content_title_color_responsive\":\"#7F7F7F\",\"st_super_color_responsive\":\"#FFD402\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\",\"sg_setting_html_tag\":\"span\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5557874f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"73847855\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":174,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/garden-maintenance-performed-by-pro-gardener-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"b1058a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":224,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":478,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":325,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"69098afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"40\",\"bottom\":\"80\",\"left\":\"40\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"7cb7bf82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91cb5d9\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26358abf\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Have The Perfect Solution For Your Landscape Problems\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15a36cc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42c8d36c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7114454f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76f24ca8\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Variation Gardening\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"138cc39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28a78a06\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Expert Landscapers\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c5ac2bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38fdb183\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3ce0b95b\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Affordable Price\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-save-money-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4c80f133\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7451fb11\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Free Consultation\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-Consultancy-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e93f2c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"39a46e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6773b2a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"87647bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Providing Services For All Your Residential And Commercial Needs.\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3d4509\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"59ebf2c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Providing services for all your residential and commercial needs \",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"\"},\"align\":\"center\",\"title_color\":\"#00160E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30164d28\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e8639b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":142,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-services.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fa92c14\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2c434fb3\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"5abe2e18\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33425b9f\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Residential And Commercial Projects\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"472ed309\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"67cb221c\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e6d8a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":142,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-services.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd233da\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6535a16\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"937e2e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7aee\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Lawn Services\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"d9723d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"c908972\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37c1cce6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":143,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/driveway-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b3e60ba\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3b291bbf\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"20b91942\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5649f719\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Driveway Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6300b69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"256ddf68\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d41e618\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3735f0b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":144,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/deck-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"741128a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3691562\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3c8a0e6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5eb1b3b9\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Deck Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"25f37292\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"61c9ff8e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8781ee3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":145,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/weed-control.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd84c7d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"14f7965\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fb2459e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0582197\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Weed Control \",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"f7b0fa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0197d9e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f3de9c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":146,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/grass-feed.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"75ba950\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"23edbf4\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"ad70b3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1c4ac7\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Grass Feed\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6f592ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0043a3b\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"790dd775\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"360\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"160\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"140\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"background_overlay_color_b\":\"#000414\",\"background_overlay_image\":{\"id\":186,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/a-gardener-watering-plants-in-a-flowerbed-2RT8DWL-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]}},\"elements\":[{\"id\":\"a2ed5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7e37f762\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Landscaping\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a092069\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d5099\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need Someone To Take Care Your Garden & Lawn?\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=07ee36d\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1198756c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"66521a56\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":20,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":4},\"elements\":[{\"id\":\"1a89d099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.5090000000000003410605131648480892181396484375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"id\":191,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/happy-gardeners-with-plants-and-lawn-mower-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"space-between\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_color\":\"#FFFFFF00\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":9,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"46b821c1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":219,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":183,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"449971a9\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Make Appointment & Take Care Your Garden\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=secondary\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=93191b3\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_content_title_color_hover_responsive\":\"#FFFFFF\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#FFFFFF\",\"st_icon_color_responsive\":\"#00E5CC\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#00E5CC\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":false},{\"id\":\"13747b6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.4909999999999996589394868351519107818603515625,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a13f42e\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"178***1721830795182\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fde8487\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"59883b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1617542a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Process\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29c7aa96\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Complete Every Step Carefully\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ced0d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d62463d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18cf7834\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"41f79872\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-consult-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consultation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65e1b761\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"span\",\"title_color\":\"#FFD402\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#006943\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12cdbf13\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4175d29\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-pencil_art-light\",\"library\":\"jkiticon\"},\"title_text\":\"Design Installation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2adabf01\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b628\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"569b3221\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consturction \",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"67d6b2e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6fff79c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53c9a76e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"title_text\":\"Finished Work\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"555aace0\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d57540b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"71\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardening-background-with-garden-tolls-A9BGNJU.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"147831a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"5a53d120\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"20\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Years of Experience\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"488f4727\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"6b8f6eae\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"76666759\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f532f9e\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"2850\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Happy Customers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"265fd738\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5473dc22\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"64\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Expert Landscapers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b38731e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4945f2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"627cd42c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65e3182\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.56499999999999772626324556767940521240234375},\"elements\":[{\"id\":\"43108b53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Projects\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45328989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Project We Have Done\\n\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"f382082\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.49900000000000233058017329312860965728759765625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":40,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"55ecfb57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"67afcbfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.0330000000000012505552149377763271331787109375,\"_inline_size_tablet\":23,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4989aa04\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Projects\",\"align\":\"right\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"left\",\"hover_animation\":\"float\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"32515d84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"3f5753f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"21982cfb\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":196,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Cutting-Leaf.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Cutting Leaf\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"404dc561\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"58d29b54\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":197,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Home-Garden.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Home Garden\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"3bff1dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"3c24185a\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":195,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/build-backyard.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Build Backyard\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_image_height_responsive_tablet\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b3cb58d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_image\":{\"id\":201,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-moving-aerial-photo-Z8KDGJ9-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_color\":\"#0000007D\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"79705206\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"51c9a732\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73b2fe0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"What They Says About Us\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4876e632\",\"elType\":\"widget\",\"settings\":{\"sg_layout_testimonial_choose\":\"style-2\",\"sg_testimonials_image_size_imagesize_size\":\"medium\",\"sg_testimonials_list\":[{\"sg_testimonials_list_client_avatar\":{\"id\":\"75\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/3SUMAU.jpg\"},\"_id\":\"6e9b2e1\",\"sg_testimonials_list_client_name\":\"Regan Traynor\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"76\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/CASCKD8.jpg\"},\"sg_testimonials_list_client_name\":\"Maisha Dunn\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"d069a43\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"77\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/MKLVKTE.jpg\"},\"sg_testimonials_list_client_name\":\"Reis Leonard\",\"sg_testimonials_list_designation\":\"Businessman\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"05c24f5\"}],\"st_wrapper_alignment_responsive\":\"left\",\"st_client_name_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_description_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_client_name_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_client_designation_normal_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_client_designation_normal_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=d343bdf\",\"st_rating_color_responsive\":\"\",\"st_client_name_normal_color_responsive\":\"\",\"st_quote_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_layout_background_background_color\":\"\"},\"st_layout_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_layout_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_wrapper_fix_height\":\"\",\"sg_setting_autoplay\":\"yes\",\"sg_setting_autoplay_pause\":\"\",\"sg_setting_arrow\":\"\",\"sg_setting_arrow_position\":\"middle-edge\",\"sg_setting_dots\":\"\",\"sg_setting_quote\":\"yes\",\"sg_setting_rating\":\"\",\"st_layout_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_layout_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_slide_show_responsive\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"sg_setting_quote_icon\":{\"value\":\"jki jki-quote-light\",\"library\":\"jkiticon\"},\"sg_layout_image_position\":\"below\",\"st_layout_background_background_background\":\"classic\",\"st_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position\":\"\",\"st_quote_override_position_top_responsive\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"st_quote_override_position_left_responsive\":{\"unit\":\"px\",\"size\":442,\"sizes\":[]},\"st_client_name_normal_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_quote_normal_font_size_responsive\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"st_client_image_margin_responsive\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_rating_font_size_responsive\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"st_rating_margin_right_responsive\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_setting_slide_show_responsive_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"st_wrapper_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position_top_responsive_tablet\":{\"unit\":\"px\",\"size\":249,\"sizes\":[]},\"st_quote_override_position_top_responsive_mobile\":{\"unit\":\"px\",\"size\":193,\"sizes\":[]},\"st_quote_override_position_left_responsive_tablet\":{\"unit\":\"px\",\"size\":265,\"sizes\":[]},\"st_quote_override_position_left_responsive_mobile\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]},\"st_quote_normal_font_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"st_description_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_normal_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64afd05f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"746d276b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30338dfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f950be4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ca735b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5d6ca3ad\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_title_hover_color_responsive\":\"globals\\/colors?id=secondary\",\"st_readmore_hover_color_responsive\":\"globals\\/colors?id=secondary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#646974\",\"st_excerpt_color_responsive\":\"#646974\",\"st_title_normal_color_responsive\":\"#272B36\",\"st_thumbnail_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_title_hover_color_responsive\":\"#FA8D25\",\"st_readmore_normal_color_responsive\":\"#FA8D25\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":false}],\"isInner\":false}]'),(1331,233,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1332,234,'_elementor_edit_mode','builder'),(1333,234,'_elementor_template_type','wp-page'),(1334,234,'_elementor_version','3.23.2'),(1335,234,'_wp_page_template','default'),(1336,234,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'); INSERT INTO `victorq_postmeta` VALUES (1337,234,'_elementor_data','[{\"id\":\"35495243\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"Eldery male gardener using scissors for bushes\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"160\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0,\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_size_tablet\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"top center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00160E\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b\":\"#00000054\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_slideshow_gallery\":[{\"id\":154,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-02-5.jpg\"},{\"id\":155,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-03-3.jpg\"},{\"id\":156,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-04-3.jpg\"},{\"id\":157,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-01-5.jpg\"}]},\"elements\":[{\"id\":\"739a26d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":65,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=06a34e7\"}},\"elements\":[{\"id\":\"132d1a8e\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Complete For All\",\"sg_title_focused\":\" Landscape \",\"sg_title_after\":\" Service And Maintenance\",\"sg_title_html_tag\":\"h1\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=primary\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"7c49583a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"635cb25b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"23cf340e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37.85499999999999687361196265555918216705322265625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":48,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"1c4c950d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4768b6f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":62.14500000000000312638803734444081783294677734375,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"flex-start\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":52,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"34c0badb\",\"elType\":\"widget\",\"settings\":{\"sg_video_button_title\":\"Play Video\",\"sg_video_button_icon\":{\"value\":\"jki jki-play\",\"library\":\"jkiticon\"},\"sg_video_url\":\"#\",\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_width_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_line_height_responsive\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#FFD402\",\"st_button_normal_glow_color_responsive\":\"#00694361\",\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"_element_width\":\"auto\",\"__globals__\":{\"st_button_normal_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=accent\",\"st_border_normal_border_border_color\":\"\",\"st_button_hover_text_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_glow_color_responsive\":\"\"},\"st_button_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_button_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_width_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_line_height_responsive_mobile\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"st_border_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_border_normal_border_border_color\":\"#FFD027\",\"st_button_line_height_responsive_tablet\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"st_button_normal_background_background_color\":\"#006943\",\"st_button_hover_text_color_responsive\":\"#006943\",\"st_button_hover_background_background_color\":\"#FFD402\",\"sg_video_auto_play\":\"\",\"sg_video_mute\":\"\"},\"elements\":[],\"widgetType\":\"jkit_video_button\"},{\"id\":\"232ec8da\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Intro\",\"align\":\"right\",\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"hide_mobile\":\"hidden-mobile\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#00160E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49b348ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"edc2dbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.00200000000000244426701101474463939666748046875,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e2246bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Prestige Luxury Cleanings LLC\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"139cc45f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Landscaping And Garden Care Services\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dc78e71\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"597dc67d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"26cf3840\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b19bda0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":167,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"980\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a46c929\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c4d8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Public Liability Insurance\",\"_id\":\"a978734\"},{\"text\":\"Environmentally Friendly\",\"_id\":\"1cd10a1\"},{\"text\":\"On Time, Every Time\",\"_id\":\"c6767db\"},{\"text\":\"Beautiful Garden Designs\",\"_id\":\"d4743f4\"},{\"text\":\"Modern Machinery And Tool\",\"_id\":\"535c17d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"398321ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4c7c15d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.9129999999999967030817060731351375579833984375,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5683e90d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":162,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"860\",\"height\":\"980\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b6190b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":163,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"-59\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"250636f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"713aa588\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"51a71b71\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#00160E\",\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=primary\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=06a34e7\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"st_content_title_color_responsive\":\"#7F7F7F\",\"st_super_color_responsive\":\"#FFD402\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\",\"sg_setting_html_tag\":\"span\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5557874f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"73847855\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":174,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/garden-maintenance-performed-by-pro-gardener-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"b1058a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":224,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":478,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":325,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"69098afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"40\",\"bottom\":\"80\",\"left\":\"40\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"7cb7bf82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91cb5d9\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26358abf\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Have The Perfect Solution For Your Landscape Problems\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15a36cc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42c8d36c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7114454f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76f24ca8\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Variation Gardening\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"138cc39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28a78a06\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Expert Landscapers\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c5ac2bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38fdb183\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3ce0b95b\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Affordable Price\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-save-money-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4c80f133\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7451fb11\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Free Consultation\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-Consultancy-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e93f2c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"39a46e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6773b2a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"87647bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Providing Services For All Your Residential And Commercial Needs.\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3d4509\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30164d28\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e8639b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":142,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-services.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fa92c14\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2c434fb3\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"5abe2e18\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33425b9f\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Residential And Commercial Projects\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"472ed309\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"67cb221c\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e6d8a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":142,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-services.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd233da\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6535a16\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"937e2e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7aee\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Lawn Services\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"d9723d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"c908972\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37c1cce6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":143,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/driveway-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b3e60ba\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3b291bbf\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"20b91942\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5649f719\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Driveway Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6300b69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"256ddf68\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d41e618\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3735f0b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":144,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/deck-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"741128a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3691562\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3c8a0e6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5eb1b3b9\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Deck Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"25f37292\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"61c9ff8e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8781ee3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":145,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/weed-control.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd84c7d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"14f7965\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fb2459e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0582197\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Weed Control \",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"f7b0fa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0197d9e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f3de9c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":146,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/grass-feed.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"75ba950\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"23edbf4\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"ad70b3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1c4ac7\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Grass Feed\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6f592ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0043a3b\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"790dd775\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"360\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"160\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"140\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"background_overlay_color_b\":\"#000414\",\"background_overlay_image\":{\"id\":186,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/a-gardener-watering-plants-in-a-flowerbed-2RT8DWL-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]}},\"elements\":[{\"id\":\"a2ed5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7e37f762\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Landscaping\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a092069\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d5099\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need Someone To Take Care Your Garden & Lawn?\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=07ee36d\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1198756c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"66521a56\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":20,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":4},\"elements\":[{\"id\":\"1a89d099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.5090000000000003410605131648480892181396484375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"id\":191,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/happy-gardeners-with-plants-and-lawn-mower-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"space-between\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_color\":\"#FFFFFF00\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":9,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"46b821c1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":219,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":183,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"449971a9\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Make Appointment & Take Care Your Garden\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=secondary\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=93191b3\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_content_title_color_hover_responsive\":\"#FFFFFF\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#FFFFFF\",\"st_icon_color_responsive\":\"#00E5CC\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#00E5CC\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":false},{\"id\":\"13747b6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.4909999999999996589394868351519107818603515625,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a13f42e\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"178***1721830795182\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fde8487\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"59883b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1617542a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Process\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29c7aa96\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Complete Every Step Carefully\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ced0d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d62463d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18cf7834\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"41f79872\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-consult-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consultation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65e1b761\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"span\",\"title_color\":\"#FFD402\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#006943\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12cdbf13\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4175d29\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-pencil_art-light\",\"library\":\"jkiticon\"},\"title_text\":\"Design Installation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2adabf01\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b628\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"569b3221\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consturction \",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"67d6b2e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6fff79c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53c9a76e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"title_text\":\"Finished Work\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"555aace0\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d57540b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"71\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardening-background-with-garden-tolls-A9BGNJU.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"147831a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"5a53d120\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"20\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Years of Experience\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"488f4727\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"6b8f6eae\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"76666759\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f532f9e\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"2850\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Happy Customers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"265fd738\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5473dc22\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"64\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Expert Landscapers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b38731e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4945f2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"627cd42c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65e3182\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.56499999999999772626324556767940521240234375},\"elements\":[{\"id\":\"43108b53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Projects\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45328989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Project We Have Done\\n\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"f382082\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.49900000000000233058017329312860965728759765625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":40,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"55ecfb57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"67afcbfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.0330000000000012505552149377763271331787109375,\"_inline_size_tablet\":23,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4989aa04\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Projects\",\"align\":\"right\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"left\",\"hover_animation\":\"float\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"32515d84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"3f5753f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"21982cfb\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":196,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Cutting-Leaf.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Cutting Leaf\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"404dc561\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"58d29b54\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":197,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Home-Garden.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Home Garden\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"3bff1dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"3c24185a\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":195,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/build-backyard.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Build Backyard\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_image_height_responsive_tablet\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b3cb58d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_image\":{\"id\":201,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-moving-aerial-photo-Z8KDGJ9-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_color\":\"#0000007D\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"79705206\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"51c9a732\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73b2fe0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"What They Says About Us\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4876e632\",\"elType\":\"widget\",\"settings\":{\"sg_layout_testimonial_choose\":\"style-2\",\"sg_testimonials_image_size_imagesize_size\":\"medium\",\"sg_testimonials_list\":[{\"sg_testimonials_list_client_avatar\":{\"id\":\"75\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/3SUMAU.jpg\"},\"_id\":\"6e9b2e1\",\"sg_testimonials_list_client_name\":\"Regan Traynor\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"76\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/CASCKD8.jpg\"},\"sg_testimonials_list_client_name\":\"Maisha Dunn\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"d069a43\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"77\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/MKLVKTE.jpg\"},\"sg_testimonials_list_client_name\":\"Reis Leonard\",\"sg_testimonials_list_designation\":\"Businessman\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"05c24f5\"}],\"st_wrapper_alignment_responsive\":\"left\",\"st_client_name_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_description_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_client_name_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_client_designation_normal_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_client_designation_normal_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=d343bdf\",\"st_rating_color_responsive\":\"\",\"st_client_name_normal_color_responsive\":\"\",\"st_quote_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_layout_background_background_color\":\"\"},\"st_layout_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_layout_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_wrapper_fix_height\":\"\",\"sg_setting_autoplay\":\"yes\",\"sg_setting_autoplay_pause\":\"\",\"sg_setting_arrow\":\"\",\"sg_setting_arrow_position\":\"middle-edge\",\"sg_setting_dots\":\"\",\"sg_setting_quote\":\"yes\",\"sg_setting_rating\":\"\",\"st_layout_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_layout_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_slide_show_responsive\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"sg_setting_quote_icon\":{\"value\":\"jki jki-quote-light\",\"library\":\"jkiticon\"},\"sg_layout_image_position\":\"below\",\"st_layout_background_background_background\":\"classic\",\"st_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position\":\"\",\"st_quote_override_position_top_responsive\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"st_quote_override_position_left_responsive\":{\"unit\":\"px\",\"size\":442,\"sizes\":[]},\"st_client_name_normal_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_quote_normal_font_size_responsive\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"st_client_image_margin_responsive\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_rating_font_size_responsive\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"st_rating_margin_right_responsive\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_setting_slide_show_responsive_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"st_wrapper_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position_top_responsive_tablet\":{\"unit\":\"px\",\"size\":249,\"sizes\":[]},\"st_quote_override_position_top_responsive_mobile\":{\"unit\":\"px\",\"size\":193,\"sizes\":[]},\"st_quote_override_position_left_responsive_tablet\":{\"unit\":\"px\",\"size\":265,\"sizes\":[]},\"st_quote_override_position_left_responsive_mobile\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]},\"st_quote_normal_font_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"st_description_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_normal_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64afd05f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"746d276b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30338dfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f950be4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ca735b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5d6ca3ad\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_title_hover_color_responsive\":\"globals\\/colors?id=secondary\",\"st_readmore_hover_color_responsive\":\"globals\\/colors?id=secondary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#646974\",\"st_excerpt_color_responsive\":\"#646974\",\"st_title_normal_color_responsive\":\"#272B36\",\"st_thumbnail_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_title_hover_color_responsive\":\"#FA8D25\",\"st_readmore_normal_color_responsive\":\"#FA8D25\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":false}],\"isInner\":false}]'),(1338,234,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1340,235,'_wp_page_template','default'),(1341,235,'_elementor_edit_mode','builder'),(1342,235,'_elementor_template_type','wp-post'),(1343,235,'_elementor_version','3.23.2'),(1344,235,'_elementor_data','[{\"id\":\"25324c9a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#00160E\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_overlay_image\":{\"id\":\"51\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/green-lawn-on-ground-PT9KCVE.jpg\"}},\"elements\":[{\"id\":\"2ed3ced5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"cf27f42\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"gap\":\"no\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"36e45d2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":\"33.596\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"498deddc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":115,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-02.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"529be226\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod \",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=e8dc402\",\"typography_typography\":\"globals\\/typography?id=text\"},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6dfa1147\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"123 Wall St Miami, FL 12345\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"8cfc1eb\"},{\"text\":\"email@email.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"01dad71\",\"link\":{\"url\":\"mailto:email@email.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+1 505 555 5555\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"e0e44de\",\"link\":{\"url\":\"tel:+1 505 555 5555\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"text_color\":\"globals\\/colors?id=06a34e7\",\"icon_typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":\"1\"},{\"id\":\"4dc3ac3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":\"17.193\",\"_inline_size_mobile\":\"100\",\"_inline_size_tablet\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7772d55b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Other Pages\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=8966ad4\"},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41eea4c7\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Home\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8e5ccb4\"},{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"_id\":\"b2b06d7\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2a5846b\"},{\"text\":\"Contact\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcbb08b\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=accent\",\"text_color\":\"\",\"icon_color\":\"globals\\/colors?id=accent\",\"icon_typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":\"1\"},{\"id\":\"35cfcdfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":\"14.211\",\"_inline_size_mobile\":\"100\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"13522926\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick Links\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=8966ad4\"},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bc61709\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8e5ccb4\"},{\"text\":\"Term Of Service\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"_id\":\"b2b06d7\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"FAQ\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"76de45a\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=accent\",\"text_color\":\"\",\"icon_color\":\"globals\\/colors?id=accent\",\"icon_typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":\"1\"},{\"id\":\"3e19ab1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":\"35\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"2abe676b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=8966ad4\"},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f25bdf9\",\"elType\":\"widget\",\"settings\":{\"sg_form_email_placeholder\":\"Your Email Address\",\"sg_form_email_icon_enable\":\"\",\"sg_form_button_text\":\"Send\",\"sg_form_button_icon_enable\":\"\",\"sg_form_success_message\":\"Successfully listed this email\",\"st_input_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_input_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"20\",\"bottom\":\"16\",\"left\":\"20\",\"isLinked\":false},\"st_input_border_border_border\":\"solid\",\"st_input_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_input_margin_right_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_input_placeholder_color_responsive\":\"#B5B8C4\",\"st_button_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"10\",\"bottom\":\"21\",\"left\":\"10\",\"isLinked\":false},\"st_button_width_responsive\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_input_placeholder_color_responsive\":\"\",\"st_input_placeholder_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_input_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_input_color_responsive\":\"globals\\/colors?id=primary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"st_input_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_input_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_input_width_responsive_tablet\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"st_button_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_button_width_responsive_tablet\":{\"unit\":\"px\",\"size\":105,\"sizes\":[]},\"st_button_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"30\",\"bottom\":\"19\",\"left\":\"30\",\"isLinked\":false},\"st_button_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_width_responsive_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_input_width_responsive\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"st_input_width_responsive_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"st_button_hover_background_background_background\":\"classic\",\"st_input_background_background_background\":\"classic\",\"st_input_background_background_color\":\"#FFFFFF\",\"st_button_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_input_color_responsive\":\"#0B1B69\",\"st_button_normal_color_responsive\":\"#0B1B69\",\"st_button_normal_background_background_color\":\"#FFD027\"},\"elements\":[],\"widgetType\":\"jkit_mailchimp\"},{\"id\":\"2f02530a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Get the latest news & updates\\n\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"text_color\":\"globals\\/colors?id=e8dc402\",\"typography_typography\":\"globals\\/typography?id=text\"},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2579224c\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"jki jki-facebook-f\",\"library\":\"jkiticon\"},\"_id\":\"0fb8cc7\"},{\"social_icon\":{\"value\":\"fab fa-x-twitter\",\"library\":\"fa-brands\"},\"_id\":\"4be5bc7\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"147010a\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"df2ad14\"}],\"shape\":\"circle\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"hover_animation\":\"shrink\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=secondary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_secondary_color\":\"globals\\/colors?id=accent\",\"hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"4e4c8b50\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text\":\"Divider\",\"color\":\"#A0AABA2B\",\"gap\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5f48f734\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"#C2C2C2\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"gap\":\"no\"},\"elements\":[{\"id\":\"fe8e002\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"63e6eb20\",\"elType\":\"widget\",\"settings\":{\"editor\":\"

\\u00a9 2024 Prestige Luxury Cleanings LLC. All rights reserved.<\\/p>\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f882794\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"},{\"id\":\"427e430a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"42937d5b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"

Design and development by Design Funnel.<\\/p>\",\"align\":\"right\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f882794\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(1345,235,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1346,235,'_elementor_css','a:6:{s:4:\"time\";i:1721822667;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:3:{i:0;s:8:\"fa-solid\";i:10;s:8:\"jkiticon\";i:11;s:9:\"fa-brands\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1347,236,'_wp_page_template','default'),(1348,236,'_elementor_edit_mode','builder'),(1349,236,'_elementor_template_type','wp-post'),(1350,236,'_elementor_version','3.23.2'),(1351,236,'_elementor_data','[{\"id\":\"25324c9a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#00160E\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_overlay_image\":{\"id\":\"51\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/green-lawn-on-ground-PT9KCVE.jpg\"}},\"elements\":[{\"id\":\"2ed3ced5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"cf27f42\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"gap\":\"no\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"36e45d2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":\"33.596\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"498deddc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":115,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-02.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"529be226\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod \",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=e8dc402\",\"typography_typography\":\"globals\\/typography?id=text\"},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6dfa1147\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"123 Wall St Miami, FL 12345\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"8cfc1eb\"},{\"text\":\"email@email.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"01dad71\",\"link\":{\"url\":\"mailto:email@email.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+1 505 555 5555\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"e0e44de\",\"link\":{\"url\":\"tel:+1 505 555 5555\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"text_color\":\"globals\\/colors?id=06a34e7\",\"icon_typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":\"1\"},{\"id\":\"4dc3ac3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":\"17.193\",\"_inline_size_mobile\":\"100\",\"_inline_size_tablet\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7772d55b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Other Pages\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=8966ad4\"},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41eea4c7\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Home\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8e5ccb4\"},{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"_id\":\"b2b06d7\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2a5846b\"},{\"text\":\"Contact\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcbb08b\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=accent\",\"text_color\":\"\",\"icon_color\":\"globals\\/colors?id=accent\",\"icon_typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":\"1\"},{\"id\":\"35cfcdfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":\"14.211\",\"_inline_size_mobile\":\"100\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"13522926\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick Links\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=8966ad4\"},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bc61709\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8e5ccb4\"},{\"text\":\"Term Of Service\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"_id\":\"b2b06d7\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"FAQ\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"76de45a\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=accent\",\"text_color\":\"\",\"icon_color\":\"globals\\/colors?id=accent\",\"icon_typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":\"1\"},{\"id\":\"3e19ab1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":\"35\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"2abe676b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=8966ad4\"},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f25bdf9\",\"elType\":\"widget\",\"settings\":{\"sg_form_email_placeholder\":\"Your Email Address\",\"sg_form_email_icon_enable\":\"\",\"sg_form_button_text\":\"Send\",\"sg_form_button_icon_enable\":\"\",\"sg_form_success_message\":\"Successfully listed this email\",\"st_input_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_input_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"20\",\"bottom\":\"16\",\"left\":\"20\",\"isLinked\":false},\"st_input_border_border_border\":\"solid\",\"st_input_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_input_margin_right_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_input_placeholder_color_responsive\":\"#B5B8C4\",\"st_button_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"10\",\"bottom\":\"21\",\"left\":\"10\",\"isLinked\":false},\"st_button_width_responsive\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_input_placeholder_color_responsive\":\"\",\"st_input_placeholder_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_input_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_input_color_responsive\":\"globals\\/colors?id=primary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"st_input_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_input_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_input_width_responsive_tablet\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"st_button_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_button_width_responsive_tablet\":{\"unit\":\"px\",\"size\":105,\"sizes\":[]},\"st_button_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"30\",\"bottom\":\"19\",\"left\":\"30\",\"isLinked\":false},\"st_button_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_width_responsive_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_input_width_responsive\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"st_input_width_responsive_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"st_button_hover_background_background_background\":\"classic\",\"st_input_background_background_background\":\"classic\",\"st_input_background_background_color\":\"#FFFFFF\",\"st_button_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_input_color_responsive\":\"#0B1B69\",\"st_button_normal_color_responsive\":\"#0B1B69\",\"st_button_normal_background_background_color\":\"#FFD027\"},\"elements\":[],\"widgetType\":\"jkit_mailchimp\"},{\"id\":\"2f02530a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Get the latest news & updates\\n\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"text_color\":\"globals\\/colors?id=e8dc402\",\"typography_typography\":\"globals\\/typography?id=text\"},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2579224c\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"jki jki-facebook-f\",\"library\":\"jkiticon\"},\"_id\":\"0fb8cc7\"},{\"social_icon\":{\"value\":\"fab fa-x-twitter\",\"library\":\"fa-brands\"},\"_id\":\"4be5bc7\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"147010a\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"df2ad14\"}],\"shape\":\"circle\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"hover_animation\":\"shrink\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=secondary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_secondary_color\":\"globals\\/colors?id=accent\",\"hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"4e4c8b50\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text\":\"Divider\",\"color\":\"#A0AABA2B\",\"gap\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5f48f734\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"#C2C2C2\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"gap\":\"no\"},\"elements\":[{\"id\":\"fe8e002\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"63e6eb20\",\"elType\":\"widget\",\"settings\":{\"editor\":\"

\\u00a9 2024 Prestige Luxury Cleanings LLC. All rights reserved.<\\/p>\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f882794\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"},{\"id\":\"427e430a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"42937d5b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"

Design and development by Design Funnel.<\\/p>\",\"align\":\"right\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f882794\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(1352,236,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1353,236,'_elementor_css','a:6:{s:4:\"time\";i:1721822667;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:3:{i:0;s:8:\"fa-solid\";i:10;s:8:\"jkiticon\";i:11;s:9:\"fa-brands\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1354,237,'_wp_page_template','default'),(1355,237,'_elementor_edit_mode','builder'),(1356,237,'_elementor_template_type','wp-post'),(1357,237,'_elementor_version','3.23.2'),(1358,237,'_elementor_data','[{\"id\":\"25324c9a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#00160E\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_overlay_image\":{\"id\":\"51\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/green-lawn-on-ground-PT9KCVE.jpg\"}},\"elements\":[{\"id\":\"2ed3ced5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"cf27f42\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"gap\":\"no\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"36e45d2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":\"33.596\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"498deddc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":115,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-02.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"529be226\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod \",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=e8dc402\",\"typography_typography\":\"globals\\/typography?id=text\"},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6dfa1147\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"123 Wall St Miami, FL 12345\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"8cfc1eb\"},{\"text\":\"email@email.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"01dad71\",\"link\":{\"url\":\"mailto:email@email.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+1 505 555 5555\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"e0e44de\",\"link\":{\"url\":\"tel:+1 505 555 5555\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"text_color\":\"globals\\/colors?id=06a34e7\",\"icon_typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":\"1\"},{\"id\":\"4dc3ac3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":\"17.193\",\"_inline_size_mobile\":\"100\",\"_inline_size_tablet\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7772d55b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Other Pages\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=8966ad4\"},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41eea4c7\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Home\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8e5ccb4\"},{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"_id\":\"b2b06d7\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2a5846b\"},{\"text\":\"Contact\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcbb08b\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=accent\",\"text_color\":\"\",\"icon_color\":\"globals\\/colors?id=accent\",\"icon_typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":\"1\"},{\"id\":\"35cfcdfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":\"14.211\",\"_inline_size_mobile\":\"100\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"13522926\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick Links\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=8966ad4\"},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bc61709\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8e5ccb4\"},{\"text\":\"Term Of Service\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"_id\":\"b2b06d7\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"FAQ\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"76de45a\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=accent\",\"text_color\":\"\",\"icon_color\":\"globals\\/colors?id=accent\",\"icon_typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":\"1\"},{\"id\":\"3e19ab1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":\"35\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"2abe676b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=8966ad4\"},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f25bdf9\",\"elType\":\"widget\",\"settings\":{\"sg_form_email_placeholder\":\"Your Email Address\",\"sg_form_email_icon_enable\":\"\",\"sg_form_button_text\":\"Send\",\"sg_form_button_icon_enable\":\"\",\"sg_form_success_message\":\"Successfully listed this email\",\"st_input_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_input_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"20\",\"bottom\":\"16\",\"left\":\"20\",\"isLinked\":false},\"st_input_border_border_border\":\"solid\",\"st_input_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_input_margin_right_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_input_placeholder_color_responsive\":\"#B5B8C4\",\"st_button_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"10\",\"bottom\":\"21\",\"left\":\"10\",\"isLinked\":false},\"st_button_width_responsive\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_input_placeholder_color_responsive\":\"\",\"st_input_placeholder_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_input_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_input_color_responsive\":\"globals\\/colors?id=primary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"st_input_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_input_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_input_width_responsive_tablet\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"st_button_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_button_width_responsive_tablet\":{\"unit\":\"px\",\"size\":105,\"sizes\":[]},\"st_button_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"30\",\"bottom\":\"19\",\"left\":\"30\",\"isLinked\":false},\"st_button_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_width_responsive_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_input_width_responsive\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"st_input_width_responsive_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"st_button_hover_background_background_background\":\"classic\",\"st_input_background_background_background\":\"classic\",\"st_input_background_background_color\":\"#FFFFFF\",\"st_button_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_input_color_responsive\":\"#0B1B69\",\"st_button_normal_color_responsive\":\"#0B1B69\",\"st_button_normal_background_background_color\":\"#FFD027\"},\"elements\":[],\"widgetType\":\"jkit_mailchimp\"},{\"id\":\"2f02530a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Get the latest news & updates\\n\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"text_color\":\"globals\\/colors?id=e8dc402\",\"typography_typography\":\"globals\\/typography?id=text\"},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2579224c\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"jki jki-facebook-f\",\"library\":\"jkiticon\"},\"_id\":\"0fb8cc7\"},{\"social_icon\":{\"value\":\"fab fa-x-twitter\",\"library\":\"fa-brands\"},\"_id\":\"4be5bc7\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"147010a\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"df2ad14\"}],\"shape\":\"circle\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"hover_animation\":\"shrink\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=secondary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_secondary_color\":\"globals\\/colors?id=accent\",\"hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"4e4c8b50\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text\":\"Divider\",\"color\":\"#A0AABA2B\",\"gap\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5f48f734\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"#C2C2C2\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"gap\":\"no\"},\"elements\":[{\"id\":\"fe8e002\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"63e6eb20\",\"elType\":\"widget\",\"settings\":{\"editor\":\"

\\u00a9 2024 Prestige Luxury Cleanings LLC. All rights reserved.<\\/p>\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f882794\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"},{\"id\":\"427e430a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"42937d5b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"

Design and development by Designs Funnel.<\\/p>\",\"align\":\"right\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f882794\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(1359,237,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1360,237,'_elementor_css','a:6:{s:4:\"time\";i:1721822667;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:3:{i:0;s:8:\"fa-solid\";i:10;s:8:\"jkiticon\";i:11;s:9:\"fa-brands\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1362,238,'_wp_page_template','default'),(1363,238,'_elementor_edit_mode','builder'),(1364,238,'_elementor_template_type','wp-post'),(1365,238,'_elementor_version','3.23.2'),(1366,238,'_elementor_data','[{\"id\":\"65d61e79\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"z_index\":2,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"49c5f53f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"z_index_tablet\":5},\"elements\":[{\"id\":\"7fd427a5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"a5ad795\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.315000000000001278976924368180334568023681640625,\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"4b6500b7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":219,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-2.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2eb94bb5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":58.89099999999999823785401531495153903961181640625,\"align\":\"flex-end\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":70,\"hide_mobile\":\"hidden-phone\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18bb12d6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-map-marker1-light\",\"library\":\"jkiticon\"},\"title_text\":\"Location\",\"description_text\":\"123 Wall St\\nMiami, FL 12345\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#EAEAEA\",\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"description_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"globals\\/typography?id=8966ad4\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"view\":\"framed\",\"icon_padding\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#006943\",\"title_color\":\"#00160E\",\"description_color\":\"#7F7F7F\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"294dea9a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-phone-call-line\",\"library\":\"jkiticon\"},\"title_text\":\"Call Us\",\"description_text\":\"+1 505 555 5555\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"description_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"globals\\/typography?id=8966ad4\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"view\":\"framed\",\"icon_padding\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"5ef5f227\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":21.452000000000001733724275254644453525543212890625,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"234dd6d2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"align\":\"right\",\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=558fe58\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"hover_animation\":\"float\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1ed2d9f1\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":3,\"blur\":15,\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.06)\"},\"background_background\":\"classic\",\"z_index\":1,\"jet_sticky_section_sticky\":\"yes\",\"jet_sticky_section_sticky_z_index\":\"10\",\"jet_sticky_section_sticky_background_background\":\"classic\",\"jet_sticky_section_sticky_background_color\":\"#FFFFFF\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"z_index_tablet\":4,\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a58714b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80.3490000000000037516656448133289813995361328125,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":20,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"14c9c516\",\"elType\":\"widget\",\"settings\":{\"sg_menu_choose\":\"menu\",\"sg_mobile_menu_logo\":{\"id\":107,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_mobile_menu_logo_size_imagesize_size\":\"full\",\"sg_mobile_menu_icon\":{\"value\":\"jki jki-bars-solid\",\"library\":\"jkiticon\"},\"st_menu_wrapper_height_responsive\":{\"unit\":\"px\",\"size\":74,\"sizes\":[]},\"st_menu_wrapper_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"},\"st_submenu_item_indicator_margin_responsive\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_submenu_panel_padding_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_panel_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_background_background_background\":\"classic\",\"st_submenu_panel_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_position_responsive_tablet\":\"left\",\"st_hamburger_menu_icon_background_background_background\":\"classic\",\"st_hamburger_menu_icon_background_background_color\":\"#FFFFFF00\",\"st_hamburger_menu_icon_border_border_border\":\"solid\",\"st_hamburger_menu_icon_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_hamburger_menu_close_background_background_background\":\"classic\",\"st_hamburger_menu_close_border_border_border\":\"solid\",\"st_hamburger_menu_close_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"st_menu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_menu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_color_responsive\":\"\",\"st_submenu_panel_background_background_color\":\"\",\"st_submenu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_submenu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_wrapper_mobile_color_tablet_responsive_tablet\":\"\",\"st_menu_item_text_normal_color_responsive_tablet\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_item_text_active_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_submenu_item_indicator_color_responsive_tablet\":\"\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_icon_color_hover_responsive_tablet\":\"\",\"st_hamburger_menu_close_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_close_color_hover_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_wrapper_background_background_color\":\"\",\"st_hamburger_menu_close_background_background_color\":\"globals\\/colors?id=secondary\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_border_border_color\":\"\",\"st_hamburger_menu_close_background_hover_background_color\":\"globals\\/colors?id=accent\"},\"st_submenu_panel_box_shadow_box_shadow_box_shadow_type\":\"yes\",\"st_submenu_panel_box_shadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_submenu_item_indicator_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_submenu_item_indicator_border_border_border\":\"solid\",\"st_submenu_item_indicator_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_submenu_panel_background_background_color\":\"#FFFFFF\",\"st_hamburger_menu_icon_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_icon_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_close_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_hamburger_menu_close_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_hamburger_menu_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_menu_item_text_normal_color_responsive_tablet\":\"#6EC1E4\",\"st_menu_item_text_hover_color_responsive_tablet\":\"#54595F\",\"st_menu_item_text_active_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_close_background_background_color\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"#54595F\",\"st_hamburger_menu_position_responsive_mobile\":\"left\",\"st_hamburger_menu_close_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_hamburger_menu_close_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"st_mobile_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"st_menu_item_text_hover_color_responsive\":\"#54595F\",\"st_menu_item_text_active_color_responsive\":\"#54595F\",\"st_mobile_menu_object_fit_responsive_tablet\":\"cover\",\"st_mobile_menu_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_hamburger_menu_close_background_hover_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_nav_menu\"}],\"isInner\":\"\"},{\"id\":\"5e047152\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":19.650999999999999801048033987171947956085205078125,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":30,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":80},\"elements\":[{\"id\":\"976c2f8\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"jki jki-facebook-f\",\"library\":\"jkiticon\"},\"_id\":\"0fb8cc7\"},{\"social_icon\":{\"value\":\"fab fa-x-twitter\",\"library\":\"fa-brands\"},\"_id\":\"4be5bc7\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"147010a\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"df2ad14\"}],\"shape\":\"circle\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"hover_animation\":\"shrink\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=secondary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_secondary_color\":\"globals\\/colors?id=accent\",\"hover_primary_color\":\"globals\\/colors?id=accent\"},\"align_tablet\":\"right\",\"hover_primary_color\":\"#006943\",\"hover_secondary_color\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(1367,238,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1368,238,'_elementor_css','a:6:{s:4:\"time\";i:1721834382;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:4:{i:0;s:8:\"jkiticon\";i:2;s:0:\"\";i:4;s:8:\"fa-solid\";i:7;s:9:\"fa-brands\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1369,239,'_wp_page_template','default'),(1370,239,'_elementor_edit_mode','builder'),(1371,239,'_elementor_template_type','wp-post'),(1372,239,'_elementor_version','3.23.2'),(1373,239,'_elementor_data','[{\"id\":\"65d61e79\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"z_index\":2,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"49c5f53f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"z_index_tablet\":5},\"elements\":[{\"id\":\"7fd427a5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"a5ad795\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.315000000000001278976924368180334568023681640625,\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"4b6500b7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":219,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-2.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":85,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2eb94bb5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":58.89099999999999823785401531495153903961181640625,\"align\":\"flex-end\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":70,\"hide_mobile\":\"hidden-phone\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18bb12d6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-map-marker1-light\",\"library\":\"jkiticon\"},\"title_text\":\"Location\",\"description_text\":\"123 Wall St\\nMiami, FL 12345\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#EAEAEA\",\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"description_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"globals\\/typography?id=8966ad4\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"view\":\"framed\",\"icon_padding\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#006943\",\"title_color\":\"#00160E\",\"description_color\":\"#7F7F7F\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"294dea9a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-phone-call-line\",\"library\":\"jkiticon\"},\"title_text\":\"Call Us\",\"description_text\":\"+1 505 555 5555\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"description_color\":\"globals\\/colors?id=text\",\"title_typography_typography\":\"globals\\/typography?id=8966ad4\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"view\":\"framed\",\"icon_padding\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"5ef5f227\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":21.452000000000001733724275254644453525543212890625,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"234dd6d2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"align\":\"right\",\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=558fe58\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"hover_animation\":\"float\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1ed2d9f1\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":3,\"blur\":15,\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.06)\"},\"background_background\":\"classic\",\"z_index\":1,\"jet_sticky_section_sticky\":\"yes\",\"jet_sticky_section_sticky_z_index\":\"10\",\"jet_sticky_section_sticky_background_background\":\"classic\",\"jet_sticky_section_sticky_background_color\":\"#FFFFFF\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"z_index_tablet\":4,\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a58714b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80.3490000000000037516656448133289813995361328125,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":20,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"14c9c516\",\"elType\":\"widget\",\"settings\":{\"sg_menu_choose\":\"menu\",\"sg_mobile_menu_logo\":{\"id\":107,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_mobile_menu_logo_size_imagesize_size\":\"full\",\"sg_mobile_menu_icon\":{\"value\":\"jki jki-bars-solid\",\"library\":\"jkiticon\"},\"st_menu_wrapper_height_responsive\":{\"unit\":\"px\",\"size\":74,\"sizes\":[]},\"st_menu_wrapper_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"},\"st_submenu_item_indicator_margin_responsive\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_submenu_panel_padding_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_panel_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_background_background_background\":\"classic\",\"st_submenu_panel_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_position_responsive_tablet\":\"left\",\"st_hamburger_menu_icon_background_background_background\":\"classic\",\"st_hamburger_menu_icon_background_background_color\":\"#FFFFFF00\",\"st_hamburger_menu_icon_border_border_border\":\"solid\",\"st_hamburger_menu_icon_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_hamburger_menu_close_background_background_background\":\"classic\",\"st_hamburger_menu_close_border_border_border\":\"solid\",\"st_hamburger_menu_close_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"st_menu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_menu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_color_responsive\":\"\",\"st_submenu_panel_background_background_color\":\"\",\"st_submenu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_submenu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_wrapper_mobile_color_tablet_responsive_tablet\":\"\",\"st_menu_item_text_normal_color_responsive_tablet\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_item_text_active_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_submenu_item_indicator_color_responsive_tablet\":\"\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_icon_color_hover_responsive_tablet\":\"\",\"st_hamburger_menu_close_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_close_color_hover_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_wrapper_background_background_color\":\"\",\"st_hamburger_menu_close_background_background_color\":\"globals\\/colors?id=secondary\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_border_border_color\":\"\",\"st_hamburger_menu_close_background_hover_background_color\":\"globals\\/colors?id=accent\"},\"st_submenu_panel_box_shadow_box_shadow_box_shadow_type\":\"yes\",\"st_submenu_panel_box_shadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_submenu_item_indicator_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_submenu_item_indicator_border_border_border\":\"solid\",\"st_submenu_item_indicator_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_submenu_panel_background_background_color\":\"#FFFFFF\",\"st_hamburger_menu_icon_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_icon_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_close_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_hamburger_menu_close_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_hamburger_menu_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_menu_item_text_normal_color_responsive_tablet\":\"#6EC1E4\",\"st_menu_item_text_hover_color_responsive_tablet\":\"#54595F\",\"st_menu_item_text_active_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_close_background_background_color\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"#54595F\",\"st_hamburger_menu_position_responsive_mobile\":\"left\",\"st_hamburger_menu_close_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_hamburger_menu_close_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"st_mobile_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"st_menu_item_text_hover_color_responsive\":\"#54595F\",\"st_menu_item_text_active_color_responsive\":\"#54595F\",\"st_mobile_menu_object_fit_responsive_tablet\":\"cover\",\"st_mobile_menu_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_hamburger_menu_close_background_hover_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_nav_menu\"}],\"isInner\":\"\"},{\"id\":\"5e047152\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":19.650999999999999801048033987171947956085205078125,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":30,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":80},\"elements\":[{\"id\":\"976c2f8\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"jki jki-facebook-f\",\"library\":\"jkiticon\"},\"_id\":\"0fb8cc7\"},{\"social_icon\":{\"value\":\"fab fa-x-twitter\",\"library\":\"fa-brands\"},\"_id\":\"4be5bc7\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"147010a\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"df2ad14\"}],\"shape\":\"circle\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"hover_animation\":\"shrink\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=secondary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_secondary_color\":\"globals\\/colors?id=accent\",\"hover_primary_color\":\"globals\\/colors?id=accent\"},\"align_tablet\":\"right\",\"hover_primary_color\":\"#006943\",\"hover_secondary_color\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(1374,239,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1375,239,'_elementor_css','a:6:{s:4:\"time\";i:1721834382;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:4:{i:0;s:8:\"jkiticon\";i:2;s:0:\"\";i:4;s:8:\"fa-solid\";i:7;s:9:\"fa-brands\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1376,240,'_wp_page_template','default'),(1377,240,'_elementor_edit_mode','builder'),(1378,240,'_elementor_template_type','wp-post'),(1379,240,'_elementor_version','3.23.2'),(1380,240,'_elementor_data','[{\"id\":\"1ed2d9f1\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":3,\"blur\":15,\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.06)\"},\"background_background\":\"classic\",\"z_index\":1,\"jet_sticky_section_sticky\":\"yes\",\"jet_sticky_section_sticky_z_index\":\"10\",\"jet_sticky_section_sticky_background_background\":\"classic\",\"jet_sticky_section_sticky_background_color\":\"#FFFFFF\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"z_index_tablet\":4,\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a58714b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80.3490000000000037516656448133289813995361328125,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":20,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"18bb12d6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-map-marker1-light\",\"library\":\"jkiticon\"},\"title_text\":\"\",\"description_text\":\"123 Wall St\\nMiami, FL 12345\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"none\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#EAEAEA\",\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\",\"description_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"secondary_color\":\"\",\"title_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"view\":\"framed\",\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#3F5A29\",\"title_color\":\"#00160E\",\"description_color\":\"#00160E\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"secondary_color\":\"#FFFFFF00\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Heebo\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"294dea9a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-phone-call-line\",\"library\":\"jkiticon\"},\"title_text\":\"\",\"description_text\":\"+1 505 555 5555\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\",\"description_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"secondary_color\":\"\",\"title_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"view\":\"framed\",\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"tel:+1 505 555 5555\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"primary_color\":\"#3F5A29\",\"secondary_color\":\"#FFFFFF00\",\"title_color\":\"#00160E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"description_color\":\"#00160E\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Heebo\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_border_border\":\"none\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#EAEAEA\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"5e047152\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":19.650999999999999801048033987171947956085205078125,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":30,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":80},\"elements\":[{\"id\":\"976c2f8\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"jki jki-facebook-f\",\"library\":\"jkiticon\"},\"_id\":\"0fb8cc7\"},{\"social_icon\":{\"value\":\"fab fa-x-twitter\",\"library\":\"fa-brands\"},\"_id\":\"4be5bc7\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"147010a\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"df2ad14\"}],\"shape\":\"circle\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"hover_animation\":\"shrink\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=secondary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_secondary_color\":\"globals\\/colors?id=accent\",\"hover_primary_color\":\"globals\\/colors?id=accent\"},\"align_tablet\":\"right\",\"hover_primary_color\":\"#006943\",\"hover_secondary_color\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65d61e79\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"49c5f53f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"z_index_tablet\":5},\"elements\":[{\"id\":\"7fd427a5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"a5ad795\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[{\"id\":\"4b6500b7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":219,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-2.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2eb94bb5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.6580000000000012505552149377763271331787109375,\"align\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":70,\"hide_mobile\":\"hidden-phone\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"14c9c516\",\"elType\":\"widget\",\"settings\":{\"sg_menu_choose\":\"menu\",\"sg_mobile_menu_logo\":{\"id\":107,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_mobile_menu_logo_size_imagesize_size\":\"full\",\"sg_mobile_menu_icon\":{\"value\":\"jki jki-bars-solid\",\"library\":\"jkiticon\"},\"st_menu_wrapper_height_responsive\":{\"unit\":\"px\",\"size\":74,\"sizes\":[]},\"st_menu_wrapper_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"},\"st_submenu_item_indicator_margin_responsive\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_submenu_panel_padding_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_panel_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_background_background_background\":\"classic\",\"st_submenu_panel_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_position_responsive_tablet\":\"left\",\"st_hamburger_menu_icon_background_background_background\":\"classic\",\"st_hamburger_menu_icon_background_background_color\":\"#FFFFFF00\",\"st_hamburger_menu_icon_border_border_border\":\"solid\",\"st_hamburger_menu_icon_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_hamburger_menu_close_background_background_background\":\"classic\",\"st_hamburger_menu_close_border_border_border\":\"solid\",\"st_hamburger_menu_close_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"st_menu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_menu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_color_responsive\":\"\",\"st_submenu_panel_background_background_color\":\"\",\"st_submenu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_submenu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_wrapper_mobile_color_tablet_responsive_tablet\":\"\",\"st_menu_item_text_normal_color_responsive_tablet\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_item_text_active_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_submenu_item_indicator_color_responsive_tablet\":\"\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_icon_color_hover_responsive_tablet\":\"\",\"st_hamburger_menu_close_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_close_color_hover_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_wrapper_background_background_color\":\"\",\"st_hamburger_menu_close_background_background_color\":\"globals\\/colors?id=secondary\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_border_border_color\":\"\",\"st_hamburger_menu_close_background_hover_background_color\":\"globals\\/colors?id=accent\"},\"st_submenu_panel_box_shadow_box_shadow_box_shadow_type\":\"yes\",\"st_submenu_panel_box_shadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_submenu_item_indicator_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_submenu_item_indicator_border_border_border\":\"solid\",\"st_submenu_item_indicator_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_submenu_panel_background_background_color\":\"#FFFFFF\",\"st_hamburger_menu_icon_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_icon_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_close_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_hamburger_menu_close_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_hamburger_menu_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_menu_item_text_normal_color_responsive_tablet\":\"#6EC1E4\",\"st_menu_item_text_hover_color_responsive_tablet\":\"#54595F\",\"st_menu_item_text_active_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_close_background_background_color\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"#54595F\",\"st_hamburger_menu_position_responsive_mobile\":\"left\",\"st_hamburger_menu_close_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_hamburger_menu_close_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"st_mobile_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"st_menu_item_text_hover_color_responsive\":\"#54595F\",\"st_menu_item_text_active_color_responsive\":\"#54595F\",\"st_mobile_menu_object_fit_responsive_tablet\":\"cover\",\"st_mobile_menu_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_hamburger_menu_close_background_hover_background_background\":\"classic\",\"sg_menu_alignment_responsive\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_nav_menu\"}],\"isInner\":true},{\"id\":\"5ef5f227\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"234dd6d2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"align\":\"right\",\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=558fe58\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"hover_animation\":\"float\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1381,240,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1382,240,'_elementor_css','a:6:{s:4:\"time\";i:1721834382;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:4:{i:0;s:8:\"jkiticon\";i:2;s:0:\"\";i:4;s:8:\"fa-solid\";i:7;s:9:\"fa-brands\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1384,241,'_wp_page_template','default'),(1385,241,'_elementor_edit_mode','builder'),(1386,241,'_elementor_template_type','wp-post'),(1387,241,'_elementor_version','3.23.2'),(1388,241,'_elementor_data','[{\"id\":\"1ed2d9f1\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":3,\"blur\":15,\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.06)\"},\"background_background\":\"classic\",\"z_index\":1,\"jet_sticky_section_sticky\":\"yes\",\"jet_sticky_section_sticky_z_index\":\"10\",\"jet_sticky_section_sticky_background_background\":\"classic\",\"jet_sticky_section_sticky_background_color\":\"#FFFFFF\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"z_index_tablet\":4,\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a58714b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80.3490000000000037516656448133289813995361328125,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":20,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"18bb12d6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-map-marker1-light\",\"library\":\"jkiticon\"},\"title_text\":\"\",\"description_text\":\"123 Wall St\\nMiami, FL 12345\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"none\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#EAEAEA\",\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\",\"description_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"secondary_color\":\"\",\"title_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"view\":\"framed\",\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#3F5A29\",\"title_color\":\"#00160E\",\"description_color\":\"#00160E\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"secondary_color\":\"#FFFFFF00\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Heebo\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"294dea9a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-phone-call-line\",\"library\":\"jkiticon\"},\"title_text\":\"\",\"description_text\":\"+1 505 555 5555\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\",\"description_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"secondary_color\":\"\",\"title_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"view\":\"framed\",\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"tel:+1 505 555 5555\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"primary_color\":\"#3F5A29\",\"secondary_color\":\"#FFFFFF00\",\"title_color\":\"#00160E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"description_color\":\"#00160E\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Heebo\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_border_border\":\"none\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#EAEAEA\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"5e047152\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":19.650999999999999801048033987171947956085205078125,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":30,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":80},\"elements\":[{\"id\":\"976c2f8\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"jki jki-facebook-f\",\"library\":\"jkiticon\"},\"_id\":\"0fb8cc7\"},{\"social_icon\":{\"value\":\"fab fa-x-twitter\",\"library\":\"fa-brands\"},\"_id\":\"4be5bc7\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"147010a\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"df2ad14\"}],\"shape\":\"circle\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"hover_animation\":\"shrink\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=secondary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_secondary_color\":\"globals\\/colors?id=accent\",\"hover_primary_color\":\"globals\\/colors?id=accent\"},\"align_tablet\":\"right\",\"hover_primary_color\":\"#006943\",\"hover_secondary_color\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65d61e79\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"49c5f53f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"z_index_tablet\":5},\"elements\":[{\"id\":\"7fd427a5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"a5ad795\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[{\"id\":\"4b6500b7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":219,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-2.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2eb94bb5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.6580000000000012505552149377763271331787109375,\"align\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":70,\"hide_mobile\":\"hidden-phone\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"14c9c516\",\"elType\":\"widget\",\"settings\":{\"sg_menu_choose\":\"menu\",\"sg_mobile_menu_logo\":{\"id\":107,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_mobile_menu_logo_size_imagesize_size\":\"full\",\"sg_mobile_menu_icon\":{\"value\":\"jki jki-bars-solid\",\"library\":\"jkiticon\"},\"st_menu_wrapper_height_responsive\":{\"unit\":\"px\",\"size\":74,\"sizes\":[]},\"st_menu_wrapper_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"},\"st_submenu_item_indicator_margin_responsive\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_submenu_panel_padding_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_panel_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_background_background_background\":\"classic\",\"st_submenu_panel_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_position_responsive_tablet\":\"left\",\"st_hamburger_menu_icon_background_background_background\":\"classic\",\"st_hamburger_menu_icon_background_background_color\":\"#FFFFFF00\",\"st_hamburger_menu_icon_border_border_border\":\"solid\",\"st_hamburger_menu_icon_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_hamburger_menu_close_background_background_background\":\"classic\",\"st_hamburger_menu_close_border_border_border\":\"solid\",\"st_hamburger_menu_close_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"st_menu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_menu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_color_responsive\":\"\",\"st_submenu_panel_background_background_color\":\"\",\"st_submenu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_submenu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_wrapper_mobile_color_tablet_responsive_tablet\":\"\",\"st_menu_item_text_normal_color_responsive_tablet\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_item_text_active_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_submenu_item_indicator_color_responsive_tablet\":\"\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_icon_color_hover_responsive_tablet\":\"\",\"st_hamburger_menu_close_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_close_color_hover_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_wrapper_background_background_color\":\"\",\"st_hamburger_menu_close_background_background_color\":\"globals\\/colors?id=secondary\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_border_border_color\":\"\",\"st_hamburger_menu_close_background_hover_background_color\":\"globals\\/colors?id=accent\"},\"st_submenu_panel_box_shadow_box_shadow_box_shadow_type\":\"yes\",\"st_submenu_panel_box_shadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_submenu_item_indicator_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_submenu_item_indicator_border_border_border\":\"solid\",\"st_submenu_item_indicator_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_submenu_panel_background_background_color\":\"#FFFFFF\",\"st_hamburger_menu_icon_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_icon_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_close_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_hamburger_menu_close_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_hamburger_menu_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_menu_item_text_normal_color_responsive_tablet\":\"#6EC1E4\",\"st_menu_item_text_hover_color_responsive_tablet\":\"#54595F\",\"st_menu_item_text_active_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_close_background_background_color\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"#54595F\",\"st_hamburger_menu_position_responsive_mobile\":\"left\",\"st_hamburger_menu_close_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_hamburger_menu_close_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"st_mobile_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"st_menu_item_text_hover_color_responsive\":\"#54595F\",\"st_menu_item_text_active_color_responsive\":\"#54595F\",\"st_mobile_menu_object_fit_responsive_tablet\":\"cover\",\"st_mobile_menu_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_hamburger_menu_close_background_hover_background_background\":\"classic\",\"sg_menu_alignment_responsive\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_nav_menu\"}],\"isInner\":true},{\"id\":\"5ef5f227\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"234dd6d2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"align\":\"right\",\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=558fe58\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"hover_animation\":\"float\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1389,241,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1390,241,'_elementor_css','a:6:{s:4:\"time\";i:1721835926;s:5:\"fonts\";a:1:{i:0;s:5:\"Inter\";}s:5:\"icons\";a:4:{i:0;s:8:\"jkiticon\";i:3;s:9:\"fa-brands\";i:7;s:8:\"fa-solid\";i:9;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1391,242,'_wp_page_template','default'),(1392,242,'_elementor_edit_mode','builder'),(1393,242,'_elementor_template_type','wp-post'),(1394,242,'_elementor_version','3.23.2'),(1395,242,'_elementor_data','[{\"id\":\"1ed2d9f1\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":3,\"blur\":15,\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.06)\"},\"background_background\":\"classic\",\"z_index\":1,\"jet_sticky_section_sticky\":\"yes\",\"jet_sticky_section_sticky_z_index\":\"10\",\"jet_sticky_section_sticky_background_background\":\"classic\",\"jet_sticky_section_sticky_background_color\":\"#FFFFFF\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"z_index_tablet\":4,\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a58714b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80.3490000000000037516656448133289813995361328125,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":20,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"18bb12d6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-map-marker1-light\",\"library\":\"jkiticon\"},\"title_text\":\"\",\"description_text\":\"123 Wall St\\nMiami, FL 12345\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"none\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#EAEAEA\",\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\",\"description_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"secondary_color\":\"\",\"title_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"view\":\"framed\",\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#3F5A29\",\"title_color\":\"#00160E\",\"description_color\":\"#00160E\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"secondary_color\":\"#FFFFFF00\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Heebo\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"294dea9a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-phone-call-line\",\"library\":\"jkiticon\"},\"title_text\":\"\",\"description_text\":\"+1 505 555 5555\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\",\"description_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"secondary_color\":\"\",\"title_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"view\":\"framed\",\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"tel:+1 505 555 5555\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"primary_color\":\"#3F5A29\",\"secondary_color\":\"#FFFFFF00\",\"title_color\":\"#00160E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"description_color\":\"#00160E\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Heebo\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_border_border\":\"none\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#EAEAEA\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"5e047152\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":19.650999999999999801048033987171947956085205078125,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":30,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":80},\"elements\":[{\"id\":\"976c2f8\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"jki jki-facebook-f\",\"library\":\"jkiticon\"},\"_id\":\"0fb8cc7\"},{\"social_icon\":{\"value\":\"fab fa-x-twitter\",\"library\":\"fa-brands\"},\"_id\":\"4be5bc7\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"147010a\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"df2ad14\"}],\"shape\":\"circle\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"hover_animation\":\"shrink\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=secondary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_secondary_color\":\"globals\\/colors?id=accent\",\"hover_primary_color\":\"globals\\/colors?id=accent\"},\"align_tablet\":\"right\",\"hover_primary_color\":\"#006943\",\"hover_secondary_color\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65d61e79\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"49c5f53f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"z_index_tablet\":5},\"elements\":[{\"id\":\"7fd427a5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"a5ad795\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[{\"id\":\"4b6500b7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":219,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-2.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2eb94bb5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.6580000000000012505552149377763271331787109375,\"align\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":70,\"hide_mobile\":\"hidden-phone\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"14c9c516\",\"elType\":\"widget\",\"settings\":{\"sg_menu_choose\":\"menu\",\"sg_mobile_menu_logo\":{\"id\":107,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_mobile_menu_logo_size_imagesize_size\":\"full\",\"sg_mobile_menu_icon\":{\"value\":\"jki jki-bars-solid\",\"library\":\"jkiticon\"},\"st_menu_wrapper_height_responsive\":{\"unit\":\"px\",\"size\":74,\"sizes\":[]},\"st_menu_wrapper_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"},\"st_submenu_item_indicator_margin_responsive\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_submenu_panel_padding_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_panel_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_background_background_background\":\"classic\",\"st_submenu_panel_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_position_responsive_tablet\":\"left\",\"st_hamburger_menu_icon_background_background_background\":\"classic\",\"st_hamburger_menu_icon_background_background_color\":\"#FFFFFF00\",\"st_hamburger_menu_icon_border_border_border\":\"solid\",\"st_hamburger_menu_icon_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_hamburger_menu_close_background_background_background\":\"classic\",\"st_hamburger_menu_close_border_border_border\":\"solid\",\"st_hamburger_menu_close_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"st_menu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_menu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_color_responsive\":\"\",\"st_submenu_panel_background_background_color\":\"\",\"st_submenu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_submenu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_wrapper_mobile_color_tablet_responsive_tablet\":\"\",\"st_menu_item_text_normal_color_responsive_tablet\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_item_text_active_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_submenu_item_indicator_color_responsive_tablet\":\"\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_icon_color_hover_responsive_tablet\":\"\",\"st_hamburger_menu_close_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_close_color_hover_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_wrapper_background_background_color\":\"\",\"st_hamburger_menu_close_background_background_color\":\"globals\\/colors?id=secondary\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_border_border_color\":\"\",\"st_hamburger_menu_close_background_hover_background_color\":\"globals\\/colors?id=accent\"},\"st_submenu_panel_box_shadow_box_shadow_box_shadow_type\":\"yes\",\"st_submenu_panel_box_shadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_submenu_item_indicator_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_submenu_item_indicator_border_border_border\":\"solid\",\"st_submenu_item_indicator_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_submenu_panel_background_background_color\":\"#FFFFFF\",\"st_hamburger_menu_icon_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_icon_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_close_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_hamburger_menu_close_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_hamburger_menu_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_menu_item_text_normal_color_responsive_tablet\":\"#6EC1E4\",\"st_menu_item_text_hover_color_responsive_tablet\":\"#54595F\",\"st_menu_item_text_active_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_close_background_background_color\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"#54595F\",\"st_hamburger_menu_position_responsive_mobile\":\"left\",\"st_hamburger_menu_close_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_hamburger_menu_close_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"st_mobile_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"st_menu_item_text_hover_color_responsive\":\"#54595F\",\"st_menu_item_text_active_color_responsive\":\"#54595F\",\"st_mobile_menu_object_fit_responsive_tablet\":\"cover\",\"st_mobile_menu_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_hamburger_menu_close_background_hover_background_background\":\"classic\",\"sg_menu_alignment_responsive\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_nav_menu\"}],\"isInner\":true},{\"id\":\"5ef5f227\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"234dd6d2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"align\":\"right\",\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=558fe58\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"hover_animation\":\"float\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1396,242,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1397,242,'_elementor_css','a:6:{s:4:\"time\";i:1721835926;s:5:\"fonts\";a:1:{i:0;s:5:\"Inter\";}s:5:\"icons\";a:4:{i:0;s:8:\"jkiticon\";i:3;s:9:\"fa-brands\";i:7;s:8:\"fa-solid\";i:9;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1398,243,'_wp_page_template','default'),(1399,243,'_elementor_edit_mode','builder'),(1400,243,'_elementor_template_type','wp-post'),(1401,243,'_elementor_version','3.23.2'),(1402,243,'_elementor_data','[{\"id\":\"1ed2d9f1\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":3,\"blur\":15,\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.06)\"},\"background_background\":\"classic\",\"z_index\":1,\"jet_sticky_section_sticky\":\"yes\",\"jet_sticky_section_sticky_z_index\":\"10\",\"jet_sticky_section_sticky_background_background\":\"classic\",\"jet_sticky_section_sticky_background_color\":\"#FFFFFF\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"z_index_tablet\":4,\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=f01b239\"}},\"elements\":[{\"id\":\"5a58714b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80.3490000000000037516656448133289813995361328125,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":20,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"18bb12d6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-map-marker1-light\",\"library\":\"jkiticon\"},\"title_text\":\"\",\"description_text\":\"123 Wall St\\nMiami, FL 12345\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"none\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#EAEAEA\",\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\",\"description_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"secondary_color\":\"\",\"title_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"view\":\"framed\",\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#3F5A29\",\"title_color\":\"#00160E\",\"description_color\":\"#00160E\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"secondary_color\":\"#FFFFFF00\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Heebo\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"294dea9a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-phone-call-line\",\"library\":\"jkiticon\"},\"title_text\":\"\",\"description_text\":\"+1 505 555 5555\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\",\"description_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"secondary_color\":\"\",\"title_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"view\":\"framed\",\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"tel:+1 505 555 5555\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"primary_color\":\"#3F5A29\",\"secondary_color\":\"#FFFFFF00\",\"title_color\":\"#00160E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"description_color\":\"#00160E\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Heebo\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_border_border\":\"none\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#EAEAEA\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"5e047152\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":19.650999999999999801048033987171947956085205078125,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":30,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":80},\"elements\":[{\"id\":\"976c2f8\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"jki jki-facebook-f\",\"library\":\"jkiticon\"},\"_id\":\"0fb8cc7\"},{\"social_icon\":{\"value\":\"fab fa-x-twitter\",\"library\":\"fa-brands\"},\"_id\":\"4be5bc7\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"147010a\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"df2ad14\"}],\"shape\":\"circle\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"hover_animation\":\"shrink\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=secondary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_secondary_color\":\"globals\\/colors?id=accent\",\"hover_primary_color\":\"globals\\/colors?id=accent\"},\"align_tablet\":\"right\",\"hover_primary_color\":\"#006943\",\"hover_secondary_color\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65d61e79\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"z_index\":1,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":3,\"blur\":15,\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.06)\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"z_index_tablet\":4},\"elements\":[{\"id\":\"49c5f53f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"z_index_tablet\":5},\"elements\":[{\"id\":\"7fd427a5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"a5ad795\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[{\"id\":\"4b6500b7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":219,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-2.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2eb94bb5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.6580000000000012505552149377763271331787109375,\"align\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":70,\"hide_mobile\":\"hidden-phone\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"14c9c516\",\"elType\":\"widget\",\"settings\":{\"sg_menu_choose\":\"menu\",\"sg_mobile_menu_logo\":{\"id\":107,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_mobile_menu_logo_size_imagesize_size\":\"full\",\"sg_mobile_menu_icon\":{\"value\":\"jki jki-bars-solid\",\"library\":\"jkiticon\"},\"st_menu_wrapper_height_responsive\":{\"unit\":\"px\",\"size\":74,\"sizes\":[]},\"st_menu_wrapper_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"},\"st_submenu_item_indicator_margin_responsive\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_submenu_panel_padding_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_panel_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_background_background_background\":\"classic\",\"st_submenu_panel_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_position_responsive_tablet\":\"left\",\"st_hamburger_menu_icon_background_background_background\":\"classic\",\"st_hamburger_menu_icon_background_background_color\":\"#FFFFFF00\",\"st_hamburger_menu_icon_border_border_border\":\"solid\",\"st_hamburger_menu_icon_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_hamburger_menu_close_background_background_background\":\"classic\",\"st_hamburger_menu_close_border_border_border\":\"solid\",\"st_hamburger_menu_close_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"st_menu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_menu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_color_responsive\":\"\",\"st_submenu_panel_background_background_color\":\"\",\"st_submenu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_submenu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_wrapper_mobile_color_tablet_responsive_tablet\":\"\",\"st_menu_item_text_normal_color_responsive_tablet\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_item_text_active_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_submenu_item_indicator_color_responsive_tablet\":\"\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_icon_color_hover_responsive_tablet\":\"\",\"st_hamburger_menu_close_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_close_color_hover_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_wrapper_background_background_color\":\"\",\"st_hamburger_menu_close_background_background_color\":\"globals\\/colors?id=secondary\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_border_border_color\":\"\",\"st_hamburger_menu_close_background_hover_background_color\":\"globals\\/colors?id=accent\"},\"st_submenu_panel_box_shadow_box_shadow_box_shadow_type\":\"yes\",\"st_submenu_panel_box_shadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_submenu_item_indicator_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_submenu_item_indicator_border_border_border\":\"solid\",\"st_submenu_item_indicator_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_submenu_panel_background_background_color\":\"#FFFFFF\",\"st_hamburger_menu_icon_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_icon_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_close_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_hamburger_menu_close_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_hamburger_menu_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_menu_item_text_normal_color_responsive_tablet\":\"#6EC1E4\",\"st_menu_item_text_hover_color_responsive_tablet\":\"#54595F\",\"st_menu_item_text_active_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_close_background_background_color\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"#54595F\",\"st_hamburger_menu_position_responsive_mobile\":\"left\",\"st_hamburger_menu_close_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_hamburger_menu_close_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"st_mobile_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"st_menu_item_text_hover_color_responsive\":\"#54595F\",\"st_menu_item_text_active_color_responsive\":\"#54595F\",\"st_mobile_menu_object_fit_responsive_tablet\":\"cover\",\"st_mobile_menu_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_hamburger_menu_close_background_hover_background_background\":\"classic\",\"sg_menu_alignment_responsive\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_nav_menu\"}],\"isInner\":true},{\"id\":\"5ef5f227\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"234dd6d2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"align\":\"right\",\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=558fe58\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"hover_animation\":\"float\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1403,243,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1404,243,'_elementor_css','a:6:{s:4:\"time\";i:1721835926;s:5:\"fonts\";a:1:{i:0;s:5:\"Inter\";}s:5:\"icons\";a:4:{i:0;s:8:\"jkiticon\";i:3;s:9:\"fa-brands\";i:7;s:8:\"fa-solid\";i:9;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1406,244,'_wp_page_template','default'),(1407,244,'_elementor_edit_mode','builder'),(1408,244,'_elementor_template_type','wp-post'),(1409,244,'_elementor_version','3.23.2'),(1410,244,'_elementor_data','[{\"id\":\"25324c9a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#00160E\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_overlay_image\":{\"id\":\"51\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/green-lawn-on-ground-PT9KCVE.jpg\"}},\"elements\":[{\"id\":\"2ed3ced5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"cf27f42\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"gap\":\"no\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"36e45d2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":\"33.596\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"498deddc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":115,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-02.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"529be226\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod \",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=e8dc402\",\"typography_typography\":\"globals\\/typography?id=text\"},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6dfa1147\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"123 Wall St Miami, FL 12345\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"8cfc1eb\"},{\"text\":\"email@email.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"01dad71\",\"link\":{\"url\":\"mailto:email@email.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+1 505 555 5555\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"e0e44de\",\"link\":{\"url\":\"tel:+1 505 555 5555\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"text_color\":\"globals\\/colors?id=06a34e7\",\"icon_typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":\"1\"},{\"id\":\"4dc3ac3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":\"17.193\",\"_inline_size_mobile\":\"100\",\"_inline_size_tablet\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7772d55b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Other Pages\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=8966ad4\"},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41eea4c7\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Home\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8e5ccb4\"},{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"_id\":\"b2b06d7\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2a5846b\"},{\"text\":\"Contact\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcbb08b\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=accent\",\"text_color\":\"\",\"icon_color\":\"globals\\/colors?id=accent\",\"icon_typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":\"1\"},{\"id\":\"35cfcdfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":\"14.211\",\"_inline_size_mobile\":\"100\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"13522926\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick Links\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=8966ad4\"},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bc61709\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8e5ccb4\"},{\"text\":\"Term Of Service\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"_id\":\"b2b06d7\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"FAQ\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"76de45a\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=accent\",\"text_color\":\"\",\"icon_color\":\"globals\\/colors?id=accent\",\"icon_typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":\"1\"},{\"id\":\"3e19ab1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":\"35\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"2abe676b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=8966ad4\"},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f25bdf9\",\"elType\":\"widget\",\"settings\":{\"sg_form_email_placeholder\":\"Your Email Address\",\"sg_form_email_icon_enable\":\"\",\"sg_form_button_text\":\"Send\",\"sg_form_button_icon_enable\":\"\",\"sg_form_success_message\":\"Successfully listed this email\",\"st_input_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_input_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"20\",\"bottom\":\"16\",\"left\":\"20\",\"isLinked\":false},\"st_input_border_border_border\":\"solid\",\"st_input_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_input_margin_right_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_input_placeholder_color_responsive\":\"#B5B8C4\",\"st_button_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"10\",\"bottom\":\"21\",\"left\":\"10\",\"isLinked\":false},\"st_button_width_responsive\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_input_placeholder_color_responsive\":\"\",\"st_input_placeholder_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_input_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_input_color_responsive\":\"globals\\/colors?id=primary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"st_input_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_input_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_input_width_responsive_tablet\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"st_button_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_button_width_responsive_tablet\":{\"unit\":\"px\",\"size\":105,\"sizes\":[]},\"st_button_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"30\",\"bottom\":\"19\",\"left\":\"30\",\"isLinked\":false},\"st_button_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_width_responsive_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_input_width_responsive\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"st_input_width_responsive_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"st_button_hover_background_background_background\":\"classic\",\"st_input_background_background_background\":\"classic\",\"st_input_background_background_color\":\"#FFFFFF\",\"st_button_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_input_color_responsive\":\"#0B1B69\",\"st_button_normal_color_responsive\":\"#0B1B69\",\"st_button_normal_background_background_color\":\"#FFD027\"},\"elements\":[],\"widgetType\":\"jkit_mailchimp\"},{\"id\":\"2f02530a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Get the latest news & updates\\n\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"text_color\":\"globals\\/colors?id=e8dc402\",\"typography_typography\":\"globals\\/typography?id=text\"},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2579224c\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"jki jki-facebook-f\",\"library\":\"jkiticon\"},\"_id\":\"0fb8cc7\"},{\"social_icon\":{\"value\":\"fab fa-x-twitter\",\"library\":\"fa-brands\"},\"_id\":\"4be5bc7\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"147010a\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"df2ad14\"}],\"shape\":\"circle\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"hover_animation\":\"shrink\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=secondary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_secondary_color\":\"globals\\/colors?id=accent\",\"hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"4e4c8b50\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text\":\"Divider\",\"color\":\"#A0AABA2B\",\"gap\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5f48f734\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"#C2C2C2\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"gap\":\"no\"},\"elements\":[{\"id\":\"fe8e002\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"63e6eb20\",\"elType\":\"widget\",\"settings\":{\"editor\":\"

\\u00a9 2024 Prestige Luxury Cleanings LLC. All rights reserved.<\\/p>\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f882794\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"},{\"id\":\"427e430a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"42937d5b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"

Design and development by Designs Funnel.<\\/p>\",\"align\":\"right\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f882794\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(1411,244,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1412,244,'_elementor_css','a:6:{s:4:\"time\";i:1721835090;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:3:{i:0;s:8:\"fa-solid\";i:10;s:8:\"jkiticon\";i:11;s:9:\"fa-brands\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1413,245,'_wp_page_template','default'),(1414,245,'_elementor_edit_mode','builder'),(1415,245,'_elementor_template_type','wp-post'),(1416,245,'_elementor_version','3.23.2'),(1417,245,'_elementor_data','[{\"id\":\"25324c9a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#00160E\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_overlay_image\":{\"id\":\"51\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/green-lawn-on-ground-PT9KCVE.jpg\"}},\"elements\":[{\"id\":\"2ed3ced5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"cf27f42\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"gap\":\"no\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"36e45d2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":\"33.596\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"498deddc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":115,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-02.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"529be226\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod \",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=e8dc402\",\"typography_typography\":\"globals\\/typography?id=text\"},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6dfa1147\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"123 Wall St Miami, FL 12345\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"8cfc1eb\"},{\"text\":\"email@email.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"01dad71\",\"link\":{\"url\":\"mailto:email@email.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+1 505 555 5555\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"e0e44de\",\"link\":{\"url\":\"tel:+1 505 555 5555\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"text_color\":\"globals\\/colors?id=06a34e7\",\"icon_typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":\"1\"},{\"id\":\"4dc3ac3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":\"17.193\",\"_inline_size_mobile\":\"100\",\"_inline_size_tablet\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7772d55b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Other Pages\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=8966ad4\"},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41eea4c7\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Home\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8e5ccb4\"},{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"_id\":\"b2b06d7\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2a5846b\"},{\"text\":\"Contact\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcbb08b\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=accent\",\"text_color\":\"\",\"icon_color\":\"globals\\/colors?id=accent\",\"icon_typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":\"1\"},{\"id\":\"35cfcdfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":\"14.211\",\"_inline_size_mobile\":\"100\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"13522926\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick Links\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=8966ad4\"},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bc61709\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8e5ccb4\"},{\"text\":\"Term Of Service\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"_id\":\"b2b06d7\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"FAQ\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"76de45a\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=accent\",\"text_color\":\"\",\"icon_color\":\"globals\\/colors?id=accent\",\"icon_typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":\"1\"},{\"id\":\"3e19ab1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":\"35\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"2abe676b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=8966ad4\"},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f25bdf9\",\"elType\":\"widget\",\"settings\":{\"sg_form_email_placeholder\":\"Your Email Address\",\"sg_form_email_icon_enable\":\"\",\"sg_form_button_text\":\"Send\",\"sg_form_button_icon_enable\":\"\",\"sg_form_success_message\":\"Successfully listed this email\",\"st_input_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_input_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"20\",\"bottom\":\"16\",\"left\":\"20\",\"isLinked\":false},\"st_input_border_border_border\":\"solid\",\"st_input_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_input_margin_right_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_input_placeholder_color_responsive\":\"#B5B8C4\",\"st_button_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"10\",\"bottom\":\"21\",\"left\":\"10\",\"isLinked\":false},\"st_button_width_responsive\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_input_placeholder_color_responsive\":\"\",\"st_input_placeholder_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_input_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_input_color_responsive\":\"globals\\/colors?id=primary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"st_input_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_input_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_input_width_responsive_tablet\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"st_button_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_button_width_responsive_tablet\":{\"unit\":\"px\",\"size\":105,\"sizes\":[]},\"st_button_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"30\",\"bottom\":\"19\",\"left\":\"30\",\"isLinked\":false},\"st_button_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_width_responsive_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_input_width_responsive\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"st_input_width_responsive_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"st_button_hover_background_background_background\":\"classic\",\"st_input_background_background_background\":\"classic\",\"st_input_background_background_color\":\"#FFFFFF\",\"st_button_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_input_color_responsive\":\"#0B1B69\",\"st_button_normal_color_responsive\":\"#0B1B69\",\"st_button_normal_background_background_color\":\"#FFD027\"},\"elements\":[],\"widgetType\":\"jkit_mailchimp\"},{\"id\":\"2f02530a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Get the latest news & updates\\n\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"text_color\":\"globals\\/colors?id=e8dc402\",\"typography_typography\":\"globals\\/typography?id=text\"},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2579224c\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"jki jki-facebook-f\",\"library\":\"jkiticon\"},\"_id\":\"0fb8cc7\"},{\"social_icon\":{\"value\":\"fab fa-x-twitter\",\"library\":\"fa-brands\"},\"_id\":\"4be5bc7\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"147010a\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"df2ad14\"}],\"shape\":\"circle\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"hover_animation\":\"shrink\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=secondary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_secondary_color\":\"globals\\/colors?id=accent\",\"hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"4e4c8b50\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text\":\"Divider\",\"color\":\"#A0AABA2B\",\"gap\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5f48f734\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"#C2C2C2\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"gap\":\"no\"},\"elements\":[{\"id\":\"fe8e002\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"63e6eb20\",\"elType\":\"widget\",\"settings\":{\"editor\":\"

\\u00a9 2024 Prestige Luxury Cleanings LLC. All rights reserved.<\\/p>\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f882794\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"},{\"id\":\"427e430a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"42937d5b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"

Design and development by Designs Funnel.<\\/p>\",\"align\":\"right\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f882794\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(1418,245,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1419,245,'_elementor_css','a:6:{s:4:\"time\";i:1721835090;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:3:{i:0;s:8:\"fa-solid\";i:10;s:8:\"jkiticon\";i:11;s:9:\"fa-brands\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1420,246,'_wp_page_template','default'),(1421,246,'_elementor_edit_mode','builder'),(1422,246,'_elementor_template_type','wp-post'),(1423,246,'_elementor_version','3.23.2'),(1424,246,'_elementor_data','[{\"id\":\"25324c9a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#00160E\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_overlay_image\":{\"id\":\"51\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/green-lawn-on-ground-PT9KCVE.jpg\"}},\"elements\":[{\"id\":\"2ed3ced5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"cf27f42\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"gap\":\"no\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"36e45d2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":\"33.596\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"498deddc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":115,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-02.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"529be226\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod \",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=e8dc402\",\"typography_typography\":\"globals\\/typography?id=text\"},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6dfa1147\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"123 Wall St Miami, FL 12345\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"8cfc1eb\"},{\"text\":\"email@email.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"01dad71\",\"link\":{\"url\":\"mailto:email@email.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+1 505 555 5555\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"e0e44de\",\"link\":{\"url\":\"tel:+1 505 555 5555\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"text_color\":\"globals\\/colors?id=06a34e7\",\"icon_typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":\"1\"},{\"id\":\"4dc3ac3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":\"17.193\",\"_inline_size_mobile\":\"100\",\"_inline_size_tablet\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"top\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7772d55b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Other Pages\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=8966ad4\"},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41eea4c7\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Home\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8e5ccb4\"},{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"_id\":\"b2b06d7\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2a5846b\"},{\"text\":\"Contact\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcbb08b\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=accent\",\"text_color\":\"\",\"icon_color\":\"globals\\/colors?id=accent\",\"icon_typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":\"1\"},{\"id\":\"35cfcdfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":\"14.211\",\"_inline_size_mobile\":\"100\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"content_position\":\"top\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"13522926\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick Links\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=8966ad4\"},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bc61709\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8e5ccb4\"},{\"text\":\"Term Of Service\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"_id\":\"b2b06d7\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"FAQ\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"76de45a\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=accent\",\"text_color\":\"\",\"icon_color\":\"globals\\/colors?id=accent\",\"icon_typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":\"1\"},{\"id\":\"3e19ab1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":\"35\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2abe676b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=8966ad4\"},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f25bdf9\",\"elType\":\"widget\",\"settings\":{\"sg_form_email_placeholder\":\"Your Email Address\",\"sg_form_email_icon_enable\":\"\",\"sg_form_button_text\":\"Send\",\"sg_form_button_icon_enable\":\"\",\"sg_form_success_message\":\"Successfully listed this email\",\"st_input_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_input_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"20\",\"bottom\":\"16\",\"left\":\"20\",\"isLinked\":false},\"st_input_border_border_border\":\"solid\",\"st_input_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_input_margin_right_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_input_placeholder_color_responsive\":\"#B5B8C4\",\"st_button_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"10\",\"bottom\":\"21\",\"left\":\"10\",\"isLinked\":false},\"st_button_width_responsive\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_input_placeholder_color_responsive\":\"\",\"st_input_placeholder_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_input_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_input_color_responsive\":\"globals\\/colors?id=primary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"st_input_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_input_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_input_width_responsive_tablet\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"st_button_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_button_width_responsive_tablet\":{\"unit\":\"px\",\"size\":105,\"sizes\":[]},\"st_button_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"30\",\"bottom\":\"19\",\"left\":\"30\",\"isLinked\":false},\"st_button_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_width_responsive_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_input_width_responsive\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"st_input_width_responsive_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"st_button_hover_background_background_background\":\"classic\",\"st_input_background_background_background\":\"classic\",\"st_input_background_background_color\":\"#FFFFFF\",\"st_button_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_input_color_responsive\":\"#0B1B69\",\"st_button_normal_color_responsive\":\"#0B1B69\",\"st_button_normal_background_background_color\":\"#FFD027\"},\"elements\":[],\"widgetType\":\"jkit_mailchimp\"},{\"id\":\"2f02530a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Get the latest news & updates\\n\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"text_color\":\"globals\\/colors?id=e8dc402\",\"typography_typography\":\"globals\\/typography?id=text\"},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2579224c\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"jki jki-facebook-f\",\"library\":\"jkiticon\"},\"_id\":\"0fb8cc7\"},{\"social_icon\":{\"value\":\"fab fa-x-twitter\",\"library\":\"fa-brands\"},\"_id\":\"4be5bc7\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"147010a\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"df2ad14\"}],\"shape\":\"circle\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"hover_animation\":\"shrink\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=secondary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_secondary_color\":\"globals\\/colors?id=accent\",\"hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"4e4c8b50\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text\":\"Divider\",\"color\":\"#A0AABA2B\",\"gap\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5f48f734\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"#C2C2C2\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"gap\":\"no\"},\"elements\":[{\"id\":\"fe8e002\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"63e6eb20\",\"elType\":\"widget\",\"settings\":{\"editor\":\"

\\u00a9 2024 Prestige Luxury Cleanings LLC. All rights reserved.<\\/p>\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f882794\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"},{\"id\":\"427e430a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"42937d5b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"

Design and development by DesignsFunnel<\\/a>.<\\/p>\",\"align\":\"right\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f882794\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(1425,246,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1426,246,'_elementor_css','a:6:{s:4:\"time\";i:1721835090;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:3:{i:0;s:8:\"fa-solid\";i:10;s:8:\"jkiticon\";i:11;s:9:\"fa-brands\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1428,247,'_wp_page_template','default'),(1429,247,'_elementor_edit_mode','builder'),(1430,247,'_elementor_template_type','wp-post'),(1431,247,'_elementor_version','3.23.2'),(1432,247,'_elementor_data','[{\"id\":\"25324c9a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#00160E\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_overlay_image\":{\"id\":\"51\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/green-lawn-on-ground-PT9KCVE.jpg\"}},\"elements\":[{\"id\":\"2ed3ced5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"cf27f42\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"gap\":\"no\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"36e45d2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":\"33.596\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"498deddc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":115,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-02.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"529be226\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod \",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=e8dc402\",\"typography_typography\":\"globals\\/typography?id=text\"},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6dfa1147\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"123 Wall St Miami, FL 12345\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"8cfc1eb\"},{\"text\":\"email@email.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"01dad71\",\"link\":{\"url\":\"mailto:email@email.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+1 505 555 5555\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"e0e44de\",\"link\":{\"url\":\"tel:+1 505 555 5555\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"text_color\":\"globals\\/colors?id=06a34e7\",\"icon_typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":\"1\"},{\"id\":\"4dc3ac3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":\"17.193\",\"_inline_size_mobile\":\"100\",\"_inline_size_tablet\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"top\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7772d55b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Other Pages\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=8966ad4\"},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41eea4c7\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Home\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8e5ccb4\"},{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"_id\":\"b2b06d7\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2a5846b\"},{\"text\":\"Contact\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcbb08b\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=accent\",\"text_color\":\"\",\"icon_color\":\"globals\\/colors?id=accent\",\"icon_typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":\"1\"},{\"id\":\"35cfcdfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":\"14.211\",\"_inline_size_mobile\":\"100\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"content_position\":\"top\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"13522926\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick Links\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=8966ad4\"},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bc61709\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8e5ccb4\"},{\"text\":\"Term Of Service\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"_id\":\"b2b06d7\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"FAQ\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"76de45a\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=accent\",\"text_color\":\"\",\"icon_color\":\"globals\\/colors?id=accent\",\"icon_typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":\"1\"},{\"id\":\"3e19ab1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":\"35\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2abe676b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=8966ad4\"},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f25bdf9\",\"elType\":\"widget\",\"settings\":{\"sg_form_email_placeholder\":\"Your Email Address\",\"sg_form_email_icon_enable\":\"\",\"sg_form_button_text\":\"Send\",\"sg_form_button_icon_enable\":\"\",\"sg_form_success_message\":\"Successfully listed this email\",\"st_input_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_input_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"20\",\"bottom\":\"16\",\"left\":\"20\",\"isLinked\":false},\"st_input_border_border_border\":\"solid\",\"st_input_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_input_margin_right_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_input_placeholder_color_responsive\":\"#B5B8C4\",\"st_button_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"10\",\"bottom\":\"21\",\"left\":\"10\",\"isLinked\":false},\"st_button_width_responsive\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_input_placeholder_color_responsive\":\"\",\"st_input_placeholder_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_input_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_input_color_responsive\":\"globals\\/colors?id=primary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"st_input_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_input_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_input_width_responsive_tablet\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"st_button_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_button_width_responsive_tablet\":{\"unit\":\"px\",\"size\":105,\"sizes\":[]},\"st_button_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"30\",\"bottom\":\"19\",\"left\":\"30\",\"isLinked\":false},\"st_button_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_width_responsive_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_input_width_responsive\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"st_input_width_responsive_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"st_button_hover_background_background_background\":\"classic\",\"st_input_background_background_background\":\"classic\",\"st_input_background_background_color\":\"#FFFFFF\",\"st_button_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_input_color_responsive\":\"#0B1B69\",\"st_button_normal_color_responsive\":\"#0B1B69\",\"st_button_normal_background_background_color\":\"#FFD027\"},\"elements\":[],\"widgetType\":\"jkit_mailchimp\"},{\"id\":\"2f02530a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Get the latest news & updates\\n\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"text_color\":\"globals\\/colors?id=e8dc402\",\"typography_typography\":\"globals\\/typography?id=text\"},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2579224c\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"jki jki-facebook-f\",\"library\":\"jkiticon\"},\"_id\":\"0fb8cc7\"},{\"social_icon\":{\"value\":\"fab fa-x-twitter\",\"library\":\"fa-brands\"},\"_id\":\"4be5bc7\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"147010a\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"df2ad14\"}],\"shape\":\"circle\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"hover_animation\":\"shrink\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=secondary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_secondary_color\":\"globals\\/colors?id=accent\",\"hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"4e4c8b50\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text\":\"Divider\",\"color\":\"#A0AABA2B\",\"gap\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5f48f734\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"#C2C2C2\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"gap\":\"no\"},\"elements\":[{\"id\":\"fe8e002\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"63e6eb20\",\"elType\":\"widget\",\"settings\":{\"editor\":\"

\\u00a9 2024 Prestige Luxury Cleanings LLC. All rights reserved.<\\/p>\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f882794\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"},{\"id\":\"427e430a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"42937d5b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"

Design and development by DesignsFunnel<\\/a>.<\\/p>\",\"align\":\"right\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f882794\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(1433,247,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1434,247,'_elementor_css','a:6:{s:4:\"time\";i:1721836937;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:3:{i:0;s:8:\"fa-solid\";i:10;s:8:\"jkiticon\";i:11;s:9:\"fa-brands\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1435,248,'_wp_page_template','default'),(1436,248,'_elementor_edit_mode','builder'),(1437,248,'_elementor_template_type','wp-post'),(1438,248,'_elementor_version','3.23.2'),(1439,248,'_elementor_data','[{\"id\":\"25324c9a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#00160E\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_overlay_image\":{\"id\":\"51\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/green-lawn-on-ground-PT9KCVE.jpg\"}},\"elements\":[{\"id\":\"2ed3ced5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"cf27f42\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"gap\":\"no\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"36e45d2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":\"33.596\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"498deddc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":115,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-02.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"529be226\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod \",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=e8dc402\",\"typography_typography\":\"globals\\/typography?id=text\"},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6dfa1147\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"123 Wall St Miami, FL 12345\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"8cfc1eb\"},{\"text\":\"email@email.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"01dad71\",\"link\":{\"url\":\"mailto:email@email.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+1 505 555 5555\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"e0e44de\",\"link\":{\"url\":\"tel:+1 505 555 5555\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"text_color\":\"globals\\/colors?id=06a34e7\",\"icon_typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":\"1\"},{\"id\":\"4dc3ac3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":\"17.193\",\"_inline_size_mobile\":\"100\",\"_inline_size_tablet\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"top\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7772d55b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Other Pages\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=8966ad4\"},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41eea4c7\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Home\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8e5ccb4\"},{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"_id\":\"b2b06d7\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2a5846b\"},{\"text\":\"Contact\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcbb08b\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=accent\",\"text_color\":\"\",\"icon_color\":\"globals\\/colors?id=accent\",\"icon_typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":\"1\"},{\"id\":\"35cfcdfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":\"14.211\",\"_inline_size_mobile\":\"100\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"content_position\":\"top\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"13522926\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick Links\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=8966ad4\"},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bc61709\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8e5ccb4\"},{\"text\":\"Term Of Service\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"_id\":\"b2b06d7\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"FAQ\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"76de45a\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=accent\",\"text_color\":\"\",\"icon_color\":\"globals\\/colors?id=accent\",\"icon_typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":\"1\"},{\"id\":\"3e19ab1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":\"35\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2abe676b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=8966ad4\"},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f25bdf9\",\"elType\":\"widget\",\"settings\":{\"sg_form_email_placeholder\":\"Your Email Address\",\"sg_form_email_icon_enable\":\"\",\"sg_form_button_text\":\"Send\",\"sg_form_button_icon_enable\":\"\",\"sg_form_success_message\":\"Successfully listed this email\",\"st_input_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_input_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"20\",\"bottom\":\"16\",\"left\":\"20\",\"isLinked\":false},\"st_input_border_border_border\":\"solid\",\"st_input_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_input_margin_right_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_input_placeholder_color_responsive\":\"#B5B8C4\",\"st_button_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"10\",\"bottom\":\"21\",\"left\":\"10\",\"isLinked\":false},\"st_button_width_responsive\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_input_placeholder_color_responsive\":\"\",\"st_input_placeholder_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_input_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_input_color_responsive\":\"globals\\/colors?id=primary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"st_input_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_input_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_input_width_responsive_tablet\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"st_button_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_button_width_responsive_tablet\":{\"unit\":\"px\",\"size\":105,\"sizes\":[]},\"st_button_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"30\",\"bottom\":\"19\",\"left\":\"30\",\"isLinked\":false},\"st_button_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_width_responsive_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_input_width_responsive\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"st_input_width_responsive_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"st_button_hover_background_background_background\":\"classic\",\"st_input_background_background_background\":\"classic\",\"st_input_background_background_color\":\"#FFFFFF\",\"st_button_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_input_color_responsive\":\"#0B1B69\",\"st_button_normal_color_responsive\":\"#0B1B69\",\"st_button_normal_background_background_color\":\"#FFD027\"},\"elements\":[],\"widgetType\":\"jkit_mailchimp\"},{\"id\":\"2f02530a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Get the latest news & updates\\n\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"text_color\":\"globals\\/colors?id=e8dc402\",\"typography_typography\":\"globals\\/typography?id=text\"},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2579224c\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"jki jki-facebook-f\",\"library\":\"jkiticon\"},\"_id\":\"0fb8cc7\"},{\"social_icon\":{\"value\":\"fab fa-x-twitter\",\"library\":\"fa-brands\"},\"_id\":\"4be5bc7\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"147010a\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"df2ad14\"}],\"shape\":\"circle\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"hover_animation\":\"shrink\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=secondary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_secondary_color\":\"globals\\/colors?id=accent\",\"hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"4e4c8b50\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text\":\"Divider\",\"color\":\"#A0AABA2B\",\"gap\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5f48f734\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"#C2C2C2\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"gap\":\"no\"},\"elements\":[{\"id\":\"fe8e002\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"63e6eb20\",\"elType\":\"widget\",\"settings\":{\"editor\":\"

\\u00a9 2024 Prestige Luxury Cleanings LLC. All rights reserved.<\\/p>\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f882794\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"},{\"id\":\"427e430a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"42937d5b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"

Design and development by DesignsFunnel<\\/a>.<\\/p>\",\"align\":\"right\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f882794\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(1440,248,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1441,248,'_elementor_css','a:6:{s:4:\"time\";i:1721836937;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:3:{i:0;s:8:\"fa-solid\";i:10;s:8:\"jkiticon\";i:11;s:9:\"fa-brands\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1442,249,'_wp_page_template','default'),(1443,249,'_elementor_edit_mode','builder'),(1444,249,'_elementor_template_type','wp-post'),(1445,249,'_elementor_version','3.23.2'),(1446,249,'_elementor_data','[{\"id\":\"25324c9a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#00160E\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_overlay_image\":{\"id\":\"51\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/green-lawn-on-ground-PT9KCVE.jpg\"}},\"elements\":[{\"id\":\"2ed3ced5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"cf27f42\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"gap\":\"no\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"36e45d2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":\"33.596\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"498deddc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":115,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-02.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"image_size\":\"full\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"529be226\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod \",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=e8dc402\",\"typography_typography\":\"globals\\/typography?id=text\"},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6dfa1147\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"123 Wall St Miami, FL 12345\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"8cfc1eb\"},{\"text\":\"email@email.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"01dad71\",\"link\":{\"url\":\"mailto:email@email.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"+1 505 555 5555\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"e0e44de\",\"link\":{\"url\":\"tel:+1 505 555 5555\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"text_color\":\"globals\\/colors?id=06a34e7\",\"icon_typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":\"1\"},{\"id\":\"4dc3ac3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":\"17.193\",\"_inline_size_mobile\":\"100\",\"_inline_size_tablet\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"top\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7772d55b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Other Pages\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=8966ad4\"},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41eea4c7\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Home\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8e5ccb4\"},{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"_id\":\"b2b06d7\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2a5846b\"},{\"text\":\"Contact\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcbb08b\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=accent\",\"text_color\":\"\",\"icon_color\":\"globals\\/colors?id=accent\",\"icon_typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":\"1\"},{\"id\":\"35cfcdfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":\"14.211\",\"_inline_size_mobile\":\"100\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"content_position\":\"top\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"13522926\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick Links\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=8966ad4\"},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bc61709\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8e5ccb4\"},{\"text\":\"Term Of Service\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"_id\":\"b2b06d7\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"FAQ\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"76de45a\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=accent\",\"text_color\":\"\",\"icon_color\":\"globals\\/colors?id=accent\",\"icon_typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":\"1\"},{\"id\":\"3e19ab1a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":\"35\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2abe676b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=8966ad4\"},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f25bdf9\",\"elType\":\"widget\",\"settings\":{\"sg_form_email_placeholder\":\"Your Email Address\",\"sg_form_email_icon_enable\":\"\",\"sg_form_button_text\":\"Send\",\"sg_form_button_icon_enable\":\"\",\"sg_form_success_message\":\"Successfully listed this email\",\"st_input_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_input_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"20\",\"bottom\":\"16\",\"left\":\"20\",\"isLinked\":false},\"st_input_border_border_border\":\"solid\",\"st_input_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_input_margin_right_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_input_placeholder_color_responsive\":\"#B5B8C4\",\"st_button_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"10\",\"bottom\":\"21\",\"left\":\"10\",\"isLinked\":false},\"st_button_width_responsive\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_input_placeholder_color_responsive\":\"\",\"st_input_placeholder_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_input_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_input_color_responsive\":\"globals\\/colors?id=primary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"st_input_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_input_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_input_width_responsive_tablet\":{\"unit\":\"%\",\"size\":67,\"sizes\":[]},\"st_button_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_button_width_responsive_tablet\":{\"unit\":\"px\",\"size\":105,\"sizes\":[]},\"st_button_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"30\",\"bottom\":\"19\",\"left\":\"30\",\"isLinked\":false},\"st_button_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_width_responsive_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_input_width_responsive\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"st_input_width_responsive_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"st_button_hover_background_background_background\":\"classic\",\"st_input_background_background_background\":\"classic\",\"st_input_background_background_color\":\"#FFFFFF\",\"st_button_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_input_color_responsive\":\"#0B1B69\",\"st_button_normal_color_responsive\":\"#0B1B69\",\"st_button_normal_background_background_color\":\"#FFD027\"},\"elements\":[],\"widgetType\":\"jkit_mailchimp\"},{\"id\":\"2f02530a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Get the latest news & updates\\n\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"text_color\":\"globals\\/colors?id=e8dc402\",\"typography_typography\":\"globals\\/typography?id=text\"},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2579224c\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"jki jki-facebook-f\",\"library\":\"jkiticon\"},\"_id\":\"0fb8cc7\"},{\"social_icon\":{\"value\":\"fab fa-x-twitter\",\"library\":\"fa-brands\"},\"_id\":\"4be5bc7\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"147010a\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"df2ad14\"}],\"shape\":\"circle\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"hover_animation\":\"shrink\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=secondary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_secondary_color\":\"globals\\/colors?id=accent\",\"hover_primary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"4e4c8b50\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text\":\"Divider\",\"color\":\"#A0AABA2B\",\"gap\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5f48f734\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"#C2C2C2\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"gap\":\"no\"},\"elements\":[{\"id\":\"fe8e002\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"63e6eb20\",\"elType\":\"widget\",\"settings\":{\"editor\":\"

\\u00a9 2024 Prestige Luxury Cleanings LLC. All rights reserved.<\\/p>\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f882794\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"},{\"id\":\"427e430a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"42937d5b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"

Design and development by DesignsFunnel<\\/a>.<\\/p>\",\"align\":\"right\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=f882794\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(1447,249,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1448,249,'_elementor_css','a:6:{s:4:\"time\";i:1721836937;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:3:{i:0;s:8:\"fa-solid\";i:10;s:8:\"jkiticon\";i:11;s:9:\"fa-brands\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1449,250,'_wp_page_template','default'),(1450,250,'_elementor_edit_mode','builder'),(1451,250,'_elementor_template_type','wp-post'),(1452,250,'_elementor_version','3.23.2'),(1453,250,'_elementor_data','[{\"id\":\"1ed2d9f1\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":3,\"blur\":15,\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.06)\"},\"background_background\":\"classic\",\"z_index\":1,\"jet_sticky_section_sticky\":\"yes\",\"jet_sticky_section_sticky_z_index\":\"10\",\"jet_sticky_section_sticky_background_background\":\"classic\",\"jet_sticky_section_sticky_background_color\":\"#FFFFFF\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"z_index_tablet\":4,\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=f01b239\"}},\"elements\":[{\"id\":\"5a58714b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80.3490000000000037516656448133289813995361328125,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":20,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"18bb12d6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-map-marker1-light\",\"library\":\"jkiticon\"},\"title_text\":\"\",\"description_text\":\"123 Wall St\\nMiami, FL 12345\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"none\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#EAEAEA\",\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\",\"description_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"secondary_color\":\"\",\"title_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"view\":\"framed\",\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#3F5A29\",\"title_color\":\"#00160E\",\"description_color\":\"#00160E\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"secondary_color\":\"#FFFFFF00\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Heebo\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"294dea9a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-phone-call-line\",\"library\":\"jkiticon\"},\"title_text\":\"\",\"description_text\":\"+1 505 555 5555\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\",\"description_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"secondary_color\":\"\",\"title_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"view\":\"framed\",\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"tel:+1 505 555 5555\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"primary_color\":\"#3F5A29\",\"secondary_color\":\"#FFFFFF00\",\"title_color\":\"#00160E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"description_color\":\"#00160E\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Heebo\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_border_border\":\"none\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#EAEAEA\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"5e047152\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":19.650999999999999801048033987171947956085205078125,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":30,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":80},\"elements\":[{\"id\":\"976c2f8\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"jki jki-facebook-f\",\"library\":\"jkiticon\"},\"_id\":\"0fb8cc7\"},{\"social_icon\":{\"value\":\"fab fa-x-twitter\",\"library\":\"fa-brands\"},\"_id\":\"4be5bc7\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"147010a\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"df2ad14\"}],\"shape\":\"circle\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"hover_animation\":\"shrink\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=secondary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_secondary_color\":\"globals\\/colors?id=accent\",\"hover_primary_color\":\"globals\\/colors?id=accent\"},\"align_tablet\":\"right\",\"hover_primary_color\":\"#006943\",\"hover_secondary_color\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65d61e79\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"z_index\":1,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":3,\"blur\":15,\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.06)\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"z_index_tablet\":4},\"elements\":[{\"id\":\"49c5f53f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"z_index_tablet\":5},\"elements\":[{\"id\":\"7fd427a5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"a5ad795\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[{\"id\":\"4b6500b7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":219,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-2.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2eb94bb5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.6580000000000012505552149377763271331787109375,\"align\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":70,\"hide_mobile\":\"hidden-phone\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"14c9c516\",\"elType\":\"widget\",\"settings\":{\"sg_menu_choose\":\"menu\",\"sg_mobile_menu_logo\":{\"id\":107,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_mobile_menu_logo_size_imagesize_size\":\"full\",\"sg_mobile_menu_icon\":{\"value\":\"jki jki-bars-solid\",\"library\":\"jkiticon\"},\"st_menu_wrapper_height_responsive\":{\"unit\":\"px\",\"size\":74,\"sizes\":[]},\"st_menu_wrapper_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"},\"st_submenu_item_indicator_margin_responsive\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_submenu_panel_padding_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_panel_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_background_background_background\":\"classic\",\"st_submenu_panel_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_position_responsive_tablet\":\"left\",\"st_hamburger_menu_icon_background_background_background\":\"classic\",\"st_hamburger_menu_icon_background_background_color\":\"#FFFFFF00\",\"st_hamburger_menu_icon_border_border_border\":\"solid\",\"st_hamburger_menu_icon_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_hamburger_menu_close_background_background_background\":\"classic\",\"st_hamburger_menu_close_border_border_border\":\"solid\",\"st_hamburger_menu_close_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"st_menu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_menu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_color_responsive\":\"\",\"st_submenu_panel_background_background_color\":\"\",\"st_submenu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_submenu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_wrapper_mobile_color_tablet_responsive_tablet\":\"\",\"st_menu_item_text_normal_color_responsive_tablet\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_item_text_active_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_submenu_item_indicator_color_responsive_tablet\":\"\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_icon_color_hover_responsive_tablet\":\"\",\"st_hamburger_menu_close_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_close_color_hover_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_wrapper_background_background_color\":\"\",\"st_hamburger_menu_close_background_background_color\":\"globals\\/colors?id=secondary\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_border_border_color\":\"\",\"st_hamburger_menu_close_background_hover_background_color\":\"globals\\/colors?id=accent\"},\"st_submenu_panel_box_shadow_box_shadow_box_shadow_type\":\"yes\",\"st_submenu_panel_box_shadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_submenu_item_indicator_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_submenu_item_indicator_border_border_border\":\"solid\",\"st_submenu_item_indicator_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_submenu_panel_background_background_color\":\"#FFFFFF\",\"st_hamburger_menu_icon_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_icon_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_close_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_hamburger_menu_close_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_hamburger_menu_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_menu_item_text_normal_color_responsive_tablet\":\"#6EC1E4\",\"st_menu_item_text_hover_color_responsive_tablet\":\"#54595F\",\"st_menu_item_text_active_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_close_background_background_color\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"#54595F\",\"st_hamburger_menu_position_responsive_mobile\":\"left\",\"st_hamburger_menu_close_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_hamburger_menu_close_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"st_mobile_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"st_menu_item_text_hover_color_responsive\":\"#54595F\",\"st_menu_item_text_active_color_responsive\":\"#54595F\",\"st_mobile_menu_object_fit_responsive_tablet\":\"cover\",\"st_mobile_menu_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_hamburger_menu_close_background_hover_background_background\":\"classic\",\"sg_menu_alignment_responsive\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_nav_menu\"}],\"isInner\":true},{\"id\":\"5ef5f227\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"234dd6d2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"align\":\"right\",\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=558fe58\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"hover_animation\":\"float\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1454,250,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1455,250,'_elementor_css','a:6:{s:4:\"time\";i:1721836588;s:5:\"fonts\";a:1:{i:0;s:5:\"Inter\";}s:5:\"icons\";a:4:{i:0;s:8:\"jkiticon\";i:3;s:9:\"fa-brands\";i:7;s:8:\"fa-solid\";i:9;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1456,251,'_wp_page_template','default'),(1457,251,'_elementor_edit_mode','builder'),(1458,251,'_elementor_template_type','wp-post'),(1459,251,'_elementor_version','3.23.2'),(1460,251,'_elementor_data','[{\"id\":\"1ed2d9f1\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":3,\"blur\":15,\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.06)\"},\"background_background\":\"classic\",\"z_index\":1,\"jet_sticky_section_sticky\":\"yes\",\"jet_sticky_section_sticky_z_index\":\"10\",\"jet_sticky_section_sticky_background_background\":\"classic\",\"jet_sticky_section_sticky_background_color\":\"#FFFFFF\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"z_index_tablet\":4,\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=f01b239\"}},\"elements\":[{\"id\":\"5a58714b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80.3490000000000037516656448133289813995361328125,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":20,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"18bb12d6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-map-marker1-light\",\"library\":\"jkiticon\"},\"title_text\":\"\",\"description_text\":\"123 Wall St\\nMiami, FL 12345\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"none\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#EAEAEA\",\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\",\"description_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"secondary_color\":\"\",\"title_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"view\":\"framed\",\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#3F5A29\",\"title_color\":\"#00160E\",\"description_color\":\"#00160E\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"secondary_color\":\"#FFFFFF00\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Heebo\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"294dea9a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-phone-call-line\",\"library\":\"jkiticon\"},\"title_text\":\"\",\"description_text\":\"+1 505 555 5555\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\",\"description_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"secondary_color\":\"\",\"title_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"view\":\"framed\",\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"tel:+1 505 555 5555\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"primary_color\":\"#3F5A29\",\"secondary_color\":\"#FFFFFF00\",\"title_color\":\"#00160E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"description_color\":\"#00160E\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Heebo\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_border_border\":\"none\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#EAEAEA\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"5e047152\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":19.650999999999999801048033987171947956085205078125,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":30,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":80},\"elements\":[{\"id\":\"976c2f8\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"jki jki-facebook-f\",\"library\":\"jkiticon\"},\"_id\":\"0fb8cc7\"},{\"social_icon\":{\"value\":\"fab fa-x-twitter\",\"library\":\"fa-brands\"},\"_id\":\"4be5bc7\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"147010a\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"df2ad14\"}],\"shape\":\"circle\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"hover_animation\":\"shrink\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=secondary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_secondary_color\":\"globals\\/colors?id=accent\",\"hover_primary_color\":\"globals\\/colors?id=accent\"},\"align_tablet\":\"right\",\"hover_primary_color\":\"#006943\",\"hover_secondary_color\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65d61e79\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"z_index\":1,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":3,\"blur\":15,\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.06)\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"z_index_tablet\":4},\"elements\":[{\"id\":\"49c5f53f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"z_index_tablet\":5},\"elements\":[{\"id\":\"7fd427a5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"a5ad795\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[{\"id\":\"4b6500b7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":219,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-2.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2eb94bb5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.6580000000000012505552149377763271331787109375,\"align\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":70,\"hide_mobile\":\"hidden-phone\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"14c9c516\",\"elType\":\"widget\",\"settings\":{\"sg_menu_choose\":\"menu\",\"sg_mobile_menu_logo\":{\"id\":107,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_mobile_menu_logo_size_imagesize_size\":\"full\",\"sg_mobile_menu_icon\":{\"value\":\"jki jki-bars-solid\",\"library\":\"jkiticon\"},\"st_menu_wrapper_height_responsive\":{\"unit\":\"px\",\"size\":74,\"sizes\":[]},\"st_menu_wrapper_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"},\"st_submenu_item_indicator_margin_responsive\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_submenu_panel_padding_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_panel_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_background_background_background\":\"classic\",\"st_submenu_panel_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_position_responsive_tablet\":\"left\",\"st_hamburger_menu_icon_background_background_background\":\"classic\",\"st_hamburger_menu_icon_background_background_color\":\"#FFFFFF00\",\"st_hamburger_menu_icon_border_border_border\":\"solid\",\"st_hamburger_menu_icon_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_hamburger_menu_close_background_background_background\":\"classic\",\"st_hamburger_menu_close_border_border_border\":\"solid\",\"st_hamburger_menu_close_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"st_menu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_menu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_color_responsive\":\"\",\"st_submenu_panel_background_background_color\":\"\",\"st_submenu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_submenu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_wrapper_mobile_color_tablet_responsive_tablet\":\"\",\"st_menu_item_text_normal_color_responsive_tablet\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_item_text_active_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_submenu_item_indicator_color_responsive_tablet\":\"\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_icon_color_hover_responsive_tablet\":\"\",\"st_hamburger_menu_close_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_close_color_hover_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_wrapper_background_background_color\":\"\",\"st_hamburger_menu_close_background_background_color\":\"globals\\/colors?id=secondary\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_border_border_color\":\"\",\"st_hamburger_menu_close_background_hover_background_color\":\"globals\\/colors?id=accent\"},\"st_submenu_panel_box_shadow_box_shadow_box_shadow_type\":\"yes\",\"st_submenu_panel_box_shadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_submenu_item_indicator_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_submenu_item_indicator_border_border_border\":\"solid\",\"st_submenu_item_indicator_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_submenu_panel_background_background_color\":\"#FFFFFF\",\"st_hamburger_menu_icon_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_icon_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_close_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_hamburger_menu_close_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_hamburger_menu_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_menu_item_text_normal_color_responsive_tablet\":\"#6EC1E4\",\"st_menu_item_text_hover_color_responsive_tablet\":\"#54595F\",\"st_menu_item_text_active_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_close_background_background_color\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"#54595F\",\"st_hamburger_menu_position_responsive_mobile\":\"left\",\"st_hamburger_menu_close_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_hamburger_menu_close_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"st_mobile_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"st_menu_item_text_hover_color_responsive\":\"#54595F\",\"st_menu_item_text_active_color_responsive\":\"#54595F\",\"st_mobile_menu_object_fit_responsive_tablet\":\"cover\",\"st_mobile_menu_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_hamburger_menu_close_background_hover_background_background\":\"classic\",\"sg_menu_alignment_responsive\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_nav_menu\"}],\"isInner\":true},{\"id\":\"5ef5f227\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"234dd6d2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"align\":\"right\",\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=558fe58\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"hover_animation\":\"float\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1461,251,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1462,251,'_elementor_css','a:6:{s:4:\"time\";i:1721836588;s:5:\"fonts\";a:1:{i:0;s:5:\"Inter\";}s:5:\"icons\";a:4:{i:0;s:8:\"jkiticon\";i:3;s:9:\"fa-brands\";i:7;s:8:\"fa-solid\";i:9;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1463,252,'_wp_page_template','default'),(1464,252,'_elementor_edit_mode','builder'),(1465,252,'_elementor_template_type','wp-post'),(1466,252,'_elementor_version','3.23.2'),(1467,252,'_elementor_data','[{\"id\":\"1ed2d9f1\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":3,\"blur\":15,\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.06)\"},\"background_background\":\"classic\",\"z_index\":1,\"jet_sticky_section_sticky\":\"yes\",\"jet_sticky_section_sticky_z_index\":\"10\",\"jet_sticky_section_sticky_background_background\":\"classic\",\"jet_sticky_section_sticky_background_color\":\"#FFFFFF\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"z_index_tablet\":4,\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=f01b239\"}},\"elements\":[{\"id\":\"5a58714b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80.3490000000000037516656448133289813995361328125,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":20,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"18bb12d6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-map-marker1-light\",\"library\":\"jkiticon\"},\"title_text\":\"\",\"description_text\":\"123 Wall St\\nMiami, FL 12345\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"none\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#EAEAEA\",\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\",\"description_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"secondary_color\":\"\",\"title_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"view\":\"framed\",\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#3F5A29\",\"title_color\":\"#00160E\",\"description_color\":\"#00160E\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"secondary_color\":\"#FFFFFF00\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Heebo\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"294dea9a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-phone-call-line\",\"library\":\"jkiticon\"},\"title_text\":\"\",\"description_text\":\"+1 505 555 5555\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\",\"description_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"secondary_color\":\"\",\"title_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"view\":\"framed\",\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"tel:+1 505 555 5555\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"primary_color\":\"#3F5A29\",\"secondary_color\":\"#FFFFFF00\",\"title_color\":\"#00160E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"description_color\":\"#00160E\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Heebo\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_border_border\":\"none\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#EAEAEA\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"5e047152\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":19.650999999999999801048033987171947956085205078125,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":30,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":80},\"elements\":[{\"id\":\"976c2f8\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"jki jki-facebook-f\",\"library\":\"jkiticon\"},\"_id\":\"0fb8cc7\"},{\"social_icon\":{\"value\":\"fab fa-x-twitter\",\"library\":\"fa-brands\"},\"_id\":\"4be5bc7\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"147010a\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"df2ad14\"}],\"shape\":\"circle\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"hover_animation\":\"shrink\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=secondary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_secondary_color\":\"globals\\/colors?id=accent\",\"hover_primary_color\":\"globals\\/colors?id=accent\"},\"align_tablet\":\"right\",\"hover_primary_color\":\"#006943\",\"hover_secondary_color\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65d61e79\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"z_index\":1,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":3,\"blur\":15,\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.06)\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"z_index_tablet\":4},\"elements\":[{\"id\":\"49c5f53f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"z_index_tablet\":5},\"elements\":[{\"id\":\"7fd427a5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"a5ad795\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EAEAEA\"},\"elements\":[{\"id\":\"4b6500b7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":219,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-2.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2eb94bb5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.6580000000000012505552149377763271331787109375,\"align\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":80,\"hide_mobile\":\"hidden-phone\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align_tablet\":\"flex-end\"},\"elements\":[{\"id\":\"14c9c516\",\"elType\":\"widget\",\"settings\":{\"sg_menu_choose\":\"main-menu\",\"sg_mobile_menu_logo\":{\"id\":107,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_mobile_menu_logo_size_imagesize_size\":\"full\",\"sg_mobile_menu_icon\":{\"value\":\"jki jki-bars-solid\",\"library\":\"jkiticon\"},\"st_menu_wrapper_height_responsive\":{\"unit\":\"px\",\"size\":74,\"sizes\":[]},\"st_menu_wrapper_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"},\"st_submenu_item_indicator_margin_responsive\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_submenu_panel_padding_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_panel_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_background_background_background\":\"classic\",\"st_submenu_panel_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_position_responsive_tablet\":\"left\",\"st_hamburger_menu_icon_background_background_background\":\"classic\",\"st_hamburger_menu_icon_background_background_color\":\"#FFFFFF00\",\"st_hamburger_menu_icon_border_border_border\":\"solid\",\"st_hamburger_menu_icon_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_hamburger_menu_close_background_background_background\":\"classic\",\"st_hamburger_menu_close_border_border_border\":\"solid\",\"st_hamburger_menu_close_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"st_menu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_menu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_color_responsive\":\"\",\"st_submenu_panel_background_background_color\":\"\",\"st_submenu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_submenu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_wrapper_mobile_color_tablet_responsive_tablet\":\"\",\"st_menu_item_text_normal_color_responsive_tablet\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_item_text_active_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_submenu_item_indicator_color_responsive_tablet\":\"\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_icon_color_hover_responsive_tablet\":\"\",\"st_hamburger_menu_close_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_close_color_hover_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_wrapper_background_background_color\":\"\",\"st_hamburger_menu_close_background_background_color\":\"globals\\/colors?id=secondary\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_border_border_color\":\"\",\"st_hamburger_menu_close_background_hover_background_color\":\"globals\\/colors?id=accent\"},\"st_submenu_panel_box_shadow_box_shadow_box_shadow_type\":\"yes\",\"st_submenu_panel_box_shadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_submenu_item_indicator_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_submenu_item_indicator_border_border_border\":\"solid\",\"st_submenu_item_indicator_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_submenu_panel_background_background_color\":\"#FFFFFF\",\"st_hamburger_menu_icon_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_icon_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_close_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_hamburger_menu_close_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_hamburger_menu_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_menu_item_text_normal_color_responsive_tablet\":\"#6EC1E4\",\"st_menu_item_text_hover_color_responsive_tablet\":\"#54595F\",\"st_menu_item_text_active_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_close_background_background_color\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"#54595F\",\"st_hamburger_menu_position_responsive_mobile\":\"left\",\"st_hamburger_menu_close_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_hamburger_menu_close_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"st_mobile_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"st_menu_item_text_hover_color_responsive\":\"#54595F\",\"st_menu_item_text_active_color_responsive\":\"#54595F\",\"st_mobile_menu_object_fit_responsive_tablet\":\"cover\",\"st_mobile_menu_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_hamburger_menu_close_background_hover_background_background\":\"classic\",\"sg_menu_alignment_responsive\":\"center\",\"sg_menu_alignment_responsive_tablet\":\"flex-end\",\"sg_menu_sub_position\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_nav_menu\"}],\"isInner\":true},{\"id\":\"5ef5f227\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"234dd6d2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"align\":\"right\",\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=558fe58\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"hover_animation\":\"float\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1468,252,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1469,252,'_elementor_css','a:6:{s:4:\"time\";i:1721836588;s:5:\"fonts\";a:1:{i:0;s:5:\"Inter\";}s:5:\"icons\";a:4:{i:0;s:8:\"jkiticon\";i:3;s:9:\"fa-brands\";i:7;s:8:\"fa-solid\";i:9;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1470,253,'_wp_page_template','default'),(1471,253,'_elementor_edit_mode','builder'),(1472,253,'_elementor_template_type','wp-post'),(1473,253,'_elementor_version','3.23.2'),(1474,253,'_elementor_data','[{\"id\":\"1ed2d9f1\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":3,\"blur\":15,\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.06)\"},\"background_background\":\"classic\",\"z_index\":1,\"jet_sticky_section_sticky\":\"yes\",\"jet_sticky_section_sticky_z_index\":\"10\",\"jet_sticky_section_sticky_background_background\":\"classic\",\"jet_sticky_section_sticky_background_color\":\"#FFFFFF\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"z_index_tablet\":4,\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=f01b239\"}},\"elements\":[{\"id\":\"5a58714b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80.3490000000000037516656448133289813995361328125,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":20,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"18bb12d6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-map-marker1-light\",\"library\":\"jkiticon\"},\"title_text\":\"\",\"description_text\":\"123 Wall St\\nMiami, FL 12345\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"none\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#EAEAEA\",\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\",\"description_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"secondary_color\":\"\",\"title_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"view\":\"framed\",\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#3F5A29\",\"title_color\":\"#00160E\",\"description_color\":\"#00160E\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"secondary_color\":\"#FFFFFF00\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Heebo\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"294dea9a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-phone-call-line\",\"library\":\"jkiticon\"},\"title_text\":\"\",\"description_text\":\"+1 505 555 5555\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\",\"description_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"secondary_color\":\"\",\"title_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"view\":\"framed\",\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"tel:+1 505 555 5555\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"primary_color\":\"#3F5A29\",\"secondary_color\":\"#FFFFFF00\",\"title_color\":\"#00160E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"description_color\":\"#00160E\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Heebo\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_border_border\":\"none\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#EAEAEA\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"5e047152\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":19.650999999999999801048033987171947956085205078125,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":30,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":80},\"elements\":[{\"id\":\"976c2f8\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"jki jki-facebook-f\",\"library\":\"jkiticon\"},\"_id\":\"0fb8cc7\"},{\"social_icon\":{\"value\":\"fab fa-x-twitter\",\"library\":\"fa-brands\"},\"_id\":\"4be5bc7\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"147010a\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"df2ad14\"}],\"shape\":\"circle\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"hover_animation\":\"shrink\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=secondary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_secondary_color\":\"globals\\/colors?id=accent\",\"hover_primary_color\":\"globals\\/colors?id=accent\"},\"align_tablet\":\"right\",\"hover_primary_color\":\"#006943\",\"hover_secondary_color\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65d61e79\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"z_index\":1,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":3,\"blur\":15,\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.06)\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"z_index_tablet\":4},\"elements\":[{\"id\":\"49c5f53f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"z_index_tablet\":5},\"elements\":[{\"id\":\"7fd427a5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"a5ad795\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EAEAEA\"},\"elements\":[{\"id\":\"4b6500b7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":219,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-2.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2eb94bb5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.6580000000000012505552149377763271331787109375,\"align\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":80,\"hide_mobile\":\"hidden-phone\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align_tablet\":\"flex-end\"},\"elements\":[{\"id\":\"14c9c516\",\"elType\":\"widget\",\"settings\":{\"sg_menu_choose\":\"main-menu\",\"sg_mobile_menu_logo\":{\"id\":107,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_mobile_menu_logo_size_imagesize_size\":\"full\",\"sg_mobile_menu_icon\":{\"value\":\"jki jki-bars-solid\",\"library\":\"jkiticon\"},\"st_menu_wrapper_height_responsive\":{\"unit\":\"px\",\"size\":74,\"sizes\":[]},\"st_menu_wrapper_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"},\"st_submenu_item_indicator_margin_responsive\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_submenu_panel_padding_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_panel_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_background_background_background\":\"classic\",\"st_submenu_panel_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_position_responsive_tablet\":\"left\",\"st_hamburger_menu_icon_background_background_background\":\"classic\",\"st_hamburger_menu_icon_background_background_color\":\"#FFFFFF00\",\"st_hamburger_menu_icon_border_border_border\":\"solid\",\"st_hamburger_menu_icon_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_hamburger_menu_close_background_background_background\":\"classic\",\"st_hamburger_menu_close_border_border_border\":\"solid\",\"st_hamburger_menu_close_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"st_menu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_menu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_color_responsive\":\"\",\"st_submenu_panel_background_background_color\":\"\",\"st_submenu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_submenu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_wrapper_mobile_color_tablet_responsive_tablet\":\"\",\"st_menu_item_text_normal_color_responsive_tablet\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_item_text_active_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_submenu_item_indicator_color_responsive_tablet\":\"\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_icon_color_hover_responsive_tablet\":\"\",\"st_hamburger_menu_close_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_close_color_hover_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_wrapper_background_background_color\":\"\",\"st_hamburger_menu_close_background_background_color\":\"globals\\/colors?id=secondary\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_border_border_color\":\"\",\"st_hamburger_menu_close_background_hover_background_color\":\"globals\\/colors?id=accent\"},\"st_submenu_panel_box_shadow_box_shadow_box_shadow_type\":\"yes\",\"st_submenu_panel_box_shadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_submenu_item_indicator_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_submenu_item_indicator_border_border_border\":\"solid\",\"st_submenu_item_indicator_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_submenu_panel_background_background_color\":\"#FFFFFF\",\"st_hamburger_menu_icon_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_icon_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_close_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_hamburger_menu_close_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_hamburger_menu_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_menu_item_text_normal_color_responsive_tablet\":\"#6EC1E4\",\"st_menu_item_text_hover_color_responsive_tablet\":\"#54595F\",\"st_menu_item_text_active_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_close_background_background_color\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"#54595F\",\"st_hamburger_menu_position_responsive_mobile\":\"left\",\"st_hamburger_menu_close_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_hamburger_menu_close_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"st_mobile_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"st_menu_item_text_hover_color_responsive\":\"#54595F\",\"st_menu_item_text_active_color_responsive\":\"#54595F\",\"st_mobile_menu_object_fit_responsive_tablet\":\"cover\",\"st_mobile_menu_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_hamburger_menu_close_background_hover_background_background\":\"classic\",\"sg_menu_alignment_responsive\":\"center\",\"sg_menu_alignment_responsive_tablet\":\"flex-end\",\"sg_menu_sub_position\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_nav_menu\"}],\"isInner\":true},{\"id\":\"5ef5f227\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"234dd6d2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"align\":\"right\",\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=558fe58\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"hover_animation\":\"float\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1475,253,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1476,254,'_wp_page_template','default'),(1477,254,'_elementor_edit_mode','builder'),(1478,254,'_elementor_template_type','wp-post'),(1479,254,'_elementor_version','3.23.2'),(1480,254,'_elementor_data','[{\"id\":\"1ed2d9f1\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":3,\"blur\":15,\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.06)\"},\"background_background\":\"classic\",\"z_index\":1,\"jet_sticky_section_sticky\":\"yes\",\"jet_sticky_section_sticky_z_index\":\"10\",\"jet_sticky_section_sticky_background_background\":\"classic\",\"jet_sticky_section_sticky_background_color\":\"#FFFFFF\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"z_index_tablet\":4,\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"globals\\/colors?id=f01b239\"}},\"elements\":[{\"id\":\"5a58714b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80.3490000000000037516656448133289813995361328125,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":20,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"18bb12d6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-map-marker1-light\",\"library\":\"jkiticon\"},\"title_text\":\"\",\"description_text\":\"123 Wall St\\nMiami, FL 12345\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"none\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#EAEAEA\",\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\",\"description_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"secondary_color\":\"\",\"title_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"view\":\"framed\",\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#3F5A29\",\"title_color\":\"#00160E\",\"description_color\":\"#00160E\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"secondary_color\":\"#FFFFFF00\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Heebo\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"294dea9a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-phone-call-line\",\"library\":\"jkiticon\"},\"title_text\":\"\",\"description_text\":\"+1 505 555 5555\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\",\"description_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"secondary_color\":\"\",\"title_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"view\":\"framed\",\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"tel:+1 505 555 5555\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"primary_color\":\"#3F5A29\",\"secondary_color\":\"#FFFFFF00\",\"title_color\":\"#00160E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"description_color\":\"#00160E\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Heebo\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_border_border\":\"none\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#EAEAEA\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"5e047152\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":19.650999999999999801048033987171947956085205078125,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":30,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":80},\"elements\":[{\"id\":\"976c2f8\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"jki jki-facebook-f\",\"library\":\"jkiticon\"},\"_id\":\"0fb8cc7\"},{\"social_icon\":{\"value\":\"fab fa-x-twitter\",\"library\":\"fa-brands\"},\"_id\":\"4be5bc7\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"147010a\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"df2ad14\"}],\"shape\":\"circle\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"hover_animation\":\"shrink\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=secondary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_secondary_color\":\"globals\\/colors?id=accent\",\"hover_primary_color\":\"globals\\/colors?id=accent\"},\"align_tablet\":\"right\",\"hover_primary_color\":\"#006943\",\"hover_secondary_color\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65d61e79\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"z_index\":1,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":3,\"blur\":15,\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.06)\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"z_index_tablet\":4},\"elements\":[{\"id\":\"49c5f53f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"z_index_tablet\":5},\"elements\":[{\"id\":\"7fd427a5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"a5ad795\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EAEAEA\"},\"elements\":[{\"id\":\"4b6500b7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":219,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-2.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2eb94bb5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.6580000000000012505552149377763271331787109375,\"align\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":80,\"hide_mobile\":\"hidden-phone\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align_tablet\":\"flex-end\"},\"elements\":[{\"id\":\"14c9c516\",\"elType\":\"widget\",\"settings\":{\"sg_menu_choose\":\"main-menu\",\"sg_mobile_menu_logo\":{\"id\":107,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_mobile_menu_logo_size_imagesize_size\":\"full\",\"sg_mobile_menu_icon\":{\"value\":\"jki jki-bars-solid\",\"library\":\"jkiticon\"},\"st_menu_wrapper_height_responsive\":{\"unit\":\"px\",\"size\":74,\"sizes\":[]},\"st_menu_wrapper_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"},\"st_submenu_item_indicator_margin_responsive\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_submenu_panel_padding_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_panel_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_background_background_background\":\"classic\",\"st_submenu_panel_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_position_responsive_tablet\":\"left\",\"st_hamburger_menu_icon_background_background_background\":\"classic\",\"st_hamburger_menu_icon_background_background_color\":\"#FFFFFF00\",\"st_hamburger_menu_icon_border_border_border\":\"solid\",\"st_hamburger_menu_icon_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_hamburger_menu_close_background_background_background\":\"classic\",\"st_hamburger_menu_close_border_border_border\":\"solid\",\"st_hamburger_menu_close_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"st_menu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_menu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_color_responsive\":\"\",\"st_submenu_panel_background_background_color\":\"\",\"st_submenu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_submenu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_wrapper_mobile_color_tablet_responsive_tablet\":\"\",\"st_menu_item_text_normal_color_responsive_tablet\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_item_text_active_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_submenu_item_indicator_color_responsive_tablet\":\"\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_icon_color_hover_responsive_tablet\":\"\",\"st_hamburger_menu_close_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_close_color_hover_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_wrapper_background_background_color\":\"\",\"st_hamburger_menu_close_background_background_color\":\"globals\\/colors?id=secondary\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_border_border_color\":\"\",\"st_hamburger_menu_close_background_hover_background_color\":\"globals\\/colors?id=accent\"},\"st_submenu_panel_box_shadow_box_shadow_box_shadow_type\":\"yes\",\"st_submenu_panel_box_shadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_submenu_item_indicator_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_submenu_item_indicator_border_border_border\":\"solid\",\"st_submenu_item_indicator_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_submenu_panel_background_background_color\":\"#FFFFFF\",\"st_hamburger_menu_icon_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_icon_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_close_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_hamburger_menu_close_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_hamburger_menu_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_menu_item_text_normal_color_responsive_tablet\":\"#6EC1E4\",\"st_menu_item_text_hover_color_responsive_tablet\":\"#54595F\",\"st_menu_item_text_active_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_close_background_background_color\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"#54595F\",\"st_hamburger_menu_position_responsive_mobile\":\"left\",\"st_hamburger_menu_close_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_hamburger_menu_close_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"st_mobile_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"st_menu_item_text_hover_color_responsive\":\"#54595F\",\"st_menu_item_text_active_color_responsive\":\"#54595F\",\"st_mobile_menu_object_fit_responsive_tablet\":\"cover\",\"st_mobile_menu_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_hamburger_menu_close_background_hover_background_background\":\"classic\",\"sg_menu_alignment_responsive\":\"center\",\"sg_menu_alignment_responsive_tablet\":\"flex-end\",\"sg_menu_sub_position\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_nav_menu\"}],\"isInner\":true},{\"id\":\"5ef5f227\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"234dd6d2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"align\":\"right\",\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=558fe58\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"hover_animation\":\"float\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1481,254,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1482,255,'_wp_page_template','default'),(1483,255,'_elementor_edit_mode','builder'),(1484,255,'_elementor_template_type','wp-post'),(1485,255,'_elementor_version','3.23.2'),(1486,255,'_elementor_data','[{\"id\":\"1ed2d9f1\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":3,\"blur\":15,\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.06)\"},\"background_background\":\"classic\",\"z_index\":1,\"jet_sticky_section_sticky\":\"yes\",\"jet_sticky_section_sticky_z_index\":\"10\",\"jet_sticky_section_sticky_background_background\":\"classic\",\"jet_sticky_section_sticky_background_color\":\"#FFFFFF\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"z_index_tablet\":4,\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"z_index_mobile\":0,\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=f01b239\"}},\"elements\":[{\"id\":\"5a58714b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80.3490000000000037516656448133289813995361328125,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":20,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"18bb12d6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-map-marker1-light\",\"library\":\"jkiticon\"},\"title_text\":\"\",\"description_text\":\"123 Wall St\\nMiami, FL 12345\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"none\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#EAEAEA\",\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\",\"description_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"secondary_color\":\"\",\"title_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"view\":\"framed\",\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#3F5A29\",\"title_color\":\"#00160E\",\"description_color\":\"#00160E\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"secondary_color\":\"#FFFFFF00\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Heebo\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"294dea9a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-phone-call-line\",\"library\":\"jkiticon\"},\"title_text\":\"\",\"description_text\":\"+1 505 555 5555\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\",\"description_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"secondary_color\":\"\",\"title_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"view\":\"framed\",\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"tel:+1 505 555 5555\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"primary_color\":\"#3F5A29\",\"secondary_color\":\"#FFFFFF00\",\"title_color\":\"#00160E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"description_color\":\"#00160E\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Heebo\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_border_border\":\"none\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#EAEAEA\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"5e047152\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":19.650999999999999801048033987171947956085205078125,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":30,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":80},\"elements\":[{\"id\":\"976c2f8\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"jki jki-facebook-f\",\"library\":\"jkiticon\"},\"_id\":\"0fb8cc7\"},{\"social_icon\":{\"value\":\"fab fa-x-twitter\",\"library\":\"fa-brands\"},\"_id\":\"4be5bc7\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"147010a\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"df2ad14\"}],\"shape\":\"circle\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"hover_animation\":\"shrink\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=secondary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_secondary_color\":\"globals\\/colors?id=accent\",\"hover_primary_color\":\"globals\\/colors?id=accent\"},\"align_tablet\":\"right\",\"hover_primary_color\":\"#006943\",\"hover_secondary_color\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65d61e79\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"z_index\":1,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":3,\"blur\":15,\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.06)\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"z_index_tablet\":4,\"z_index_mobile\":0},\"elements\":[{\"id\":\"49c5f53f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"z_index_tablet\":5,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7fd427a5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"a5ad795\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EAEAEA\"},\"elements\":[{\"id\":\"4b6500b7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":219,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-2.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":70}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"14c9c516\",\"elType\":\"widget\",\"settings\":{\"sg_menu_choose\":\"main-menu\",\"sg_mobile_menu_logo\":{\"id\":107,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_mobile_menu_logo_size_imagesize_size\":\"full\",\"sg_mobile_menu_icon\":{\"value\":\"jki jki-bars-solid\",\"library\":\"jkiticon\"},\"st_menu_wrapper_height_responsive\":{\"unit\":\"px\",\"size\":74,\"sizes\":[]},\"st_menu_wrapper_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"},\"st_submenu_item_indicator_margin_responsive\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_submenu_panel_padding_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_panel_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_background_background_background\":\"classic\",\"st_submenu_panel_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_position_responsive_tablet\":\"left\",\"st_hamburger_menu_icon_background_background_background\":\"classic\",\"st_hamburger_menu_icon_background_background_color\":\"#FFFFFF00\",\"st_hamburger_menu_icon_border_border_border\":\"solid\",\"st_hamburger_menu_icon_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_hamburger_menu_close_background_background_background\":\"classic\",\"st_hamburger_menu_close_border_border_border\":\"solid\",\"st_hamburger_menu_close_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"st_menu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_menu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_color_responsive\":\"\",\"st_submenu_panel_background_background_color\":\"\",\"st_submenu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_submenu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_wrapper_mobile_color_tablet_responsive_tablet\":\"\",\"st_menu_item_text_normal_color_responsive_tablet\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_item_text_active_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_submenu_item_indicator_color_responsive_tablet\":\"\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_icon_color_hover_responsive_tablet\":\"\",\"st_hamburger_menu_close_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_close_color_hover_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_wrapper_background_background_color\":\"\",\"st_hamburger_menu_close_background_background_color\":\"globals\\/colors?id=secondary\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_border_border_color\":\"\",\"st_hamburger_menu_close_background_hover_background_color\":\"globals\\/colors?id=accent\"},\"st_submenu_panel_box_shadow_box_shadow_box_shadow_type\":\"yes\",\"st_submenu_panel_box_shadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_submenu_item_indicator_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_submenu_item_indicator_border_border_border\":\"solid\",\"st_submenu_item_indicator_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_submenu_panel_background_background_color\":\"#FFFFFF\",\"st_hamburger_menu_icon_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_icon_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_close_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_hamburger_menu_close_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_hamburger_menu_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_menu_item_text_normal_color_responsive_tablet\":\"#6EC1E4\",\"st_menu_item_text_hover_color_responsive_tablet\":\"#54595F\",\"st_menu_item_text_active_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_close_background_background_color\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"#54595F\",\"st_hamburger_menu_position_responsive_mobile\":\"left\",\"st_hamburger_menu_close_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_hamburger_menu_close_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"st_mobile_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"st_menu_item_text_hover_color_responsive\":\"#54595F\",\"st_menu_item_text_active_color_responsive\":\"#54595F\",\"st_mobile_menu_object_fit_responsive_tablet\":\"cover\",\"st_mobile_menu_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_hamburger_menu_close_background_hover_background_background\":\"classic\",\"sg_menu_alignment_responsive\":\"center\",\"sg_menu_alignment_responsive_tablet\":\"flex-end\",\"sg_menu_alignment_responsive_mobile\":\"flex-end\",\"sg_menu_sub_position\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_nav_menu\"}],\"isInner\":true},{\"id\":\"2eb94bb5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.6580000000000012505552149377763271331787109375,\"align\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":80,\"hide_mobile\":\"hidden-phone\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align_tablet\":\"flex-end\"},\"elements\":[],\"isInner\":true},{\"id\":\"5ef5f227\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"234dd6d2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"align\":\"right\",\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=558fe58\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"hover_animation\":\"float\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1487,255,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1488,256,'_wp_page_template','default'),(1489,256,'_elementor_edit_mode','builder'),(1490,256,'_elementor_template_type','wp-post'),(1491,256,'_elementor_version','3.23.2'),(1492,256,'_elementor_data','[{\"id\":\"1ed2d9f1\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":3,\"blur\":15,\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.06)\"},\"background_background\":\"classic\",\"z_index\":1,\"jet_sticky_section_sticky\":\"yes\",\"jet_sticky_section_sticky_z_index\":\"10\",\"jet_sticky_section_sticky_background_background\":\"classic\",\"jet_sticky_section_sticky_background_color\":\"#FFFFFF\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"z_index_tablet\":4,\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"z_index_mobile\":0,\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=f01b239\"}},\"elements\":[{\"id\":\"5a58714b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80.3490000000000037516656448133289813995361328125,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":20,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"18bb12d6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-map-marker1-light\",\"library\":\"jkiticon\"},\"title_text\":\"\",\"description_text\":\"123 Wall St\\nMiami, FL 12345\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"none\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#EAEAEA\",\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\",\"description_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"secondary_color\":\"\",\"title_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"view\":\"framed\",\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#3F5A29\",\"title_color\":\"#00160E\",\"description_color\":\"#00160E\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"secondary_color\":\"#FFFFFF00\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Heebo\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"294dea9a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-phone-call-line\",\"library\":\"jkiticon\"},\"title_text\":\"\",\"description_text\":\"+1 505 555 5555\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\",\"description_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"secondary_color\":\"\",\"title_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"view\":\"framed\",\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"tel:+1 505 555 5555\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"primary_color\":\"#3F5A29\",\"secondary_color\":\"#FFFFFF00\",\"title_color\":\"#00160E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"description_color\":\"#00160E\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Heebo\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_border_border\":\"none\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#EAEAEA\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"5e047152\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":19.650999999999999801048033987171947956085205078125,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":30,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":80},\"elements\":[{\"id\":\"976c2f8\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"jki jki-facebook-f\",\"library\":\"jkiticon\"},\"_id\":\"0fb8cc7\"},{\"social_icon\":{\"value\":\"fab fa-x-twitter\",\"library\":\"fa-brands\"},\"_id\":\"4be5bc7\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"147010a\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"df2ad14\"}],\"shape\":\"circle\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"hover_animation\":\"shrink\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=secondary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_secondary_color\":\"globals\\/colors?id=accent\",\"hover_primary_color\":\"globals\\/colors?id=accent\"},\"align_tablet\":\"right\",\"hover_primary_color\":\"#006943\",\"hover_secondary_color\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65d61e79\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"z_index\":1,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":3,\"blur\":15,\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.06)\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"z_index_tablet\":4,\"z_index_mobile\":0},\"elements\":[{\"id\":\"49c5f53f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"z_index_tablet\":5,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7fd427a5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"a5ad795\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EAEAEA\"},\"elements\":[{\"id\":\"4b6500b7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":219,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-2.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":70}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"14c9c516\",\"elType\":\"widget\",\"settings\":{\"sg_menu_choose\":\"main-menu\",\"sg_mobile_menu_logo\":{\"id\":107,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_mobile_menu_logo_size_imagesize_size\":\"full\",\"sg_mobile_menu_icon\":{\"value\":\"jki jki-bars-solid\",\"library\":\"jkiticon\"},\"st_menu_wrapper_height_responsive\":{\"unit\":\"px\",\"size\":74,\"sizes\":[]},\"st_menu_wrapper_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"},\"st_submenu_item_indicator_margin_responsive\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_submenu_panel_padding_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_panel_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_background_background_background\":\"classic\",\"st_submenu_panel_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_position_responsive_tablet\":\"left\",\"st_hamburger_menu_icon_background_background_background\":\"classic\",\"st_hamburger_menu_icon_background_background_color\":\"#FFFFFF00\",\"st_hamburger_menu_icon_border_border_border\":\"solid\",\"st_hamburger_menu_icon_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_hamburger_menu_close_background_background_background\":\"classic\",\"st_hamburger_menu_close_border_border_border\":\"solid\",\"st_hamburger_menu_close_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"st_menu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_menu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_color_responsive\":\"\",\"st_submenu_panel_background_background_color\":\"\",\"st_submenu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_submenu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_wrapper_mobile_color_tablet_responsive_tablet\":\"\",\"st_menu_item_text_normal_color_responsive_tablet\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_item_text_active_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_submenu_item_indicator_color_responsive_tablet\":\"\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_icon_color_hover_responsive_tablet\":\"\",\"st_hamburger_menu_close_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_close_color_hover_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_wrapper_background_background_color\":\"\",\"st_hamburger_menu_close_background_background_color\":\"globals\\/colors?id=secondary\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_border_border_color\":\"\",\"st_hamburger_menu_close_background_hover_background_color\":\"globals\\/colors?id=accent\"},\"st_submenu_panel_box_shadow_box_shadow_box_shadow_type\":\"yes\",\"st_submenu_panel_box_shadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_submenu_item_indicator_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_submenu_item_indicator_border_border_border\":\"solid\",\"st_submenu_item_indicator_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_submenu_panel_background_background_color\":\"#FFFFFF\",\"st_hamburger_menu_icon_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_icon_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_close_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_hamburger_menu_close_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_hamburger_menu_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_menu_item_text_normal_color_responsive_tablet\":\"#6EC1E4\",\"st_menu_item_text_hover_color_responsive_tablet\":\"#54595F\",\"st_menu_item_text_active_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_close_background_background_color\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"#54595F\",\"st_hamburger_menu_position_responsive_mobile\":\"left\",\"st_hamburger_menu_close_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_hamburger_menu_close_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"st_mobile_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"st_menu_item_text_hover_color_responsive\":\"#54595F\",\"st_menu_item_text_active_color_responsive\":\"#54595F\",\"st_mobile_menu_object_fit_responsive_tablet\":\"cover\",\"st_mobile_menu_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_hamburger_menu_close_background_hover_background_background\":\"classic\",\"sg_menu_alignment_responsive\":\"center\",\"sg_menu_alignment_responsive_tablet\":\"flex-end\",\"sg_menu_alignment_responsive_mobile\":\"flex-end\",\"sg_menu_sub_position\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_nav_menu\"}],\"isInner\":true},{\"id\":\"2eb94bb5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.6580000000000012505552149377763271331787109375,\"align\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":80,\"hide_mobile\":\"hidden-phone\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align_tablet\":\"flex-end\"},\"elements\":[],\"isInner\":true},{\"id\":\"5ef5f227\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"234dd6d2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"align\":\"right\",\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=558fe58\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"hover_animation\":\"float\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1493,256,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1494,257,'_wp_page_template','default'),(1495,257,'_elementor_edit_mode','builder'),(1496,257,'_elementor_template_type','wp-post'),(1497,257,'_elementor_version','3.23.2'),(1498,257,'_elementor_data','[{\"id\":\"1ed2d9f1\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":3,\"blur\":15,\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.06)\"},\"background_background\":\"classic\",\"z_index\":1,\"jet_sticky_section_sticky\":\"yes\",\"jet_sticky_section_sticky_z_index\":\"10\",\"jet_sticky_section_sticky_background_background\":\"classic\",\"jet_sticky_section_sticky_background_color\":\"#FFFFFF\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"z_index_tablet\":4,\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"z_index_mobile\":0,\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=f01b239\"}},\"elements\":[{\"id\":\"5a58714b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80.3490000000000037516656448133289813995361328125,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":20,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"18bb12d6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-map-marker1-light\",\"library\":\"jkiticon\"},\"title_text\":\"\",\"description_text\":\"123 Wall St\\nMiami, FL 12345\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"none\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#EAEAEA\",\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\",\"description_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"secondary_color\":\"\",\"title_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"view\":\"framed\",\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#3F5A29\",\"title_color\":\"#00160E\",\"description_color\":\"#00160E\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"secondary_color\":\"#FFFFFF00\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Heebo\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"294dea9a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-phone-call-line\",\"library\":\"jkiticon\"},\"title_text\":\"\",\"description_text\":\"+1 505 555 5555\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\",\"description_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"secondary_color\":\"\",\"title_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"view\":\"framed\",\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"tel:+1 505 555 5555\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"primary_color\":\"#3F5A29\",\"secondary_color\":\"#FFFFFF00\",\"title_color\":\"#00160E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"description_color\":\"#00160E\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Heebo\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_border_border\":\"none\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#EAEAEA\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"5e047152\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":19.650999999999999801048033987171947956085205078125,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":30,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":80},\"elements\":[{\"id\":\"976c2f8\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"jki jki-facebook-f\",\"library\":\"jkiticon\"},\"_id\":\"0fb8cc7\"},{\"social_icon\":{\"value\":\"fab fa-x-twitter\",\"library\":\"fa-brands\"},\"_id\":\"4be5bc7\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"147010a\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"df2ad14\"}],\"shape\":\"circle\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"hover_animation\":\"shrink\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=secondary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_secondary_color\":\"globals\\/colors?id=accent\",\"hover_primary_color\":\"globals\\/colors?id=accent\"},\"align_tablet\":\"right\",\"hover_primary_color\":\"#006943\",\"hover_secondary_color\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65d61e79\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"z_index\":1,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":3,\"blur\":15,\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.06)\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"z_index_tablet\":4,\"z_index_mobile\":0},\"elements\":[{\"id\":\"49c5f53f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"z_index_tablet\":5,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7fd427a5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"a5ad795\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EAEAEA\"},\"elements\":[{\"id\":\"4b6500b7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":219,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-2.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":70}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"14c9c516\",\"elType\":\"widget\",\"settings\":{\"sg_menu_choose\":\"main-menu\",\"sg_mobile_menu_logo\":{\"id\":107,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_mobile_menu_logo_size_imagesize_size\":\"full\",\"sg_mobile_menu_icon\":{\"value\":\"jki jki-bars-solid\",\"library\":\"jkiticon\"},\"st_menu_wrapper_height_responsive\":{\"unit\":\"px\",\"size\":74,\"sizes\":[]},\"st_menu_wrapper_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"},\"st_submenu_item_indicator_margin_responsive\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_submenu_panel_padding_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_panel_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_background_background_background\":\"classic\",\"st_submenu_panel_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_position_responsive_tablet\":\"left\",\"st_hamburger_menu_icon_background_background_background\":\"classic\",\"st_hamburger_menu_icon_background_background_color\":\"#FFFFFF00\",\"st_hamburger_menu_icon_border_border_border\":\"solid\",\"st_hamburger_menu_icon_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_hamburger_menu_close_background_background_background\":\"classic\",\"st_hamburger_menu_close_border_border_border\":\"solid\",\"st_hamburger_menu_close_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"st_menu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_menu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_color_responsive\":\"\",\"st_submenu_panel_background_background_color\":\"\",\"st_submenu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_submenu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_wrapper_mobile_color_tablet_responsive_tablet\":\"\",\"st_menu_item_text_normal_color_responsive_tablet\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_item_text_active_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_submenu_item_indicator_color_responsive_tablet\":\"\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_icon_color_hover_responsive_tablet\":\"\",\"st_hamburger_menu_close_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_close_color_hover_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_wrapper_background_background_color\":\"\",\"st_hamburger_menu_close_background_background_color\":\"globals\\/colors?id=secondary\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_border_border_color\":\"\",\"st_hamburger_menu_close_background_hover_background_color\":\"globals\\/colors?id=accent\"},\"st_submenu_panel_box_shadow_box_shadow_box_shadow_type\":\"yes\",\"st_submenu_panel_box_shadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_submenu_item_indicator_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_submenu_item_indicator_border_border_border\":\"solid\",\"st_submenu_item_indicator_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_submenu_panel_background_background_color\":\"#FFFFFF\",\"st_hamburger_menu_icon_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_icon_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_close_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_hamburger_menu_close_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_hamburger_menu_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_menu_item_text_normal_color_responsive_tablet\":\"#6EC1E4\",\"st_menu_item_text_hover_color_responsive_tablet\":\"#54595F\",\"st_menu_item_text_active_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_close_background_background_color\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"#54595F\",\"st_hamburger_menu_position_responsive_mobile\":\"left\",\"st_hamburger_menu_close_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_hamburger_menu_close_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"st_mobile_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"st_menu_item_text_hover_color_responsive\":\"#54595F\",\"st_menu_item_text_active_color_responsive\":\"#54595F\",\"st_mobile_menu_object_fit_responsive_tablet\":\"cover\",\"st_mobile_menu_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_hamburger_menu_close_background_hover_background_background\":\"classic\",\"sg_menu_alignment_responsive\":\"center\",\"sg_menu_alignment_responsive_tablet\":\"flex-end\",\"sg_menu_alignment_responsive_mobile\":\"flex-end\",\"sg_menu_sub_position\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_nav_menu\"}],\"isInner\":true},{\"id\":\"2eb94bb5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.6580000000000012505552149377763271331787109375,\"align\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":80,\"hide_mobile\":\"hidden-phone\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align_tablet\":\"flex-end\"},\"elements\":[],\"isInner\":true},{\"id\":\"5ef5f227\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"234dd6d2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"align\":\"right\",\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=558fe58\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"hover_animation\":\"float\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1499,257,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1500,258,'_wp_page_template','default'),(1501,258,'_elementor_edit_mode','builder'),(1502,258,'_elementor_template_type','wp-post'),(1503,258,'_elementor_version','3.23.2'),(1504,258,'_elementor_data','[{\"id\":\"1ed2d9f1\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":3,\"blur\":15,\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.06)\"},\"background_background\":\"classic\",\"z_index\":1,\"jet_sticky_section_sticky\":\"yes\",\"jet_sticky_section_sticky_z_index\":\"10\",\"jet_sticky_section_sticky_background_background\":\"classic\",\"jet_sticky_section_sticky_background_color\":\"#FFFFFF\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"z_index_tablet\":4,\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"z_index_mobile\":0,\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=f01b239\"}},\"elements\":[{\"id\":\"5a58714b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80.3490000000000037516656448133289813995361328125,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":20,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"18bb12d6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-map-marker1-light\",\"library\":\"jkiticon\"},\"title_text\":\"\",\"description_text\":\"123 Wall St\\nMiami, FL 12345\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"none\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#EAEAEA\",\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\",\"description_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"secondary_color\":\"\",\"title_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"view\":\"framed\",\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#3F5A29\",\"title_color\":\"#00160E\",\"description_color\":\"#00160E\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"secondary_color\":\"#FFFFFF00\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Heebo\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"294dea9a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-phone-call-line\",\"library\":\"jkiticon\"},\"title_text\":\"\",\"description_text\":\"+1 505 555 5555\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\",\"description_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"secondary_color\":\"\",\"title_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"view\":\"framed\",\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"tel:+1 505 555 5555\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"primary_color\":\"#3F5A29\",\"secondary_color\":\"#FFFFFF00\",\"title_color\":\"#00160E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"description_color\":\"#00160E\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Heebo\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_border_border\":\"none\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#EAEAEA\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"5e047152\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":19.650999999999999801048033987171947956085205078125,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":30,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":80},\"elements\":[{\"id\":\"976c2f8\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"jki jki-facebook-f\",\"library\":\"jkiticon\"},\"_id\":\"0fb8cc7\"},{\"social_icon\":{\"value\":\"fab fa-x-twitter\",\"library\":\"fa-brands\"},\"_id\":\"4be5bc7\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"147010a\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"df2ad14\"}],\"shape\":\"circle\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"hover_animation\":\"shrink\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=secondary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_secondary_color\":\"globals\\/colors?id=accent\",\"hover_primary_color\":\"globals\\/colors?id=accent\"},\"align_tablet\":\"right\",\"hover_primary_color\":\"#006943\",\"hover_secondary_color\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65d61e79\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"z_index\":1,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":3,\"blur\":15,\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.06)\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"z_index_tablet\":4,\"z_index_mobile\":0},\"elements\":[{\"id\":\"49c5f53f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"z_index_tablet\":5,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7fd427a5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"z_index_mobile\":999},\"elements\":[{\"id\":\"a5ad795\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EAEAEA\"},\"elements\":[{\"id\":\"4b6500b7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":219,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-2.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":70}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"14c9c516\",\"elType\":\"widget\",\"settings\":{\"sg_menu_choose\":\"main-menu\",\"sg_mobile_menu_logo\":{\"id\":107,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_mobile_menu_logo_size_imagesize_size\":\"full\",\"sg_mobile_menu_icon\":{\"value\":\"jki jki-bars-solid\",\"library\":\"jkiticon\"},\"st_menu_wrapper_height_responsive\":{\"unit\":\"px\",\"size\":74,\"sizes\":[]},\"st_menu_wrapper_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"},\"st_submenu_item_indicator_margin_responsive\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_submenu_panel_padding_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_panel_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_background_background_background\":\"classic\",\"st_submenu_panel_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_position_responsive_tablet\":\"left\",\"st_hamburger_menu_icon_background_background_background\":\"classic\",\"st_hamburger_menu_icon_background_background_color\":\"#FFFFFF00\",\"st_hamburger_menu_icon_border_border_border\":\"solid\",\"st_hamburger_menu_icon_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_hamburger_menu_close_background_background_background\":\"classic\",\"st_hamburger_menu_close_border_border_border\":\"solid\",\"st_hamburger_menu_close_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"st_menu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_menu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_color_responsive\":\"\",\"st_submenu_panel_background_background_color\":\"\",\"st_submenu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_submenu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_wrapper_mobile_color_tablet_responsive_tablet\":\"\",\"st_menu_item_text_normal_color_responsive_tablet\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_item_text_active_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_submenu_item_indicator_color_responsive_tablet\":\"\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_icon_color_hover_responsive_tablet\":\"\",\"st_hamburger_menu_close_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_close_color_hover_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_wrapper_background_background_color\":\"\",\"st_hamburger_menu_close_background_background_color\":\"globals\\/colors?id=secondary\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_border_border_color\":\"\",\"st_hamburger_menu_close_background_hover_background_color\":\"globals\\/colors?id=accent\"},\"st_submenu_panel_box_shadow_box_shadow_box_shadow_type\":\"yes\",\"st_submenu_panel_box_shadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_submenu_item_indicator_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_submenu_item_indicator_border_border_border\":\"solid\",\"st_submenu_item_indicator_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_submenu_panel_background_background_color\":\"#FFFFFF\",\"st_hamburger_menu_icon_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_icon_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_close_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_hamburger_menu_close_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_hamburger_menu_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_menu_item_text_normal_color_responsive_tablet\":\"#6EC1E4\",\"st_menu_item_text_hover_color_responsive_tablet\":\"#54595F\",\"st_menu_item_text_active_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_close_background_background_color\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"#54595F\",\"st_hamburger_menu_position_responsive_mobile\":\"left\",\"st_hamburger_menu_close_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_hamburger_menu_close_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"st_mobile_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"st_menu_item_text_hover_color_responsive\":\"#54595F\",\"st_menu_item_text_active_color_responsive\":\"#54595F\",\"st_mobile_menu_object_fit_responsive_tablet\":\"cover\",\"st_mobile_menu_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_hamburger_menu_close_background_hover_background_background\":\"classic\",\"sg_menu_alignment_responsive\":\"center\",\"sg_menu_alignment_responsive_tablet\":\"flex-end\",\"sg_menu_alignment_responsive_mobile\":\"flex-end\",\"sg_menu_sub_position\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_z_index_mobile\":9999},\"elements\":[],\"widgetType\":\"jkit_nav_menu\"}],\"isInner\":true},{\"id\":\"2eb94bb5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.6580000000000012505552149377763271331787109375,\"align\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":80,\"hide_mobile\":\"hidden-phone\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align_tablet\":\"flex-end\"},\"elements\":[],\"isInner\":true},{\"id\":\"5ef5f227\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"234dd6d2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"align\":\"right\",\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=558fe58\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"hover_animation\":\"float\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1505,258,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1506,259,'_wp_page_template','default'),(1507,259,'_elementor_edit_mode','builder'),(1508,259,'_elementor_template_type','wp-post'),(1509,259,'_elementor_version','3.23.2'),(1510,259,'_elementor_data','[{\"id\":\"1ed2d9f1\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":3,\"blur\":15,\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.06)\"},\"background_background\":\"classic\",\"z_index\":1,\"jet_sticky_section_sticky\":\"yes\",\"jet_sticky_section_sticky_z_index\":\"10\",\"jet_sticky_section_sticky_background_background\":\"classic\",\"jet_sticky_section_sticky_background_color\":\"#FFFFFF\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"z_index_tablet\":4,\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"z_index_mobile\":0,\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=f01b239\"}},\"elements\":[{\"id\":\"5a58714b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80.3490000000000037516656448133289813995361328125,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":20,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"18bb12d6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-map-marker1-light\",\"library\":\"jkiticon\"},\"title_text\":\"\",\"description_text\":\"123 Wall St\\nMiami, FL 12345\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"none\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#EAEAEA\",\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\",\"description_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"secondary_color\":\"\",\"title_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"view\":\"framed\",\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#3F5A29\",\"title_color\":\"#00160E\",\"description_color\":\"#00160E\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"secondary_color\":\"#FFFFFF00\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Heebo\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"294dea9a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-phone-call-line\",\"library\":\"jkiticon\"},\"title_text\":\"\",\"description_text\":\"+1 505 555 5555\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\",\"description_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"secondary_color\":\"\",\"title_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"view\":\"framed\",\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"tel:+1 505 555 5555\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"primary_color\":\"#3F5A29\",\"secondary_color\":\"#FFFFFF00\",\"title_color\":\"#00160E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"description_color\":\"#00160E\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Heebo\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_border_border\":\"none\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#EAEAEA\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"5e047152\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":19.650999999999999801048033987171947956085205078125,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":30,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":80},\"elements\":[{\"id\":\"976c2f8\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"jki jki-facebook-f\",\"library\":\"jkiticon\"},\"_id\":\"0fb8cc7\"},{\"social_icon\":{\"value\":\"fab fa-x-twitter\",\"library\":\"fa-brands\"},\"_id\":\"4be5bc7\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"147010a\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"df2ad14\"}],\"shape\":\"circle\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"hover_animation\":\"shrink\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=secondary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_secondary_color\":\"globals\\/colors?id=accent\",\"hover_primary_color\":\"globals\\/colors?id=accent\"},\"align_tablet\":\"right\",\"hover_primary_color\":\"#006943\",\"hover_secondary_color\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65d61e79\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"z_index\":1,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":3,\"blur\":15,\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.06)\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"z_index_tablet\":4,\"z_index_mobile\":0},\"elements\":[{\"id\":\"49c5f53f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"z_index_tablet\":5,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7fd427a5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"z_index_mobile\":999},\"elements\":[{\"id\":\"a5ad795\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EAEAEA\"},\"elements\":[{\"id\":\"4b6500b7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":219,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-2.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":70}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"14c9c516\",\"elType\":\"widget\",\"settings\":{\"sg_menu_choose\":\"main-menu\",\"sg_mobile_menu_logo\":{\"id\":107,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_mobile_menu_logo_size_imagesize_size\":\"full\",\"sg_mobile_menu_icon\":{\"value\":\"jki jki-bars-solid\",\"library\":\"jkiticon\"},\"st_menu_wrapper_height_responsive\":{\"unit\":\"px\",\"size\":74,\"sizes\":[]},\"st_menu_wrapper_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"},\"st_submenu_item_indicator_margin_responsive\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_submenu_panel_padding_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_panel_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_background_background_background\":\"classic\",\"st_submenu_panel_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_position_responsive_tablet\":\"left\",\"st_hamburger_menu_icon_background_background_background\":\"classic\",\"st_hamburger_menu_icon_background_background_color\":\"#FFFFFF00\",\"st_hamburger_menu_icon_border_border_border\":\"solid\",\"st_hamburger_menu_icon_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_hamburger_menu_close_background_background_background\":\"classic\",\"st_hamburger_menu_close_border_border_border\":\"solid\",\"st_hamburger_menu_close_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"st_menu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_menu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_color_responsive\":\"\",\"st_submenu_panel_background_background_color\":\"\",\"st_submenu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_submenu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_wrapper_mobile_color_tablet_responsive_tablet\":\"\",\"st_menu_item_text_normal_color_responsive_tablet\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_item_text_active_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_submenu_item_indicator_color_responsive_tablet\":\"\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_icon_color_hover_responsive_tablet\":\"\",\"st_hamburger_menu_close_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_close_color_hover_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_wrapper_background_background_color\":\"\",\"st_hamburger_menu_close_background_background_color\":\"globals\\/colors?id=secondary\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_border_border_color\":\"\",\"st_hamburger_menu_close_background_hover_background_color\":\"globals\\/colors?id=accent\"},\"st_submenu_panel_box_shadow_box_shadow_box_shadow_type\":\"yes\",\"st_submenu_panel_box_shadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_submenu_item_indicator_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_submenu_item_indicator_border_border_border\":\"solid\",\"st_submenu_item_indicator_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_submenu_panel_background_background_color\":\"#FFFFFF\",\"st_hamburger_menu_icon_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_icon_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_close_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_hamburger_menu_close_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_hamburger_menu_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_menu_item_text_normal_color_responsive_tablet\":\"#6EC1E4\",\"st_menu_item_text_hover_color_responsive_tablet\":\"#54595F\",\"st_menu_item_text_active_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_close_background_background_color\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"#54595F\",\"st_hamburger_menu_position_responsive_mobile\":\"left\",\"st_hamburger_menu_close_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_hamburger_menu_close_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"st_mobile_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"st_menu_item_text_hover_color_responsive\":\"#54595F\",\"st_menu_item_text_active_color_responsive\":\"#54595F\",\"st_mobile_menu_object_fit_responsive_tablet\":\"cover\",\"st_mobile_menu_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_hamburger_menu_close_background_hover_background_background\":\"classic\",\"sg_menu_alignment_responsive\":\"center\",\"sg_menu_alignment_responsive_tablet\":\"flex-end\",\"sg_menu_alignment_responsive_mobile\":\"flex-end\",\"sg_menu_sub_position\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_z_index_mobile\":9999},\"elements\":[],\"widgetType\":\"jkit_nav_menu\"}],\"isInner\":true},{\"id\":\"2eb94bb5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.6580000000000012505552149377763271331787109375,\"align\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":80,\"hide_mobile\":\"hidden-phone\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align_tablet\":\"flex-end\"},\"elements\":[],\"isInner\":true},{\"id\":\"5ef5f227\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"234dd6d2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"align\":\"right\",\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=558fe58\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"hover_animation\":\"float\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1511,259,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1512,260,'_wp_page_template','default'),(1513,260,'_elementor_edit_mode','builder'),(1514,260,'_elementor_template_type','wp-post'),(1515,260,'_elementor_version','3.23.2'),(1516,260,'_elementor_data','[{\"id\":\"1ed2d9f1\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":3,\"blur\":15,\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.06)\"},\"background_background\":\"classic\",\"z_index\":1,\"jet_sticky_section_sticky\":\"yes\",\"jet_sticky_section_sticky_z_index\":\"10\",\"jet_sticky_section_sticky_background_background\":\"classic\",\"jet_sticky_section_sticky_background_color\":\"#FFFFFF\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"z_index_tablet\":4,\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"z_index_mobile\":0,\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=f01b239\"}},\"elements\":[{\"id\":\"5a58714b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80.3490000000000037516656448133289813995361328125,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":20,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"18bb12d6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-map-marker1-light\",\"library\":\"jkiticon\"},\"title_text\":\"\",\"description_text\":\"123 Wall St\\nMiami, FL 12345\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"none\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#EAEAEA\",\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\",\"description_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"secondary_color\":\"\",\"title_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"view\":\"framed\",\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#3F5A29\",\"title_color\":\"#00160E\",\"description_color\":\"#00160E\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"secondary_color\":\"#FFFFFF00\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Heebo\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"294dea9a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-phone-call-line\",\"library\":\"jkiticon\"},\"title_text\":\"\",\"description_text\":\"+1 505 555 5555\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\",\"description_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"secondary_color\":\"\",\"title_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"view\":\"framed\",\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"tel:+1 505 555 5555\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"primary_color\":\"#3F5A29\",\"secondary_color\":\"#FFFFFF00\",\"title_color\":\"#00160E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"description_color\":\"#00160E\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Heebo\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_border_border\":\"none\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#EAEAEA\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"5e047152\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":19.650999999999999801048033987171947956085205078125,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":30,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":80},\"elements\":[{\"id\":\"976c2f8\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"jki jki-facebook-f\",\"library\":\"jkiticon\"},\"_id\":\"0fb8cc7\"},{\"social_icon\":{\"value\":\"fab fa-x-twitter\",\"library\":\"fa-brands\"},\"_id\":\"4be5bc7\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"147010a\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"df2ad14\"}],\"shape\":\"circle\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"hover_animation\":\"shrink\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=secondary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_secondary_color\":\"globals\\/colors?id=accent\",\"hover_primary_color\":\"globals\\/colors?id=accent\"},\"align_tablet\":\"right\",\"hover_primary_color\":\"#006943\",\"hover_secondary_color\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65d61e79\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"z_index\":1,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":3,\"blur\":15,\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.06)\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"z_index_tablet\":4,\"z_index_mobile\":0},\"elements\":[{\"id\":\"49c5f53f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"z_index_tablet\":5,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7fd427a5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"z_index_mobile\":999},\"elements\":[{\"id\":\"a5ad795\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EAEAEA\"},\"elements\":[{\"id\":\"4b6500b7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":219,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-2.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":70}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"14c9c516\",\"elType\":\"widget\",\"settings\":{\"sg_menu_choose\":\"main-menu\",\"sg_mobile_menu_logo\":{\"id\":107,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_mobile_menu_logo_size_imagesize_size\":\"full\",\"sg_mobile_menu_icon\":{\"value\":\"jki jki-bars-solid\",\"library\":\"jkiticon\"},\"st_menu_wrapper_height_responsive\":{\"unit\":\"px\",\"size\":74,\"sizes\":[]},\"st_menu_wrapper_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"},\"st_submenu_item_indicator_margin_responsive\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_submenu_panel_padding_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_panel_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_background_background_background\":\"classic\",\"st_submenu_panel_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_position_responsive_tablet\":\"left\",\"st_hamburger_menu_icon_background_background_background\":\"classic\",\"st_hamburger_menu_icon_background_background_color\":\"#FFFFFF00\",\"st_hamburger_menu_icon_border_border_border\":\"solid\",\"st_hamburger_menu_icon_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_hamburger_menu_close_background_background_background\":\"classic\",\"st_hamburger_menu_close_border_border_border\":\"solid\",\"st_hamburger_menu_close_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"st_menu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_menu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_color_responsive\":\"\",\"st_submenu_panel_background_background_color\":\"\",\"st_submenu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_submenu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_wrapper_mobile_color_tablet_responsive_tablet\":\"\",\"st_menu_item_text_normal_color_responsive_tablet\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_item_text_active_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_submenu_item_indicator_color_responsive_tablet\":\"\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_icon_color_hover_responsive_tablet\":\"\",\"st_hamburger_menu_close_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_close_color_hover_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_wrapper_background_background_color\":\"\",\"st_hamburger_menu_close_background_background_color\":\"globals\\/colors?id=secondary\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_border_border_color\":\"\",\"st_hamburger_menu_close_background_hover_background_color\":\"globals\\/colors?id=accent\"},\"st_submenu_panel_box_shadow_box_shadow_box_shadow_type\":\"yes\",\"st_submenu_panel_box_shadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_submenu_item_indicator_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_submenu_item_indicator_border_border_border\":\"solid\",\"st_submenu_item_indicator_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_submenu_panel_background_background_color\":\"#FFFFFF\",\"st_hamburger_menu_icon_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_icon_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_close_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_hamburger_menu_close_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_hamburger_menu_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_menu_item_text_normal_color_responsive_tablet\":\"#6EC1E4\",\"st_menu_item_text_hover_color_responsive_tablet\":\"#54595F\",\"st_menu_item_text_active_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_close_background_background_color\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"#54595F\",\"st_hamburger_menu_position_responsive_mobile\":\"left\",\"st_hamburger_menu_close_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_hamburger_menu_close_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"st_mobile_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"st_menu_item_text_hover_color_responsive\":\"#54595F\",\"st_menu_item_text_active_color_responsive\":\"#54595F\",\"st_mobile_menu_object_fit_responsive_tablet\":\"cover\",\"st_mobile_menu_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_hamburger_menu_close_background_hover_background_background\":\"classic\",\"sg_menu_alignment_responsive\":\"center\",\"sg_menu_alignment_responsive_tablet\":\"flex-end\",\"sg_menu_alignment_responsive_mobile\":\"flex-end\",\"sg_menu_sub_position\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_z_index_mobile\":9999},\"elements\":[],\"widgetType\":\"jkit_nav_menu\"}],\"isInner\":true},{\"id\":\"2eb94bb5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.6580000000000012505552149377763271331787109375,\"align\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":80,\"hide_mobile\":\"hidden-phone\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align_tablet\":\"flex-end\"},\"elements\":[],\"isInner\":true},{\"id\":\"5ef5f227\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"234dd6d2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"align\":\"right\",\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=558fe58\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"hover_animation\":\"float\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1517,260,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1518,261,'_wp_page_template','default'),(1519,261,'_elementor_edit_mode','builder'),(1520,261,'_elementor_template_type','wp-post'),(1521,261,'_elementor_version','3.23.2'),(1522,261,'_elementor_data','[{\"id\":\"1ed2d9f1\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":3,\"blur\":15,\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.06)\"},\"background_background\":\"classic\",\"z_index\":1,\"jet_sticky_section_sticky\":\"yes\",\"jet_sticky_section_sticky_z_index\":\"10\",\"jet_sticky_section_sticky_background_background\":\"classic\",\"jet_sticky_section_sticky_background_color\":\"#FFFFFF\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"z_index_tablet\":4,\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"z_index_mobile\":0,\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=f01b239\"}},\"elements\":[{\"id\":\"5a58714b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80.3490000000000037516656448133289813995361328125,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":20,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"18bb12d6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-map-marker1-light\",\"library\":\"jkiticon\"},\"title_text\":\"\",\"description_text\":\"123 Wall St\\nMiami, FL 12345\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"none\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#EAEAEA\",\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\",\"description_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"secondary_color\":\"\",\"title_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"view\":\"framed\",\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#3F5A29\",\"title_color\":\"#00160E\",\"description_color\":\"#00160E\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"secondary_color\":\"#FFFFFF00\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Heebo\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"294dea9a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-phone-call-line\",\"library\":\"jkiticon\"},\"title_text\":\"\",\"description_text\":\"+1 505 555 5555\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\",\"description_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"secondary_color\":\"\",\"title_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"view\":\"framed\",\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"tel:+1 505 555 5555\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"primary_color\":\"#3F5A29\",\"secondary_color\":\"#FFFFFF00\",\"title_color\":\"#00160E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"description_color\":\"#00160E\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Heebo\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_border_border\":\"none\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#EAEAEA\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"5e047152\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":19.650999999999999801048033987171947956085205078125,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":30,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":80},\"elements\":[{\"id\":\"976c2f8\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"jki jki-facebook-f\",\"library\":\"jkiticon\"},\"_id\":\"0fb8cc7\"},{\"social_icon\":{\"value\":\"fab fa-x-twitter\",\"library\":\"fa-brands\"},\"_id\":\"4be5bc7\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"147010a\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"df2ad14\"}],\"shape\":\"circle\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"hover_animation\":\"shrink\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=secondary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_secondary_color\":\"globals\\/colors?id=accent\",\"hover_primary_color\":\"globals\\/colors?id=accent\"},\"align_tablet\":\"right\",\"hover_primary_color\":\"#006943\",\"hover_secondary_color\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65d61e79\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"z_index\":1,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":3,\"blur\":15,\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.06)\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"z_index_tablet\":4,\"z_index_mobile\":0},\"elements\":[{\"id\":\"49c5f53f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"z_index_tablet\":5,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7fd427a5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"z_index_mobile\":999},\"elements\":[{\"id\":\"a5ad795\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EAEAEA\"},\"elements\":[{\"id\":\"4b6500b7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":219,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-2.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":70}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2eb94bb5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.6580000000000012505552149377763271331787109375,\"align\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":80,\"hide_mobile\":\"hidden-phone\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align_tablet\":\"flex-end\"},\"elements\":[{\"id\":\"14c9c516\",\"elType\":\"widget\",\"settings\":{\"sg_menu_choose\":\"main-menu\",\"sg_mobile_menu_logo\":{\"id\":107,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_mobile_menu_logo_size_imagesize_size\":\"full\",\"sg_mobile_menu_icon\":{\"value\":\"jki jki-bars-solid\",\"library\":\"jkiticon\"},\"st_menu_wrapper_height_responsive\":{\"unit\":\"px\",\"size\":74,\"sizes\":[]},\"st_menu_wrapper_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"},\"st_submenu_item_indicator_margin_responsive\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_submenu_panel_padding_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_panel_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_background_background_background\":\"classic\",\"st_submenu_panel_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_position_responsive_tablet\":\"left\",\"st_hamburger_menu_icon_background_background_background\":\"classic\",\"st_hamburger_menu_icon_background_background_color\":\"#FFFFFF00\",\"st_hamburger_menu_icon_border_border_border\":\"solid\",\"st_hamburger_menu_icon_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_hamburger_menu_close_background_background_background\":\"classic\",\"st_hamburger_menu_close_border_border_border\":\"solid\",\"st_hamburger_menu_close_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"st_menu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_menu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_color_responsive\":\"\",\"st_submenu_panel_background_background_color\":\"\",\"st_submenu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_submenu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_wrapper_mobile_color_tablet_responsive_tablet\":\"\",\"st_menu_item_text_normal_color_responsive_tablet\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_item_text_active_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_submenu_item_indicator_color_responsive_tablet\":\"\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_icon_color_hover_responsive_tablet\":\"\",\"st_hamburger_menu_close_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_close_color_hover_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_wrapper_background_background_color\":\"\",\"st_hamburger_menu_close_background_background_color\":\"globals\\/colors?id=secondary\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_border_border_color\":\"\",\"st_hamburger_menu_close_background_hover_background_color\":\"globals\\/colors?id=accent\"},\"st_submenu_panel_box_shadow_box_shadow_box_shadow_type\":\"yes\",\"st_submenu_panel_box_shadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_submenu_item_indicator_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_submenu_item_indicator_border_border_border\":\"solid\",\"st_submenu_item_indicator_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_submenu_panel_background_background_color\":\"#FFFFFF\",\"st_hamburger_menu_icon_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_icon_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_close_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_hamburger_menu_close_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_hamburger_menu_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_menu_item_text_normal_color_responsive_tablet\":\"#6EC1E4\",\"st_menu_item_text_hover_color_responsive_tablet\":\"#54595F\",\"st_menu_item_text_active_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_close_background_background_color\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"#54595F\",\"st_hamburger_menu_position_responsive_mobile\":\"left\",\"st_hamburger_menu_close_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_hamburger_menu_close_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"st_mobile_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"st_menu_item_text_hover_color_responsive\":\"#54595F\",\"st_menu_item_text_active_color_responsive\":\"#54595F\",\"st_mobile_menu_object_fit_responsive_tablet\":\"cover\",\"st_mobile_menu_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_hamburger_menu_close_background_hover_background_background\":\"classic\",\"sg_menu_alignment_responsive\":\"center\",\"sg_menu_alignment_responsive_tablet\":\"flex-end\",\"sg_menu_alignment_responsive_mobile\":\"flex-end\",\"sg_menu_sub_position\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_z_index_mobile\":9999},\"elements\":[],\"widgetType\":\"jkit_nav_menu\"}],\"isInner\":true},{\"id\":\"5ef5f227\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"234dd6d2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"align\":\"right\",\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=558fe58\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"hover_animation\":\"float\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1523,261,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1524,262,'_wp_page_template','default'),(1525,262,'_elementor_edit_mode','builder'),(1526,262,'_elementor_template_type','wp-post'),(1527,262,'_elementor_version','3.23.2'),(1528,262,'_elementor_data','[{\"id\":\"1ed2d9f1\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":3,\"blur\":15,\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.06)\"},\"background_background\":\"classic\",\"z_index\":1,\"jet_sticky_section_sticky\":\"yes\",\"jet_sticky_section_sticky_z_index\":\"10\",\"jet_sticky_section_sticky_background_background\":\"classic\",\"jet_sticky_section_sticky_background_color\":\"#FFFFFF\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"z_index_tablet\":4,\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"z_index_mobile\":0,\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=f01b239\"}},\"elements\":[{\"id\":\"5a58714b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80.3490000000000037516656448133289813995361328125,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":20,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"18bb12d6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-map-marker1-light\",\"library\":\"jkiticon\"},\"title_text\":\"\",\"description_text\":\"123 Wall St\\nMiami, FL 12345\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"none\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#EAEAEA\",\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\",\"description_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"secondary_color\":\"\",\"title_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"view\":\"framed\",\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#3F5A29\",\"title_color\":\"#00160E\",\"description_color\":\"#00160E\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"secondary_color\":\"#FFFFFF00\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Heebo\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"294dea9a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-phone-call-line\",\"library\":\"jkiticon\"},\"title_text\":\"\",\"description_text\":\"+1 505 555 5555\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\",\"description_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"secondary_color\":\"\",\"title_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"view\":\"framed\",\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"tel:+1 505 555 5555\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"primary_color\":\"#3F5A29\",\"secondary_color\":\"#FFFFFF00\",\"title_color\":\"#00160E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"description_color\":\"#00160E\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Heebo\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_border_border\":\"none\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#EAEAEA\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"5e047152\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":19.650999999999999801048033987171947956085205078125,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":30,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":80},\"elements\":[{\"id\":\"976c2f8\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"jki jki-facebook-f\",\"library\":\"jkiticon\"},\"_id\":\"0fb8cc7\"},{\"social_icon\":{\"value\":\"fab fa-x-twitter\",\"library\":\"fa-brands\"},\"_id\":\"4be5bc7\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"147010a\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"df2ad14\"}],\"shape\":\"circle\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"hover_animation\":\"shrink\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=secondary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_secondary_color\":\"globals\\/colors?id=accent\",\"hover_primary_color\":\"globals\\/colors?id=accent\"},\"align_tablet\":\"right\",\"hover_primary_color\":\"#006943\",\"hover_secondary_color\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65d61e79\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"z_index\":1,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":3,\"blur\":15,\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.06)\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"z_index_tablet\":4,\"z_index_mobile\":0},\"elements\":[{\"id\":\"49c5f53f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"z_index_tablet\":5,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7fd427a5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"z_index_mobile\":999},\"elements\":[{\"id\":\"a5ad795\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EAEAEA\"},\"elements\":[{\"id\":\"4b6500b7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":219,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-2.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":70}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2eb94bb5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.6580000000000012505552149377763271331787109375,\"align\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":80,\"hide_mobile\":\"hidden-phone\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align_tablet\":\"flex-end\"},\"elements\":[{\"id\":\"14c9c516\",\"elType\":\"widget\",\"settings\":{\"sg_menu_choose\":\"main-menu\",\"sg_mobile_menu_logo\":{\"id\":107,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_mobile_menu_logo_size_imagesize_size\":\"full\",\"sg_mobile_menu_icon\":{\"value\":\"jki jki-bars-solid\",\"library\":\"jkiticon\"},\"st_menu_wrapper_height_responsive\":{\"unit\":\"px\",\"size\":74,\"sizes\":[]},\"st_menu_wrapper_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"},\"st_submenu_item_indicator_margin_responsive\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_submenu_panel_padding_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_panel_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_background_background_background\":\"classic\",\"st_submenu_panel_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_position_responsive_tablet\":\"left\",\"st_hamburger_menu_icon_background_background_background\":\"classic\",\"st_hamburger_menu_icon_background_background_color\":\"#FFFFFF00\",\"st_hamburger_menu_icon_border_border_border\":\"solid\",\"st_hamburger_menu_icon_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_hamburger_menu_close_background_background_background\":\"classic\",\"st_hamburger_menu_close_border_border_border\":\"solid\",\"st_hamburger_menu_close_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"st_menu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_menu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_color_responsive\":\"\",\"st_submenu_panel_background_background_color\":\"\",\"st_submenu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_submenu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_wrapper_mobile_color_tablet_responsive_tablet\":\"\",\"st_menu_item_text_normal_color_responsive_tablet\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_item_text_active_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_submenu_item_indicator_color_responsive_tablet\":\"\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_icon_color_hover_responsive_tablet\":\"\",\"st_hamburger_menu_close_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_close_color_hover_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_wrapper_background_background_color\":\"\",\"st_hamburger_menu_close_background_background_color\":\"globals\\/colors?id=secondary\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_border_border_color\":\"\",\"st_hamburger_menu_close_background_hover_background_color\":\"globals\\/colors?id=accent\"},\"st_submenu_panel_box_shadow_box_shadow_box_shadow_type\":\"yes\",\"st_submenu_panel_box_shadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_submenu_item_indicator_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_submenu_item_indicator_border_border_border\":\"solid\",\"st_submenu_item_indicator_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_submenu_panel_background_background_color\":\"#FFFFFF\",\"st_hamburger_menu_icon_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_icon_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_close_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_hamburger_menu_close_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_hamburger_menu_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_menu_item_text_normal_color_responsive_tablet\":\"#6EC1E4\",\"st_menu_item_text_hover_color_responsive_tablet\":\"#54595F\",\"st_menu_item_text_active_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_close_background_background_color\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"#54595F\",\"st_hamburger_menu_position_responsive_mobile\":\"left\",\"st_hamburger_menu_close_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_hamburger_menu_close_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"st_mobile_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"st_menu_item_text_hover_color_responsive\":\"#54595F\",\"st_menu_item_text_active_color_responsive\":\"#54595F\",\"st_mobile_menu_object_fit_responsive_tablet\":\"cover\",\"st_mobile_menu_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_hamburger_menu_close_background_hover_background_background\":\"classic\",\"sg_menu_alignment_responsive\":\"center\",\"sg_menu_alignment_responsive_tablet\":\"flex-end\",\"sg_menu_alignment_responsive_mobile\":\"flex-end\",\"sg_menu_sub_position\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_z_index_mobile\":9999},\"elements\":[],\"widgetType\":\"jkit_nav_menu\"}],\"isInner\":true},{\"id\":\"5ef5f227\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"234dd6d2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"align\":\"right\",\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=558fe58\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"hover_animation\":\"float\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1529,262,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1530,263,'_wp_page_template','default'),(1531,263,'_elementor_edit_mode','builder'),(1532,263,'_elementor_template_type','wp-post'),(1533,263,'_elementor_version','3.23.2'),(1534,263,'_elementor_data','[{\"id\":\"1ed2d9f1\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":3,\"blur\":15,\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.06)\"},\"background_background\":\"classic\",\"z_index\":1,\"jet_sticky_section_sticky\":\"yes\",\"jet_sticky_section_sticky_z_index\":\"10\",\"jet_sticky_section_sticky_background_background\":\"classic\",\"jet_sticky_section_sticky_background_color\":\"#FFFFFF\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"z_index_tablet\":4,\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"z_index_mobile\":0,\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=f01b239\"}},\"elements\":[{\"id\":\"5a58714b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80.3490000000000037516656448133289813995361328125,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":20,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"18bb12d6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-map-marker1-light\",\"library\":\"jkiticon\"},\"title_text\":\"\",\"description_text\":\"123 Wall St\\nMiami, FL 12345\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"none\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#EAEAEA\",\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\",\"description_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"secondary_color\":\"\",\"title_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"view\":\"framed\",\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#3F5A29\",\"title_color\":\"#00160E\",\"description_color\":\"#00160E\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"secondary_color\":\"#FFFFFF00\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Heebo\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"294dea9a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-phone-call-line\",\"library\":\"jkiticon\"},\"title_text\":\"\",\"description_text\":\"+1 505 555 5555\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\",\"description_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"secondary_color\":\"\",\"title_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"view\":\"framed\",\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"tel:+1 505 555 5555\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"primary_color\":\"#3F5A29\",\"secondary_color\":\"#FFFFFF00\",\"title_color\":\"#00160E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"description_color\":\"#00160E\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Heebo\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_border_border\":\"none\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#EAEAEA\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"5e047152\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":19.650999999999999801048033987171947956085205078125,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":30,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":80},\"elements\":[{\"id\":\"976c2f8\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"jki jki-facebook-f\",\"library\":\"jkiticon\"},\"_id\":\"0fb8cc7\"},{\"social_icon\":{\"value\":\"fab fa-x-twitter\",\"library\":\"fa-brands\"},\"_id\":\"4be5bc7\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"147010a\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"df2ad14\"}],\"shape\":\"circle\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"hover_animation\":\"shrink\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=secondary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_secondary_color\":\"globals\\/colors?id=accent\",\"hover_primary_color\":\"globals\\/colors?id=accent\"},\"align_tablet\":\"right\",\"hover_primary_color\":\"#006943\",\"hover_secondary_color\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65d61e79\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"z_index\":1,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":3,\"blur\":15,\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.06)\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"z_index_tablet\":4,\"z_index_mobile\":0},\"elements\":[{\"id\":\"49c5f53f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"z_index_tablet\":5,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7fd427a5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"z_index_mobile\":999},\"elements\":[{\"id\":\"a5ad795\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EAEAEA\"},\"elements\":[{\"id\":\"4b6500b7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":219,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-2.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":70}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2eb94bb5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.6580000000000012505552149377763271331787109375,\"align\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":80,\"hide_mobile\":\"hidden-phone\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align_tablet\":\"flex-end\"},\"elements\":[{\"id\":\"14c9c516\",\"elType\":\"widget\",\"settings\":{\"sg_menu_choose\":\"main-menu\",\"sg_mobile_menu_logo\":{\"id\":107,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_mobile_menu_logo_size_imagesize_size\":\"full\",\"sg_mobile_menu_icon\":{\"value\":\"jki jki-bars-solid\",\"library\":\"jkiticon\"},\"st_menu_wrapper_height_responsive\":{\"unit\":\"px\",\"size\":74,\"sizes\":[]},\"st_menu_wrapper_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"},\"st_submenu_item_indicator_margin_responsive\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_submenu_panel_padding_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_panel_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_background_background_background\":\"classic\",\"st_submenu_panel_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_position_responsive_tablet\":\"left\",\"st_hamburger_menu_icon_background_background_background\":\"classic\",\"st_hamburger_menu_icon_background_background_color\":\"#FFFFFF00\",\"st_hamburger_menu_icon_border_border_border\":\"solid\",\"st_hamburger_menu_icon_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_hamburger_menu_close_background_background_background\":\"classic\",\"st_hamburger_menu_close_border_border_border\":\"solid\",\"st_hamburger_menu_close_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"st_menu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_menu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_color_responsive\":\"\",\"st_submenu_panel_background_background_color\":\"\",\"st_submenu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_submenu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_wrapper_mobile_color_tablet_responsive_tablet\":\"\",\"st_menu_item_text_normal_color_responsive_tablet\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_item_text_active_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_submenu_item_indicator_color_responsive_tablet\":\"\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_icon_color_hover_responsive_tablet\":\"\",\"st_hamburger_menu_close_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_close_color_hover_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_wrapper_background_background_color\":\"\",\"st_hamburger_menu_close_background_background_color\":\"globals\\/colors?id=secondary\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_border_border_color\":\"\",\"st_hamburger_menu_close_background_hover_background_color\":\"globals\\/colors?id=accent\"},\"st_submenu_panel_box_shadow_box_shadow_box_shadow_type\":\"yes\",\"st_submenu_panel_box_shadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_submenu_item_indicator_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_submenu_item_indicator_border_border_border\":\"solid\",\"st_submenu_item_indicator_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_submenu_panel_background_background_color\":\"#FFFFFF\",\"st_hamburger_menu_icon_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_icon_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_close_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_hamburger_menu_close_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_hamburger_menu_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_menu_item_text_normal_color_responsive_tablet\":\"#6EC1E4\",\"st_menu_item_text_hover_color_responsive_tablet\":\"#54595F\",\"st_menu_item_text_active_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_close_background_background_color\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"#54595F\",\"st_hamburger_menu_position_responsive_mobile\":\"left\",\"st_hamburger_menu_close_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_hamburger_menu_close_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"st_mobile_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"st_menu_item_text_hover_color_responsive\":\"#54595F\",\"st_menu_item_text_active_color_responsive\":\"#54595F\",\"st_mobile_menu_object_fit_responsive_tablet\":\"cover\",\"st_mobile_menu_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_hamburger_menu_close_background_hover_background_background\":\"classic\",\"sg_menu_alignment_responsive\":\"center\",\"sg_menu_alignment_responsive_tablet\":\"flex-end\",\"sg_menu_alignment_responsive_mobile\":\"flex-end\",\"sg_menu_sub_position\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_z_index_mobile\":9999},\"elements\":[],\"widgetType\":\"jkit_nav_menu\"}],\"isInner\":true},{\"id\":\"5ef5f227\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"234dd6d2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"align\":\"right\",\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=558fe58\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"hover_animation\":\"float\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1535,263,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1536,264,'_wp_page_template','default'),(1537,264,'_elementor_edit_mode','builder'),(1538,264,'_elementor_template_type','wp-post'),(1539,264,'_elementor_version','3.23.2'),(1540,264,'_elementor_data','[{\"id\":\"1ed2d9f1\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":3,\"blur\":15,\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.06)\"},\"background_background\":\"classic\",\"z_index\":1,\"jet_sticky_section_sticky\":\"yes\",\"jet_sticky_section_sticky_z_index\":\"10\",\"jet_sticky_section_sticky_background_background\":\"classic\",\"jet_sticky_section_sticky_background_color\":\"#FFFFFF\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"z_index_tablet\":4,\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"z_index_mobile\":0,\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=f01b239\"}},\"elements\":[{\"id\":\"5a58714b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80.3490000000000037516656448133289813995361328125,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":20,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"18bb12d6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-map-marker1-light\",\"library\":\"jkiticon\"},\"title_text\":\"\",\"description_text\":\"123 Wall St\\nMiami, FL 12345\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"none\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#EAEAEA\",\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\",\"description_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"secondary_color\":\"\",\"title_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"view\":\"framed\",\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#3F5A29\",\"title_color\":\"#00160E\",\"description_color\":\"#00160E\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"secondary_color\":\"#FFFFFF00\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Heebo\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"294dea9a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-phone-call-line\",\"library\":\"jkiticon\"},\"title_text\":\"\",\"description_text\":\"+1 505 555 5555\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\",\"description_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"secondary_color\":\"\",\"title_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"view\":\"framed\",\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"tel:+1 505 555 5555\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"primary_color\":\"#3F5A29\",\"secondary_color\":\"#FFFFFF00\",\"title_color\":\"#00160E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"description_color\":\"#00160E\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Heebo\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_border_border\":\"none\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#EAEAEA\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"5e047152\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":19.650999999999999801048033987171947956085205078125,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":30,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":80},\"elements\":[{\"id\":\"976c2f8\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"jki jki-facebook-f\",\"library\":\"jkiticon\"},\"_id\":\"0fb8cc7\"},{\"social_icon\":{\"value\":\"fab fa-x-twitter\",\"library\":\"fa-brands\"},\"_id\":\"4be5bc7\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"147010a\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"df2ad14\"}],\"shape\":\"circle\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"hover_animation\":\"shrink\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=secondary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_secondary_color\":\"globals\\/colors?id=accent\",\"hover_primary_color\":\"globals\\/colors?id=accent\"},\"align_tablet\":\"right\",\"hover_primary_color\":\"#006943\",\"hover_secondary_color\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65d61e79\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"z_index\":1,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":3,\"blur\":15,\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.06)\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"z_index_tablet\":4,\"z_index_mobile\":0,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"49c5f53f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"z_index_tablet\":5,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7fd427a5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"z_index_mobile\":999},\"elements\":[{\"id\":\"a5ad795\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EAEAEA\"},\"elements\":[{\"id\":\"4b6500b7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":219,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-2.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":70}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2eb94bb5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.6580000000000012505552149377763271331787109375,\"align\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":80,\"hide_mobile\":\"hidden-phone\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align_tablet\":\"flex-end\"},\"elements\":[{\"id\":\"14c9c516\",\"elType\":\"widget\",\"settings\":{\"sg_menu_choose\":\"main-menu\",\"sg_mobile_menu_logo\":{\"id\":107,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_mobile_menu_logo_size_imagesize_size\":\"full\",\"sg_mobile_menu_icon\":{\"value\":\"jki jki-bars-solid\",\"library\":\"jkiticon\"},\"st_menu_wrapper_height_responsive\":{\"unit\":\"px\",\"size\":74,\"sizes\":[]},\"st_menu_wrapper_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"},\"st_submenu_item_indicator_margin_responsive\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_submenu_panel_padding_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_panel_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_background_background_background\":\"classic\",\"st_submenu_panel_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_position_responsive_tablet\":\"left\",\"st_hamburger_menu_icon_background_background_background\":\"classic\",\"st_hamburger_menu_icon_background_background_color\":\"#FFFFFF00\",\"st_hamburger_menu_icon_border_border_border\":\"solid\",\"st_hamburger_menu_icon_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_hamburger_menu_close_background_background_background\":\"classic\",\"st_hamburger_menu_close_border_border_border\":\"solid\",\"st_hamburger_menu_close_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"st_menu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_menu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_color_responsive\":\"\",\"st_submenu_panel_background_background_color\":\"\",\"st_submenu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_submenu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_wrapper_mobile_color_tablet_responsive_tablet\":\"\",\"st_menu_item_text_normal_color_responsive_tablet\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_item_text_active_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_submenu_item_indicator_color_responsive_tablet\":\"\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_icon_color_hover_responsive_tablet\":\"\",\"st_hamburger_menu_close_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_close_color_hover_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_wrapper_background_background_color\":\"\",\"st_hamburger_menu_close_background_background_color\":\"globals\\/colors?id=secondary\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_border_border_color\":\"\",\"st_hamburger_menu_close_background_hover_background_color\":\"globals\\/colors?id=accent\"},\"st_submenu_panel_box_shadow_box_shadow_box_shadow_type\":\"yes\",\"st_submenu_panel_box_shadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_submenu_item_indicator_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_submenu_item_indicator_border_border_border\":\"solid\",\"st_submenu_item_indicator_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_submenu_panel_background_background_color\":\"#FFFFFF\",\"st_hamburger_menu_icon_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_icon_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_close_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_hamburger_menu_close_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_hamburger_menu_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_menu_item_text_normal_color_responsive_tablet\":\"#6EC1E4\",\"st_menu_item_text_hover_color_responsive_tablet\":\"#54595F\",\"st_menu_item_text_active_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_close_background_background_color\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"#54595F\",\"st_hamburger_menu_position_responsive_mobile\":\"left\",\"st_hamburger_menu_close_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_hamburger_menu_close_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"st_mobile_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"st_menu_item_text_hover_color_responsive\":\"#54595F\",\"st_menu_item_text_active_color_responsive\":\"#54595F\",\"st_mobile_menu_object_fit_responsive_tablet\":\"cover\",\"st_mobile_menu_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_hamburger_menu_close_background_hover_background_background\":\"classic\",\"sg_menu_alignment_responsive\":\"center\",\"sg_menu_alignment_responsive_tablet\":\"flex-end\",\"sg_menu_alignment_responsive_mobile\":\"flex-end\",\"sg_menu_sub_position\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_z_index_mobile\":9999},\"elements\":[],\"widgetType\":\"jkit_nav_menu\"}],\"isInner\":true},{\"id\":\"5ef5f227\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"234dd6d2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"align\":\"right\",\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=558fe58\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"hover_animation\":\"float\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"00bb017\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"z_index\":1,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":3,\"blur\":15,\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.06)\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"z_index_tablet\":4,\"z_index_mobile\":0,\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[{\"id\":\"05b35c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"z_index_tablet\":5,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"817d99c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"f9871fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"b9b486a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-2.png\",\"id\":219,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2c526\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\",\"align_mobile\":\"flex-end\"},\"elements\":[{\"id\":\"665fe6d\",\"elType\":\"widget\",\"settings\":{\"sg_menu_choose\":\"main-menu\",\"sg_mobile_menu_logo\":{\"id\":107,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_mobile_menu_logo_size_imagesize_size\":\"full\",\"sg_mobile_menu_icon\":{\"value\":\"jki jki-bars-solid\",\"library\":\"jkiticon\"},\"st_menu_wrapper_height_responsive\":{\"unit\":\"px\",\"size\":74,\"sizes\":[]},\"st_menu_wrapper_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"},\"st_submenu_item_indicator_margin_responsive\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_submenu_panel_padding_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_panel_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_background_background_background\":\"classic\",\"st_submenu_panel_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_position_responsive_tablet\":\"left\",\"st_hamburger_menu_icon_background_background_background\":\"classic\",\"st_hamburger_menu_icon_background_background_color\":\"#FFFFFF00\",\"st_hamburger_menu_icon_border_border_border\":\"solid\",\"st_hamburger_menu_icon_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_hamburger_menu_close_background_background_background\":\"classic\",\"st_hamburger_menu_close_border_border_border\":\"solid\",\"st_hamburger_menu_close_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"st_menu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_menu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_color_responsive\":\"\",\"st_submenu_panel_background_background_color\":\"\",\"st_submenu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_submenu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_wrapper_mobile_color_tablet_responsive_tablet\":\"\",\"st_menu_item_text_normal_color_responsive_tablet\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_item_text_active_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_submenu_item_indicator_color_responsive_tablet\":\"\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_icon_color_hover_responsive_tablet\":\"\",\"st_hamburger_menu_close_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_close_color_hover_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_wrapper_background_background_color\":\"\",\"st_hamburger_menu_close_background_background_color\":\"globals\\/colors?id=secondary\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_border_border_color\":\"\",\"st_hamburger_menu_close_background_hover_background_color\":\"globals\\/colors?id=accent\"},\"st_submenu_panel_box_shadow_box_shadow_box_shadow_type\":\"yes\",\"st_submenu_panel_box_shadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_submenu_item_indicator_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_submenu_item_indicator_border_border_border\":\"solid\",\"st_submenu_item_indicator_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_submenu_panel_background_background_color\":\"#FFFFFF\",\"st_hamburger_menu_icon_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_icon_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_close_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_hamburger_menu_close_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_hamburger_menu_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_menu_item_text_normal_color_responsive_tablet\":\"#6EC1E4\",\"st_menu_item_text_hover_color_responsive_tablet\":\"#54595F\",\"st_menu_item_text_active_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_close_background_background_color\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"#54595F\",\"st_hamburger_menu_position_responsive_mobile\":\"left\",\"st_hamburger_menu_close_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_hamburger_menu_close_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"st_mobile_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"st_menu_item_text_hover_color_responsive\":\"#54595F\",\"st_menu_item_text_active_color_responsive\":\"#54595F\",\"st_mobile_menu_object_fit_responsive_tablet\":\"cover\",\"st_mobile_menu_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_hamburger_menu_close_background_hover_background_background\":\"classic\",\"sg_menu_alignment_responsive\":\"center\",\"sg_menu_alignment_responsive_tablet\":\"flex-end\",\"sg_menu_alignment_responsive_mobile\":\"flex-end\",\"sg_menu_sub_position\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_nav_menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1541,264,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1543,49,'_elementor_css','a:6:{s:4:\"time\";i:1721837696;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:3:{i:0;s:8:\"fa-solid\";i:10;s:8:\"jkiticon\";i:11;s:9:\"fa-brands\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1544,265,'_wp_page_template','default'),(1545,265,'_elementor_edit_mode','builder'),(1546,265,'_elementor_template_type','wp-post'),(1547,265,'_elementor_version','3.23.2'); INSERT INTO `victorq_postmeta` VALUES (1548,265,'_elementor_data','[{\"id\":\"1ed2d9f1\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":3,\"blur\":15,\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.06)\"},\"background_background\":\"classic\",\"z_index\":1,\"jet_sticky_section_sticky\":\"yes\",\"jet_sticky_section_sticky_z_index\":\"10\",\"jet_sticky_section_sticky_background_background\":\"classic\",\"jet_sticky_section_sticky_background_color\":\"#FFFFFF\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"z_index_tablet\":4,\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"z_index_mobile\":0,\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=f01b239\"}},\"elements\":[{\"id\":\"5a58714b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80.3490000000000037516656448133289813995361328125,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":20,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"18bb12d6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-map-marker1-light\",\"library\":\"jkiticon\"},\"title_text\":\"\",\"description_text\":\"123 Wall St\\nMiami, FL 12345\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"none\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#EAEAEA\",\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\",\"description_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"secondary_color\":\"\",\"title_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"view\":\"framed\",\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#3F5A29\",\"title_color\":\"#00160E\",\"description_color\":\"#00160E\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"secondary_color\":\"#FFFFFF00\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Heebo\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"294dea9a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-phone-call-line\",\"library\":\"jkiticon\"},\"title_text\":\"\",\"description_text\":\"+1 505 555 5555\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\",\"description_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"secondary_color\":\"\",\"title_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"view\":\"framed\",\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"tel:+1 505 555 5555\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"primary_color\":\"#3F5A29\",\"secondary_color\":\"#FFFFFF00\",\"title_color\":\"#00160E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"description_color\":\"#00160E\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Heebo\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_border_border\":\"none\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#EAEAEA\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"5e047152\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":19.650999999999999801048033987171947956085205078125,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":30,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":80},\"elements\":[{\"id\":\"976c2f8\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"jki jki-facebook-f\",\"library\":\"jkiticon\"},\"_id\":\"0fb8cc7\"},{\"social_icon\":{\"value\":\"fab fa-x-twitter\",\"library\":\"fa-brands\"},\"_id\":\"4be5bc7\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"147010a\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"df2ad14\"}],\"shape\":\"circle\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"hover_animation\":\"shrink\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=secondary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_secondary_color\":\"globals\\/colors?id=accent\",\"hover_primary_color\":\"globals\\/colors?id=accent\"},\"align_tablet\":\"right\",\"hover_primary_color\":\"#006943\",\"hover_secondary_color\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65d61e79\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"z_index\":1,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":3,\"blur\":15,\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.06)\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"z_index_tablet\":4,\"z_index_mobile\":0,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"49c5f53f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"z_index_tablet\":5,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7fd427a5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"z_index_mobile\":999},\"elements\":[{\"id\":\"a5ad795\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EAEAEA\"},\"elements\":[{\"id\":\"4b6500b7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":219,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-2.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":70}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2eb94bb5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.6580000000000012505552149377763271331787109375,\"align\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":80,\"hide_mobile\":\"hidden-phone\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align_tablet\":\"flex-end\"},\"elements\":[{\"id\":\"14c9c516\",\"elType\":\"widget\",\"settings\":{\"sg_menu_choose\":\"main-menu\",\"sg_mobile_menu_logo\":{\"id\":107,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_mobile_menu_logo_size_imagesize_size\":\"full\",\"sg_mobile_menu_icon\":{\"value\":\"jki jki-bars-solid\",\"library\":\"jkiticon\"},\"st_menu_wrapper_height_responsive\":{\"unit\":\"px\",\"size\":74,\"sizes\":[]},\"st_menu_wrapper_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"},\"st_submenu_item_indicator_margin_responsive\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_submenu_panel_padding_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_panel_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_background_background_background\":\"classic\",\"st_submenu_panel_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_position_responsive_tablet\":\"left\",\"st_hamburger_menu_icon_background_background_background\":\"classic\",\"st_hamburger_menu_icon_background_background_color\":\"#FFFFFF00\",\"st_hamburger_menu_icon_border_border_border\":\"solid\",\"st_hamburger_menu_icon_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_hamburger_menu_close_background_background_background\":\"classic\",\"st_hamburger_menu_close_border_border_border\":\"solid\",\"st_hamburger_menu_close_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"st_menu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_menu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_color_responsive\":\"\",\"st_submenu_panel_background_background_color\":\"\",\"st_submenu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_submenu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_wrapper_mobile_color_tablet_responsive_tablet\":\"\",\"st_menu_item_text_normal_color_responsive_tablet\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_item_text_active_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_submenu_item_indicator_color_responsive_tablet\":\"\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_icon_color_hover_responsive_tablet\":\"\",\"st_hamburger_menu_close_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_close_color_hover_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_wrapper_background_background_color\":\"\",\"st_hamburger_menu_close_background_background_color\":\"globals\\/colors?id=secondary\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_border_border_color\":\"\",\"st_hamburger_menu_close_background_hover_background_color\":\"globals\\/colors?id=accent\"},\"st_submenu_panel_box_shadow_box_shadow_box_shadow_type\":\"yes\",\"st_submenu_panel_box_shadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_submenu_item_indicator_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_submenu_item_indicator_border_border_border\":\"solid\",\"st_submenu_item_indicator_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_submenu_panel_background_background_color\":\"#FFFFFF\",\"st_hamburger_menu_icon_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_icon_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_close_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_hamburger_menu_close_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_hamburger_menu_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_menu_item_text_normal_color_responsive_tablet\":\"#6EC1E4\",\"st_menu_item_text_hover_color_responsive_tablet\":\"#54595F\",\"st_menu_item_text_active_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_close_background_background_color\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"#54595F\",\"st_hamburger_menu_position_responsive_mobile\":\"left\",\"st_hamburger_menu_close_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_hamburger_menu_close_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"st_mobile_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"st_menu_item_text_hover_color_responsive\":\"#54595F\",\"st_menu_item_text_active_color_responsive\":\"#54595F\",\"st_mobile_menu_object_fit_responsive_tablet\":\"cover\",\"st_mobile_menu_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_hamburger_menu_close_background_hover_background_background\":\"classic\",\"sg_menu_alignment_responsive\":\"center\",\"sg_menu_alignment_responsive_tablet\":\"flex-end\",\"sg_menu_alignment_responsive_mobile\":\"flex-end\",\"sg_menu_sub_position\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_z_index_mobile\":9999},\"elements\":[],\"widgetType\":\"jkit_nav_menu\"}],\"isInner\":true},{\"id\":\"5ef5f227\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"234dd6d2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"align\":\"right\",\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=558fe58\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"hover_animation\":\"float\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"00bb017\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"z_index\":1,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":3,\"blur\":15,\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.06)\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"z_index_tablet\":4,\"z_index_mobile\":0,\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[{\"id\":\"05b35c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"z_index_tablet\":5,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"817d99c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"f9871fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"b9b486a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-2.png\",\"id\":219,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2c526\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\",\"align_mobile\":\"flex-end\"},\"elements\":[{\"id\":\"665fe6d\",\"elType\":\"widget\",\"settings\":{\"sg_menu_choose\":\"main-menu\",\"sg_mobile_menu_logo\":{\"id\":107,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_mobile_menu_logo_size_imagesize_size\":\"full\",\"sg_mobile_menu_icon\":{\"value\":\"jki jki-bars-solid\",\"library\":\"jkiticon\"},\"st_menu_wrapper_height_responsive\":{\"unit\":\"px\",\"size\":74,\"sizes\":[]},\"st_menu_wrapper_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"},\"st_submenu_item_indicator_margin_responsive\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_submenu_panel_padding_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_panel_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_background_background_background\":\"classic\",\"st_submenu_panel_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_position_responsive_tablet\":\"left\",\"st_hamburger_menu_icon_background_background_background\":\"classic\",\"st_hamburger_menu_icon_background_background_color\":\"#FFFFFF00\",\"st_hamburger_menu_icon_border_border_border\":\"solid\",\"st_hamburger_menu_icon_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_hamburger_menu_close_background_background_background\":\"classic\",\"st_hamburger_menu_close_border_border_border\":\"solid\",\"st_hamburger_menu_close_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"st_menu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_menu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_color_responsive\":\"\",\"st_submenu_panel_background_background_color\":\"\",\"st_submenu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_submenu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_wrapper_mobile_color_tablet_responsive_tablet\":\"\",\"st_menu_item_text_normal_color_responsive_tablet\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_item_text_active_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_submenu_item_indicator_color_responsive_tablet\":\"\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_icon_color_hover_responsive_tablet\":\"\",\"st_hamburger_menu_close_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_close_color_hover_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_wrapper_background_background_color\":\"\",\"st_hamburger_menu_close_background_background_color\":\"globals\\/colors?id=secondary\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_border_border_color\":\"\",\"st_hamburger_menu_close_background_hover_background_color\":\"globals\\/colors?id=accent\"},\"st_submenu_panel_box_shadow_box_shadow_box_shadow_type\":\"yes\",\"st_submenu_panel_box_shadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_submenu_item_indicator_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_submenu_item_indicator_border_border_border\":\"solid\",\"st_submenu_item_indicator_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_submenu_panel_background_background_color\":\"#FFFFFF\",\"st_hamburger_menu_icon_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_icon_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_close_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_hamburger_menu_close_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_hamburger_menu_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_menu_item_text_normal_color_responsive_tablet\":\"#6EC1E4\",\"st_menu_item_text_hover_color_responsive_tablet\":\"#54595F\",\"st_menu_item_text_active_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_close_background_background_color\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"#54595F\",\"st_hamburger_menu_position_responsive_mobile\":\"left\",\"st_hamburger_menu_close_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_hamburger_menu_close_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"st_mobile_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"st_menu_item_text_hover_color_responsive\":\"#54595F\",\"st_menu_item_text_active_color_responsive\":\"#54595F\",\"st_mobile_menu_object_fit_responsive_tablet\":\"cover\",\"st_mobile_menu_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_hamburger_menu_close_background_hover_background_background\":\"classic\",\"sg_menu_alignment_responsive\":\"center\",\"sg_menu_alignment_responsive_tablet\":\"flex-end\",\"sg_menu_alignment_responsive_mobile\":\"flex-end\",\"sg_menu_sub_position\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_nav_menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1549,265,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1550,265,'_elementor_css','a:6:{s:4:\"time\";i:1721837696;s:5:\"fonts\";a:1:{i:0;s:5:\"Inter\";}s:5:\"icons\";a:4:{i:0;s:8:\"jkiticon\";i:3;s:9:\"fa-brands\";i:7;s:8:\"fa-solid\";i:9;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1551,266,'_wp_page_template','default'),(1552,266,'_elementor_edit_mode','builder'),(1553,266,'_elementor_template_type','wp-post'),(1554,266,'_elementor_version','3.23.2'),(1555,266,'_elementor_data','[{\"id\":\"1ed2d9f1\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":3,\"blur\":15,\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.06)\"},\"background_background\":\"classic\",\"z_index\":1,\"jet_sticky_section_sticky\":\"yes\",\"jet_sticky_section_sticky_z_index\":\"10\",\"jet_sticky_section_sticky_background_background\":\"classic\",\"jet_sticky_section_sticky_background_color\":\"#FFFFFF\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"z_index_tablet\":4,\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"z_index_mobile\":0,\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=f01b239\"}},\"elements\":[{\"id\":\"5a58714b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80.3490000000000037516656448133289813995361328125,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":20,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"18bb12d6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-map-marker1-light\",\"library\":\"jkiticon\"},\"title_text\":\"\",\"description_text\":\"123 Wall St\\nMiami, FL 12345\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"none\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#EAEAEA\",\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\",\"description_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"secondary_color\":\"\",\"title_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"view\":\"framed\",\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#3F5A29\",\"title_color\":\"#00160E\",\"description_color\":\"#00160E\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"secondary_color\":\"#FFFFFF00\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Heebo\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"294dea9a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-phone-call-line\",\"library\":\"jkiticon\"},\"title_text\":\"\",\"description_text\":\"+1 505 555 5555\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\",\"description_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"secondary_color\":\"\",\"title_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"view\":\"framed\",\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"tel:+1 505 555 5555\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"primary_color\":\"#3F5A29\",\"secondary_color\":\"#FFFFFF00\",\"title_color\":\"#00160E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"description_color\":\"#00160E\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Heebo\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_border_border\":\"none\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#EAEAEA\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"5e047152\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":19.650999999999999801048033987171947956085205078125,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":30,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":80},\"elements\":[{\"id\":\"976c2f8\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"jki jki-facebook-f\",\"library\":\"jkiticon\"},\"_id\":\"0fb8cc7\"},{\"social_icon\":{\"value\":\"fab fa-x-twitter\",\"library\":\"fa-brands\"},\"_id\":\"4be5bc7\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"147010a\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"df2ad14\"}],\"shape\":\"circle\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"hover_animation\":\"shrink\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=secondary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_secondary_color\":\"globals\\/colors?id=accent\",\"hover_primary_color\":\"globals\\/colors?id=accent\"},\"align_tablet\":\"right\",\"hover_primary_color\":\"#006943\",\"hover_secondary_color\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65d61e79\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"z_index\":1,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":3,\"blur\":15,\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.06)\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"z_index_tablet\":4,\"z_index_mobile\":0,\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"49c5f53f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"z_index_tablet\":5,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7fd427a5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"z_index_mobile\":999},\"elements\":[{\"id\":\"a5ad795\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EAEAEA\"},\"elements\":[{\"id\":\"4b6500b7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":219,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-2.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":70}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2eb94bb5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.6580000000000012505552149377763271331787109375,\"align\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":80,\"hide_mobile\":\"hidden-phone\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align_tablet\":\"flex-end\"},\"elements\":[{\"id\":\"14c9c516\",\"elType\":\"widget\",\"settings\":{\"sg_menu_choose\":\"main-menu\",\"sg_mobile_menu_logo\":{\"id\":107,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_mobile_menu_logo_size_imagesize_size\":\"full\",\"sg_mobile_menu_icon\":{\"value\":\"jki jki-bars-solid\",\"library\":\"jkiticon\"},\"st_menu_wrapper_height_responsive\":{\"unit\":\"px\",\"size\":74,\"sizes\":[]},\"st_menu_wrapper_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"},\"st_submenu_item_indicator_margin_responsive\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_submenu_panel_padding_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_panel_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_background_background_background\":\"classic\",\"st_submenu_panel_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_position_responsive_tablet\":\"left\",\"st_hamburger_menu_icon_background_background_background\":\"classic\",\"st_hamburger_menu_icon_background_background_color\":\"#FFFFFF00\",\"st_hamburger_menu_icon_border_border_border\":\"solid\",\"st_hamburger_menu_icon_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_hamburger_menu_close_background_background_background\":\"classic\",\"st_hamburger_menu_close_border_border_border\":\"solid\",\"st_hamburger_menu_close_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"st_menu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_menu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_color_responsive\":\"\",\"st_submenu_panel_background_background_color\":\"\",\"st_submenu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_submenu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_wrapper_mobile_color_tablet_responsive_tablet\":\"\",\"st_menu_item_text_normal_color_responsive_tablet\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_item_text_active_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_submenu_item_indicator_color_responsive_tablet\":\"\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_icon_color_hover_responsive_tablet\":\"\",\"st_hamburger_menu_close_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_close_color_hover_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_wrapper_background_background_color\":\"\",\"st_hamburger_menu_close_background_background_color\":\"globals\\/colors?id=secondary\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_border_border_color\":\"\",\"st_hamburger_menu_close_background_hover_background_color\":\"globals\\/colors?id=accent\"},\"st_submenu_panel_box_shadow_box_shadow_box_shadow_type\":\"yes\",\"st_submenu_panel_box_shadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_submenu_item_indicator_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_submenu_item_indicator_border_border_border\":\"solid\",\"st_submenu_item_indicator_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_submenu_panel_background_background_color\":\"#FFFFFF\",\"st_hamburger_menu_icon_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_icon_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_close_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_hamburger_menu_close_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_hamburger_menu_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_menu_item_text_normal_color_responsive_tablet\":\"#6EC1E4\",\"st_menu_item_text_hover_color_responsive_tablet\":\"#54595F\",\"st_menu_item_text_active_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_close_background_background_color\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"#54595F\",\"st_hamburger_menu_position_responsive_mobile\":\"left\",\"st_hamburger_menu_close_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_hamburger_menu_close_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"st_mobile_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"st_menu_item_text_hover_color_responsive\":\"#54595F\",\"st_menu_item_text_active_color_responsive\":\"#54595F\",\"st_mobile_menu_object_fit_responsive_tablet\":\"cover\",\"st_mobile_menu_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_hamburger_menu_close_background_hover_background_background\":\"classic\",\"sg_menu_alignment_responsive\":\"center\",\"sg_menu_alignment_responsive_tablet\":\"flex-end\",\"sg_menu_alignment_responsive_mobile\":\"flex-end\",\"sg_menu_sub_position\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_z_index_mobile\":9999},\"elements\":[],\"widgetType\":\"jkit_nav_menu\"}],\"isInner\":true},{\"id\":\"5ef5f227\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"234dd6d2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"align\":\"right\",\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=558fe58\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"hover_animation\":\"float\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"00bb017\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"z_index\":1,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":3,\"blur\":15,\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.06)\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"z_index_tablet\":4,\"z_index_mobile\":0,\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[{\"id\":\"05b35c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"z_index_tablet\":5,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"817d99c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"f9871fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"b9b486a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-2.png\",\"id\":219,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2c526\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\",\"align_mobile\":\"flex-end\"},\"elements\":[{\"id\":\"665fe6d\",\"elType\":\"widget\",\"settings\":{\"sg_menu_choose\":\"main-menu\",\"sg_mobile_menu_logo\":{\"id\":107,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_mobile_menu_logo_size_imagesize_size\":\"full\",\"sg_mobile_menu_icon\":{\"value\":\"jki jki-bars-solid\",\"library\":\"jkiticon\"},\"st_menu_wrapper_height_responsive\":{\"unit\":\"px\",\"size\":74,\"sizes\":[]},\"st_menu_wrapper_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"},\"st_submenu_item_indicator_margin_responsive\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_submenu_panel_padding_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_panel_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_background_background_background\":\"classic\",\"st_submenu_panel_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_position_responsive_tablet\":\"left\",\"st_hamburger_menu_icon_background_background_background\":\"classic\",\"st_hamburger_menu_icon_background_background_color\":\"#FFFFFF00\",\"st_hamburger_menu_icon_border_border_border\":\"solid\",\"st_hamburger_menu_icon_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_hamburger_menu_close_background_background_background\":\"classic\",\"st_hamburger_menu_close_border_border_border\":\"solid\",\"st_hamburger_menu_close_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"st_menu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_menu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_color_responsive\":\"\",\"st_submenu_panel_background_background_color\":\"\",\"st_submenu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_submenu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_wrapper_mobile_color_tablet_responsive_tablet\":\"\",\"st_menu_item_text_normal_color_responsive_tablet\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_item_text_active_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_submenu_item_indicator_color_responsive_tablet\":\"\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_icon_color_hover_responsive_tablet\":\"\",\"st_hamburger_menu_close_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_close_color_hover_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_wrapper_background_background_color\":\"\",\"st_hamburger_menu_close_background_background_color\":\"globals\\/colors?id=secondary\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_border_border_color\":\"\",\"st_hamburger_menu_close_background_hover_background_color\":\"globals\\/colors?id=accent\"},\"st_submenu_panel_box_shadow_box_shadow_box_shadow_type\":\"yes\",\"st_submenu_panel_box_shadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_submenu_item_indicator_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_submenu_item_indicator_border_border_border\":\"solid\",\"st_submenu_item_indicator_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_submenu_panel_background_background_color\":\"#FFFFFF\",\"st_hamburger_menu_icon_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_icon_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_close_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_hamburger_menu_close_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_hamburger_menu_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_menu_item_text_normal_color_responsive_tablet\":\"#6EC1E4\",\"st_menu_item_text_hover_color_responsive_tablet\":\"#54595F\",\"st_menu_item_text_active_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_close_background_background_color\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"#54595F\",\"st_hamburger_menu_position_responsive_mobile\":\"left\",\"st_hamburger_menu_close_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_hamburger_menu_close_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"st_mobile_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"st_menu_item_text_hover_color_responsive\":\"#54595F\",\"st_menu_item_text_active_color_responsive\":\"#54595F\",\"st_mobile_menu_object_fit_responsive_tablet\":\"cover\",\"st_mobile_menu_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_hamburger_menu_close_background_hover_background_background\":\"classic\",\"sg_menu_alignment_responsive\":\"center\",\"sg_menu_alignment_responsive_tablet\":\"flex-end\",\"sg_menu_alignment_responsive_mobile\":\"flex-end\",\"sg_menu_sub_position\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_nav_menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1556,266,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1557,266,'_elementor_css','a:6:{s:4:\"time\";i:1721837696;s:5:\"fonts\";a:1:{i:0;s:5:\"Inter\";}s:5:\"icons\";a:4:{i:0;s:8:\"jkiticon\";i:3;s:9:\"fa-brands\";i:7;s:8:\"fa-solid\";i:9;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1558,267,'_wp_page_template','default'),(1559,267,'_elementor_edit_mode','builder'),(1560,267,'_elementor_template_type','wp-post'),(1561,267,'_elementor_version','3.23.2'),(1562,267,'_elementor_data','[{\"id\":\"1ed2d9f1\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":3,\"blur\":15,\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.06)\"},\"background_background\":\"classic\",\"z_index\":1,\"jet_sticky_section_sticky\":\"yes\",\"jet_sticky_section_sticky_z_index\":\"10\",\"jet_sticky_section_sticky_background_background\":\"classic\",\"jet_sticky_section_sticky_background_color\":\"#FFFFFF\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"z_index_tablet\":4,\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"z_index_mobile\":0,\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=f01b239\"}},\"elements\":[{\"id\":\"5a58714b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80.3490000000000037516656448133289813995361328125,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":20,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"18bb12d6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-map-marker1-light\",\"library\":\"jkiticon\"},\"title_text\":\"\",\"description_text\":\"123 Wall St\\nMiami, FL 12345\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"none\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#EAEAEA\",\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\",\"description_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"secondary_color\":\"\",\"title_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"view\":\"framed\",\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#3F5A29\",\"title_color\":\"#00160E\",\"description_color\":\"#00160E\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"secondary_color\":\"#FFFFFF00\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Heebo\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"294dea9a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-phone-call-line\",\"library\":\"jkiticon\"},\"title_text\":\"\",\"description_text\":\"+1 505 555 5555\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\",\"description_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"secondary_color\":\"\",\"title_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"view\":\"framed\",\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"tel:+1 505 555 5555\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"primary_color\":\"#3F5A29\",\"secondary_color\":\"#FFFFFF00\",\"title_color\":\"#00160E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"description_color\":\"#00160E\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Heebo\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_border_border\":\"none\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#EAEAEA\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"5e047152\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":19.650999999999999801048033987171947956085205078125,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":30,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":80},\"elements\":[{\"id\":\"976c2f8\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"jki jki-facebook-f\",\"library\":\"jkiticon\"},\"_id\":\"0fb8cc7\"},{\"social_icon\":{\"value\":\"fab fa-x-twitter\",\"library\":\"fa-brands\"},\"_id\":\"4be5bc7\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"147010a\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"df2ad14\"}],\"shape\":\"circle\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"hover_animation\":\"shrink\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=secondary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_secondary_color\":\"globals\\/colors?id=accent\",\"hover_primary_color\":\"globals\\/colors?id=accent\"},\"align_tablet\":\"right\",\"hover_primary_color\":\"#006943\",\"hover_secondary_color\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65d61e79\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"z_index\":1,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":3,\"blur\":15,\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.06)\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"z_index_tablet\":4,\"z_index_mobile\":0,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"49c5f53f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"z_index_tablet\":5,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7fd427a5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"z_index_mobile\":999},\"elements\":[{\"id\":\"a5ad795\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EAEAEA\"},\"elements\":[{\"id\":\"4b6500b7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":219,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-2.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":70}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2eb94bb5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.6580000000000012505552149377763271331787109375,\"align\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":80,\"hide_mobile\":\"hidden-phone\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align_tablet\":\"flex-end\"},\"elements\":[{\"id\":\"14c9c516\",\"elType\":\"widget\",\"settings\":{\"sg_menu_choose\":\"main-menu\",\"sg_mobile_menu_logo\":{\"id\":107,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_mobile_menu_logo_size_imagesize_size\":\"full\",\"sg_mobile_menu_icon\":{\"value\":\"jki jki-bars-solid\",\"library\":\"jkiticon\"},\"st_menu_wrapper_height_responsive\":{\"unit\":\"px\",\"size\":74,\"sizes\":[]},\"st_menu_wrapper_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"},\"st_submenu_item_indicator_margin_responsive\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_submenu_panel_padding_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_panel_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_background_background_background\":\"classic\",\"st_submenu_panel_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_position_responsive_tablet\":\"left\",\"st_hamburger_menu_icon_background_background_background\":\"classic\",\"st_hamburger_menu_icon_background_background_color\":\"#FFFFFF00\",\"st_hamburger_menu_icon_border_border_border\":\"solid\",\"st_hamburger_menu_icon_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_hamburger_menu_close_background_background_background\":\"classic\",\"st_hamburger_menu_close_border_border_border\":\"solid\",\"st_hamburger_menu_close_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"st_menu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_menu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_color_responsive\":\"\",\"st_submenu_panel_background_background_color\":\"\",\"st_submenu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_submenu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_wrapper_mobile_color_tablet_responsive_tablet\":\"\",\"st_menu_item_text_normal_color_responsive_tablet\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_item_text_active_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_submenu_item_indicator_color_responsive_tablet\":\"\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_icon_color_hover_responsive_tablet\":\"\",\"st_hamburger_menu_close_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_close_color_hover_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_wrapper_background_background_color\":\"\",\"st_hamburger_menu_close_background_background_color\":\"globals\\/colors?id=secondary\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_border_border_color\":\"\",\"st_hamburger_menu_close_background_hover_background_color\":\"globals\\/colors?id=accent\"},\"st_submenu_panel_box_shadow_box_shadow_box_shadow_type\":\"yes\",\"st_submenu_panel_box_shadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_submenu_item_indicator_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_submenu_item_indicator_border_border_border\":\"solid\",\"st_submenu_item_indicator_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_submenu_panel_background_background_color\":\"#FFFFFF\",\"st_hamburger_menu_icon_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_icon_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_close_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_hamburger_menu_close_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_hamburger_menu_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_menu_item_text_normal_color_responsive_tablet\":\"#6EC1E4\",\"st_menu_item_text_hover_color_responsive_tablet\":\"#54595F\",\"st_menu_item_text_active_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_close_background_background_color\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"#54595F\",\"st_hamburger_menu_position_responsive_mobile\":\"left\",\"st_hamburger_menu_close_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_hamburger_menu_close_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"st_mobile_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"st_menu_item_text_hover_color_responsive\":\"#54595F\",\"st_menu_item_text_active_color_responsive\":\"#54595F\",\"st_mobile_menu_object_fit_responsive_tablet\":\"cover\",\"st_mobile_menu_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_hamburger_menu_close_background_hover_background_background\":\"classic\",\"sg_menu_alignment_responsive\":\"center\",\"sg_menu_alignment_responsive_tablet\":\"flex-end\",\"sg_menu_alignment_responsive_mobile\":\"flex-end\",\"sg_menu_sub_position\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_z_index_mobile\":9999},\"elements\":[],\"widgetType\":\"jkit_nav_menu\"}],\"isInner\":true},{\"id\":\"5ef5f227\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"234dd6d2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"align\":\"right\",\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=558fe58\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"hover_animation\":\"float\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"00bb017\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"z_index\":1,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":3,\"blur\":15,\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.06)\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"z_index_tablet\":4,\"z_index_mobile\":0,\"hide_desktop\":\"hidden-desktop\"},\"elements\":[{\"id\":\"05b35c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"z_index_tablet\":5,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"817d99c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"f9871fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"b9b486a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-2.png\",\"id\":219,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2c526\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\",\"align_mobile\":\"flex-end\"},\"elements\":[{\"id\":\"665fe6d\",\"elType\":\"widget\",\"settings\":{\"sg_menu_choose\":\"main-menu\",\"sg_mobile_menu_logo\":{\"id\":107,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_mobile_menu_logo_size_imagesize_size\":\"full\",\"sg_mobile_menu_icon\":{\"value\":\"jki jki-bars-solid\",\"library\":\"jkiticon\"},\"st_menu_wrapper_height_responsive\":{\"unit\":\"px\",\"size\":74,\"sizes\":[]},\"st_menu_wrapper_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"},\"st_submenu_item_indicator_margin_responsive\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_submenu_panel_padding_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_panel_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_background_background_background\":\"classic\",\"st_submenu_panel_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_position_responsive_tablet\":\"left\",\"st_hamburger_menu_icon_background_background_background\":\"classic\",\"st_hamburger_menu_icon_background_background_color\":\"#FFFFFF00\",\"st_hamburger_menu_icon_border_border_border\":\"solid\",\"st_hamburger_menu_icon_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_hamburger_menu_close_background_background_background\":\"classic\",\"st_hamburger_menu_close_border_border_border\":\"solid\",\"st_hamburger_menu_close_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"st_menu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_menu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_color_responsive\":\"\",\"st_submenu_panel_background_background_color\":\"\",\"st_submenu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_submenu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_wrapper_mobile_color_tablet_responsive_tablet\":\"\",\"st_menu_item_text_normal_color_responsive_tablet\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_item_text_active_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_submenu_item_indicator_color_responsive_tablet\":\"\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_icon_color_hover_responsive_tablet\":\"\",\"st_hamburger_menu_close_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_close_color_hover_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_wrapper_background_background_color\":\"\",\"st_hamburger_menu_close_background_background_color\":\"globals\\/colors?id=secondary\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_border_border_color\":\"\",\"st_hamburger_menu_close_background_hover_background_color\":\"globals\\/colors?id=accent\"},\"st_submenu_panel_box_shadow_box_shadow_box_shadow_type\":\"yes\",\"st_submenu_panel_box_shadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_submenu_item_indicator_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_submenu_item_indicator_border_border_border\":\"solid\",\"st_submenu_item_indicator_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_submenu_panel_background_background_color\":\"#FFFFFF\",\"st_hamburger_menu_icon_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_icon_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_close_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_hamburger_menu_close_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_hamburger_menu_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_menu_item_text_normal_color_responsive_tablet\":\"#6EC1E4\",\"st_menu_item_text_hover_color_responsive_tablet\":\"#54595F\",\"st_menu_item_text_active_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_close_background_background_color\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"#54595F\",\"st_hamburger_menu_position_responsive_mobile\":\"left\",\"st_hamburger_menu_close_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_hamburger_menu_close_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"st_mobile_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"st_menu_item_text_hover_color_responsive\":\"#54595F\",\"st_menu_item_text_active_color_responsive\":\"#54595F\",\"st_mobile_menu_object_fit_responsive_tablet\":\"cover\",\"st_mobile_menu_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_hamburger_menu_close_background_hover_background_background\":\"classic\",\"sg_menu_alignment_responsive\":\"center\",\"sg_menu_alignment_responsive_tablet\":\"flex-end\",\"sg_menu_alignment_responsive_mobile\":\"flex-end\",\"sg_menu_sub_position\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_nav_menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1563,267,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1564,267,'_elementor_css','a:6:{s:4:\"time\";i:1721837696;s:5:\"fonts\";a:1:{i:0;s:5:\"Inter\";}s:5:\"icons\";a:4:{i:0;s:8:\"jkiticon\";i:3;s:9:\"fa-brands\";i:7;s:8:\"fa-solid\";i:9;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1565,268,'_wp_page_template','default'),(1566,268,'_elementor_edit_mode','builder'),(1567,268,'_elementor_template_type','wp-post'),(1568,268,'_elementor_version','3.23.2'),(1569,268,'_elementor_data','[{\"id\":\"1ed2d9f1\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":3,\"blur\":15,\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.06)\"},\"background_background\":\"classic\",\"z_index\":1,\"jet_sticky_section_sticky\":\"yes\",\"jet_sticky_section_sticky_z_index\":\"10\",\"jet_sticky_section_sticky_background_background\":\"classic\",\"jet_sticky_section_sticky_background_color\":\"#FFFFFF\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"z_index_tablet\":4,\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"z_index_mobile\":0,\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=f01b239\"}},\"elements\":[{\"id\":\"5a58714b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80.3490000000000037516656448133289813995361328125,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":20,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"18bb12d6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-map-marker1-light\",\"library\":\"jkiticon\"},\"title_text\":\"\",\"description_text\":\"123 Wall St\\nMiami, FL 12345\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"none\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#EAEAEA\",\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\",\"description_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"secondary_color\":\"\",\"title_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"view\":\"framed\",\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#3F5A29\",\"title_color\":\"#00160E\",\"description_color\":\"#00160E\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"secondary_color\":\"#FFFFFF00\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Heebo\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"294dea9a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-phone-call-line\",\"library\":\"jkiticon\"},\"title_text\":\"\",\"description_text\":\"+1 505 555 5555\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\",\"description_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"secondary_color\":\"\",\"title_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"view\":\"framed\",\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"tel:+1 505 555 5555\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"primary_color\":\"#3F5A29\",\"secondary_color\":\"#FFFFFF00\",\"title_color\":\"#00160E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"description_color\":\"#00160E\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Heebo\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_border_border\":\"none\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#EAEAEA\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"5e047152\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":19.650999999999999801048033987171947956085205078125,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":30,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":80},\"elements\":[{\"id\":\"976c2f8\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"jki jki-facebook-f\",\"library\":\"jkiticon\"},\"_id\":\"0fb8cc7\"},{\"social_icon\":{\"value\":\"fab fa-x-twitter\",\"library\":\"fa-brands\"},\"_id\":\"4be5bc7\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"147010a\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"df2ad14\"}],\"shape\":\"circle\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"hover_animation\":\"shrink\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=secondary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_secondary_color\":\"globals\\/colors?id=accent\",\"hover_primary_color\":\"globals\\/colors?id=accent\"},\"align_tablet\":\"right\",\"hover_primary_color\":\"#006943\",\"hover_secondary_color\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65d61e79\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"z_index\":1,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":3,\"blur\":15,\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.06)\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"z_index_tablet\":4,\"z_index_mobile\":0,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"49c5f53f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"z_index_tablet\":5,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7fd427a5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"z_index_mobile\":999},\"elements\":[{\"id\":\"a5ad795\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EAEAEA\"},\"elements\":[{\"id\":\"4b6500b7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":219,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-2.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":70}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2eb94bb5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.6580000000000012505552149377763271331787109375,\"align\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":80,\"hide_mobile\":\"hidden-phone\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align_tablet\":\"flex-end\"},\"elements\":[{\"id\":\"14c9c516\",\"elType\":\"widget\",\"settings\":{\"sg_menu_choose\":\"main-menu\",\"sg_mobile_menu_logo\":{\"id\":107,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_mobile_menu_logo_size_imagesize_size\":\"full\",\"sg_mobile_menu_icon\":{\"value\":\"jki jki-bars-solid\",\"library\":\"jkiticon\"},\"st_menu_wrapper_height_responsive\":{\"unit\":\"px\",\"size\":74,\"sizes\":[]},\"st_menu_wrapper_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"},\"st_submenu_item_indicator_margin_responsive\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_submenu_panel_padding_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_panel_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_background_background_background\":\"classic\",\"st_submenu_panel_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_position_responsive_tablet\":\"left\",\"st_hamburger_menu_icon_background_background_background\":\"classic\",\"st_hamburger_menu_icon_background_background_color\":\"#FFFFFF00\",\"st_hamburger_menu_icon_border_border_border\":\"solid\",\"st_hamburger_menu_icon_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_hamburger_menu_close_background_background_background\":\"classic\",\"st_hamburger_menu_close_border_border_border\":\"solid\",\"st_hamburger_menu_close_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"st_menu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_menu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_color_responsive\":\"\",\"st_submenu_panel_background_background_color\":\"\",\"st_submenu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_submenu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_wrapper_mobile_color_tablet_responsive_tablet\":\"\",\"st_menu_item_text_normal_color_responsive_tablet\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_item_text_active_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_submenu_item_indicator_color_responsive_tablet\":\"\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_icon_color_hover_responsive_tablet\":\"\",\"st_hamburger_menu_close_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_close_color_hover_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_wrapper_background_background_color\":\"\",\"st_hamburger_menu_close_background_background_color\":\"globals\\/colors?id=secondary\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_border_border_color\":\"\",\"st_hamburger_menu_close_background_hover_background_color\":\"globals\\/colors?id=accent\"},\"st_submenu_panel_box_shadow_box_shadow_box_shadow_type\":\"yes\",\"st_submenu_panel_box_shadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_submenu_item_indicator_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_submenu_item_indicator_border_border_border\":\"solid\",\"st_submenu_item_indicator_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_submenu_panel_background_background_color\":\"#FFFFFF\",\"st_hamburger_menu_icon_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_icon_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_close_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_hamburger_menu_close_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_hamburger_menu_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_menu_item_text_normal_color_responsive_tablet\":\"#6EC1E4\",\"st_menu_item_text_hover_color_responsive_tablet\":\"#54595F\",\"st_menu_item_text_active_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_close_background_background_color\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"#54595F\",\"st_hamburger_menu_position_responsive_mobile\":\"left\",\"st_hamburger_menu_close_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_hamburger_menu_close_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"st_mobile_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"st_menu_item_text_hover_color_responsive\":\"#54595F\",\"st_menu_item_text_active_color_responsive\":\"#54595F\",\"st_mobile_menu_object_fit_responsive_tablet\":\"cover\",\"st_mobile_menu_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_hamburger_menu_close_background_hover_background_background\":\"classic\",\"sg_menu_alignment_responsive\":\"center\",\"sg_menu_alignment_responsive_tablet\":\"flex-end\",\"sg_menu_alignment_responsive_mobile\":\"flex-end\",\"sg_menu_sub_position\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_z_index_mobile\":9999},\"elements\":[],\"widgetType\":\"jkit_nav_menu\"}],\"isInner\":true},{\"id\":\"5ef5f227\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"234dd6d2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"align\":\"right\",\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=558fe58\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"hover_animation\":\"float\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"00bb017\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"z_index\":1,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":3,\"blur\":15,\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.06)\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"z_index_tablet\":4,\"z_index_mobile\":0,\"hide_desktop\":\"hidden-desktop\"},\"elements\":[{\"id\":\"05b35c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"z_index_tablet\":5,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"817d99c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"f9871fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"b9b486a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-2.png\",\"id\":219,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2c526\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\",\"align_mobile\":\"flex-end\"},\"elements\":[{\"id\":\"665fe6d\",\"elType\":\"widget\",\"settings\":{\"sg_menu_choose\":\"main-menu\",\"sg_mobile_menu_logo\":{\"id\":107,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_mobile_menu_logo_size_imagesize_size\":\"full\",\"sg_mobile_menu_icon\":{\"value\":\"jki jki-bars-solid\",\"library\":\"jkiticon\"},\"st_menu_wrapper_height_responsive\":{\"unit\":\"px\",\"size\":74,\"sizes\":[]},\"st_menu_wrapper_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"},\"st_submenu_item_indicator_margin_responsive\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_submenu_panel_padding_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_panel_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_background_background_background\":\"classic\",\"st_submenu_panel_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_position_responsive_tablet\":\"left\",\"st_hamburger_menu_icon_background_background_background\":\"classic\",\"st_hamburger_menu_icon_background_background_color\":\"#FFFFFF00\",\"st_hamburger_menu_icon_border_border_border\":\"solid\",\"st_hamburger_menu_icon_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_hamburger_menu_close_background_background_background\":\"classic\",\"st_hamburger_menu_close_border_border_border\":\"solid\",\"st_hamburger_menu_close_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"st_menu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_menu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_color_responsive\":\"\",\"st_submenu_panel_background_background_color\":\"\",\"st_submenu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_submenu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_wrapper_mobile_color_tablet_responsive_tablet\":\"\",\"st_menu_item_text_normal_color_responsive_tablet\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_item_text_active_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_submenu_item_indicator_color_responsive_tablet\":\"\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_icon_color_hover_responsive_tablet\":\"\",\"st_hamburger_menu_close_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_close_color_hover_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_wrapper_background_background_color\":\"\",\"st_hamburger_menu_close_background_background_color\":\"globals\\/colors?id=secondary\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_border_border_color\":\"\",\"st_hamburger_menu_close_background_hover_background_color\":\"globals\\/colors?id=accent\"},\"st_submenu_panel_box_shadow_box_shadow_box_shadow_type\":\"yes\",\"st_submenu_panel_box_shadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_submenu_item_indicator_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_submenu_item_indicator_border_border_border\":\"solid\",\"st_submenu_item_indicator_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_submenu_panel_background_background_color\":\"#FFFFFF\",\"st_hamburger_menu_icon_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_icon_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_close_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_hamburger_menu_close_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_hamburger_menu_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_menu_item_text_normal_color_responsive_tablet\":\"#6EC1E4\",\"st_menu_item_text_hover_color_responsive_tablet\":\"#54595F\",\"st_menu_item_text_active_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_close_background_background_color\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"#54595F\",\"st_hamburger_menu_position_responsive_mobile\":\"left\",\"st_hamburger_menu_close_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_hamburger_menu_close_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"st_mobile_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"st_menu_item_text_hover_color_responsive\":\"#54595F\",\"st_menu_item_text_active_color_responsive\":\"#54595F\",\"st_mobile_menu_object_fit_responsive_tablet\":\"cover\",\"st_mobile_menu_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_hamburger_menu_close_background_hover_background_background\":\"classic\",\"sg_menu_alignment_responsive\":\"center\",\"sg_menu_alignment_responsive_tablet\":\"flex-end\",\"sg_menu_alignment_responsive_mobile\":\"flex-end\",\"sg_menu_sub_position\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_nav_menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1570,268,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1571,269,'_wp_page_template','default'),(1572,269,'_elementor_edit_mode','builder'),(1573,269,'_elementor_template_type','wp-post'),(1574,269,'_elementor_version','3.23.2'),(1575,269,'_elementor_data','[{\"id\":\"1ed2d9f1\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":3,\"blur\":15,\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.06)\"},\"background_background\":\"classic\",\"z_index\":1,\"jet_sticky_section_sticky\":\"yes\",\"jet_sticky_section_sticky_z_index\":\"10\",\"jet_sticky_section_sticky_background_background\":\"classic\",\"jet_sticky_section_sticky_background_color\":\"#FFFFFF\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"z_index_tablet\":4,\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"z_index_mobile\":0,\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=f01b239\"}},\"elements\":[{\"id\":\"5a58714b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80.3490000000000037516656448133289813995361328125,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":20,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"18bb12d6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-map-marker1-light\",\"library\":\"jkiticon\"},\"title_text\":\"\",\"description_text\":\"123 Wall St\\nMiami, FL 12345\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"none\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#EAEAEA\",\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\",\"description_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"secondary_color\":\"\",\"title_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"view\":\"framed\",\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#3F5A29\",\"title_color\":\"#00160E\",\"description_color\":\"#00160E\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"secondary_color\":\"#FFFFFF00\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Heebo\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"294dea9a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-phone-call-line\",\"library\":\"jkiticon\"},\"title_text\":\"\",\"description_text\":\"+1 505 555 5555\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\",\"description_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"secondary_color\":\"\",\"title_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"view\":\"framed\",\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"tel:+1 505 555 5555\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"primary_color\":\"#3F5A29\",\"secondary_color\":\"#FFFFFF00\",\"title_color\":\"#00160E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"description_color\":\"#00160E\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Heebo\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_border_border\":\"none\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#EAEAEA\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"5e047152\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":19.650999999999999801048033987171947956085205078125,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":30,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":80},\"elements\":[{\"id\":\"976c2f8\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"jki jki-facebook-f\",\"library\":\"jkiticon\"},\"_id\":\"0fb8cc7\"},{\"social_icon\":{\"value\":\"fab fa-x-twitter\",\"library\":\"fa-brands\"},\"_id\":\"4be5bc7\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"147010a\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"df2ad14\"}],\"shape\":\"circle\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"hover_animation\":\"shrink\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=secondary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_secondary_color\":\"globals\\/colors?id=accent\",\"hover_primary_color\":\"globals\\/colors?id=accent\"},\"align_tablet\":\"right\",\"hover_primary_color\":\"#006943\",\"hover_secondary_color\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65d61e79\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"z_index\":1,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":3,\"blur\":15,\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.06)\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"z_index_tablet\":4,\"z_index_mobile\":0,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"49c5f53f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"z_index_tablet\":5,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7fd427a5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"z_index_mobile\":999},\"elements\":[{\"id\":\"a5ad795\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EAEAEA\"},\"elements\":[{\"id\":\"4b6500b7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":219,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-2.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":70}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2eb94bb5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.6580000000000012505552149377763271331787109375,\"align\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":80,\"hide_mobile\":\"hidden-phone\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align_tablet\":\"flex-end\"},\"elements\":[{\"id\":\"14c9c516\",\"elType\":\"widget\",\"settings\":{\"sg_menu_choose\":\"main-menu\",\"sg_mobile_menu_logo\":{\"id\":107,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_mobile_menu_logo_size_imagesize_size\":\"full\",\"sg_mobile_menu_icon\":{\"value\":\"jki jki-bars-solid\",\"library\":\"jkiticon\"},\"st_menu_wrapper_height_responsive\":{\"unit\":\"px\",\"size\":74,\"sizes\":[]},\"st_menu_wrapper_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"},\"st_submenu_item_indicator_margin_responsive\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_submenu_panel_padding_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_panel_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_background_background_background\":\"classic\",\"st_submenu_panel_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_position_responsive_tablet\":\"left\",\"st_hamburger_menu_icon_background_background_background\":\"classic\",\"st_hamburger_menu_icon_background_background_color\":\"#FFFFFF00\",\"st_hamburger_menu_icon_border_border_border\":\"solid\",\"st_hamburger_menu_icon_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_hamburger_menu_close_background_background_background\":\"classic\",\"st_hamburger_menu_close_border_border_border\":\"solid\",\"st_hamburger_menu_close_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"st_menu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_menu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_color_responsive\":\"\",\"st_submenu_panel_background_background_color\":\"\",\"st_submenu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_submenu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_wrapper_mobile_color_tablet_responsive_tablet\":\"\",\"st_menu_item_text_normal_color_responsive_tablet\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_item_text_active_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_submenu_item_indicator_color_responsive_tablet\":\"\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_icon_color_hover_responsive_tablet\":\"\",\"st_hamburger_menu_close_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_close_color_hover_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_wrapper_background_background_color\":\"\",\"st_hamburger_menu_close_background_background_color\":\"globals\\/colors?id=secondary\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_border_border_color\":\"\",\"st_hamburger_menu_close_background_hover_background_color\":\"globals\\/colors?id=accent\"},\"st_submenu_panel_box_shadow_box_shadow_box_shadow_type\":\"yes\",\"st_submenu_panel_box_shadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_submenu_item_indicator_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_submenu_item_indicator_border_border_border\":\"solid\",\"st_submenu_item_indicator_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_submenu_panel_background_background_color\":\"#FFFFFF\",\"st_hamburger_menu_icon_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_icon_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_close_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_hamburger_menu_close_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_hamburger_menu_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_menu_item_text_normal_color_responsive_tablet\":\"#6EC1E4\",\"st_menu_item_text_hover_color_responsive_tablet\":\"#54595F\",\"st_menu_item_text_active_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_close_background_background_color\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"#54595F\",\"st_hamburger_menu_position_responsive_mobile\":\"left\",\"st_hamburger_menu_close_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_hamburger_menu_close_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"st_mobile_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"st_menu_item_text_hover_color_responsive\":\"#54595F\",\"st_menu_item_text_active_color_responsive\":\"#54595F\",\"st_mobile_menu_object_fit_responsive_tablet\":\"cover\",\"st_mobile_menu_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_hamburger_menu_close_background_hover_background_background\":\"classic\",\"sg_menu_alignment_responsive\":\"center\",\"sg_menu_alignment_responsive_tablet\":\"flex-end\",\"sg_menu_alignment_responsive_mobile\":\"flex-end\",\"sg_menu_sub_position\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_z_index_mobile\":9999},\"elements\":[],\"widgetType\":\"jkit_nav_menu\"}],\"isInner\":true},{\"id\":\"5ef5f227\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"234dd6d2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"align\":\"right\",\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=558fe58\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"hover_animation\":\"float\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"00bb017\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"z_index\":1,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":3,\"blur\":15,\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.06)\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"z_index_tablet\":4,\"z_index_mobile\":0,\"hide_desktop\":\"hidden-desktop\"},\"elements\":[{\"id\":\"05b35c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"z_index_tablet\":5,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"817d99c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"f9871fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"b9b486a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-2.png\",\"id\":219,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2c526\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position_mobile\":\"center\",\"align_mobile\":\"flex-end\"},\"elements\":[{\"id\":\"665fe6d\",\"elType\":\"widget\",\"settings\":{\"sg_menu_choose\":\"main-menu\",\"sg_mobile_menu_logo\":{\"id\":107,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_mobile_menu_logo_size_imagesize_size\":\"full\",\"sg_mobile_menu_icon\":{\"value\":\"jki jki-bars-solid\",\"library\":\"jkiticon\"},\"st_menu_wrapper_height_responsive\":{\"unit\":\"px\",\"size\":74,\"sizes\":[]},\"st_menu_wrapper_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"},\"st_submenu_item_indicator_margin_responsive\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_submenu_panel_padding_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_panel_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_background_background_background\":\"classic\",\"st_submenu_panel_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_position_responsive_tablet\":\"left\",\"st_hamburger_menu_icon_background_background_background\":\"classic\",\"st_hamburger_menu_icon_background_background_color\":\"#FFFFFF00\",\"st_hamburger_menu_icon_border_border_border\":\"solid\",\"st_hamburger_menu_icon_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_hamburger_menu_close_background_background_background\":\"classic\",\"st_hamburger_menu_close_border_border_border\":\"solid\",\"st_hamburger_menu_close_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"st_menu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_menu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_color_responsive\":\"\",\"st_submenu_panel_background_background_color\":\"\",\"st_submenu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_submenu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_wrapper_mobile_color_tablet_responsive_tablet\":\"\",\"st_menu_item_text_normal_color_responsive_tablet\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_item_text_active_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_submenu_item_indicator_color_responsive_tablet\":\"\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_icon_color_hover_responsive_tablet\":\"\",\"st_hamburger_menu_close_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_close_color_hover_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_wrapper_background_background_color\":\"\",\"st_hamburger_menu_close_background_background_color\":\"globals\\/colors?id=secondary\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_border_border_color\":\"\",\"st_hamburger_menu_close_background_hover_background_color\":\"globals\\/colors?id=accent\"},\"st_submenu_panel_box_shadow_box_shadow_box_shadow_type\":\"yes\",\"st_submenu_panel_box_shadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_submenu_item_indicator_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_submenu_item_indicator_border_border_border\":\"solid\",\"st_submenu_item_indicator_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_submenu_panel_background_background_color\":\"#FFFFFF\",\"st_hamburger_menu_icon_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_icon_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_close_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_hamburger_menu_close_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_hamburger_menu_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_menu_item_text_normal_color_responsive_tablet\":\"#6EC1E4\",\"st_menu_item_text_hover_color_responsive_tablet\":\"#54595F\",\"st_menu_item_text_active_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_close_background_background_color\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"#54595F\",\"st_hamburger_menu_position_responsive_mobile\":\"left\",\"st_hamburger_menu_close_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_hamburger_menu_close_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"st_mobile_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"st_menu_item_text_hover_color_responsive\":\"#54595F\",\"st_menu_item_text_active_color_responsive\":\"#54595F\",\"st_mobile_menu_object_fit_responsive_tablet\":\"cover\",\"st_mobile_menu_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_hamburger_menu_close_background_hover_background_background\":\"classic\",\"sg_menu_alignment_responsive\":\"center\",\"sg_menu_alignment_responsive_tablet\":\"flex-end\",\"sg_menu_alignment_responsive_mobile\":\"flex-end\",\"sg_menu_sub_position\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_nav_menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1576,269,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1577,270,'_wp_page_template','default'),(1578,270,'_elementor_edit_mode','builder'),(1579,270,'_elementor_template_type','wp-post'),(1580,270,'_elementor_version','3.23.2'),(1581,270,'_elementor_data','[{\"id\":\"1ed2d9f1\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":3,\"blur\":15,\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.06)\"},\"background_background\":\"classic\",\"z_index\":1,\"jet_sticky_section_sticky\":\"yes\",\"jet_sticky_section_sticky_z_index\":\"10\",\"jet_sticky_section_sticky_background_background\":\"classic\",\"jet_sticky_section_sticky_background_color\":\"#FFFFFF\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"z_index_tablet\":4,\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"z_index_mobile\":0,\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=f01b239\"}},\"elements\":[{\"id\":\"5a58714b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80.3490000000000037516656448133289813995361328125,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":20,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"18bb12d6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-map-marker1-light\",\"library\":\"jkiticon\"},\"title_text\":\"\",\"description_text\":\"123 Wall St\\nMiami, FL 12345\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"none\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#EAEAEA\",\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\",\"description_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"secondary_color\":\"\",\"title_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"view\":\"framed\",\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#3F5A29\",\"title_color\":\"#00160E\",\"description_color\":\"#00160E\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"secondary_color\":\"#FFFFFF00\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Heebo\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"294dea9a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-phone-call-line\",\"library\":\"jkiticon\"},\"title_text\":\"\",\"description_text\":\"+1 505 555 5555\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\",\"description_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"secondary_color\":\"\",\"title_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"view\":\"framed\",\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"tel:+1 505 555 5555\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"primary_color\":\"#3F5A29\",\"secondary_color\":\"#FFFFFF00\",\"title_color\":\"#00160E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"description_color\":\"#00160E\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Heebo\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_border_border\":\"none\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#EAEAEA\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"5e047152\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":19.650999999999999801048033987171947956085205078125,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":30,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":80},\"elements\":[{\"id\":\"976c2f8\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"jki jki-facebook-f\",\"library\":\"jkiticon\"},\"_id\":\"0fb8cc7\"},{\"social_icon\":{\"value\":\"fab fa-x-twitter\",\"library\":\"fa-brands\"},\"_id\":\"4be5bc7\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"147010a\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"df2ad14\"}],\"shape\":\"circle\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"hover_animation\":\"shrink\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=secondary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_secondary_color\":\"globals\\/colors?id=accent\",\"hover_primary_color\":\"globals\\/colors?id=accent\"},\"align_tablet\":\"right\",\"hover_primary_color\":\"#006943\",\"hover_secondary_color\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65d61e79\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"z_index\":1,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":3,\"blur\":15,\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.06)\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"z_index_tablet\":4,\"z_index_mobile\":0,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"49c5f53f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"z_index_tablet\":5,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7fd427a5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"z_index_mobile\":999},\"elements\":[{\"id\":\"a5ad795\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EAEAEA\"},\"elements\":[{\"id\":\"4b6500b7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":219,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-2.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":70}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2eb94bb5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.6580000000000012505552149377763271331787109375,\"align\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":80,\"hide_mobile\":\"hidden-phone\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align_tablet\":\"flex-end\"},\"elements\":[{\"id\":\"14c9c516\",\"elType\":\"widget\",\"settings\":{\"sg_menu_choose\":\"main-menu\",\"sg_mobile_menu_logo\":{\"id\":107,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_mobile_menu_logo_size_imagesize_size\":\"full\",\"sg_mobile_menu_icon\":{\"value\":\"jki jki-bars-solid\",\"library\":\"jkiticon\"},\"st_menu_wrapper_height_responsive\":{\"unit\":\"px\",\"size\":74,\"sizes\":[]},\"st_menu_wrapper_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"},\"st_submenu_item_indicator_margin_responsive\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_submenu_panel_padding_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_panel_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_background_background_background\":\"classic\",\"st_submenu_panel_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_position_responsive_tablet\":\"left\",\"st_hamburger_menu_icon_background_background_background\":\"classic\",\"st_hamburger_menu_icon_background_background_color\":\"#FFFFFF00\",\"st_hamburger_menu_icon_border_border_border\":\"solid\",\"st_hamburger_menu_icon_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_hamburger_menu_close_background_background_background\":\"classic\",\"st_hamburger_menu_close_border_border_border\":\"solid\",\"st_hamburger_menu_close_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"st_menu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_menu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_color_responsive\":\"\",\"st_submenu_panel_background_background_color\":\"\",\"st_submenu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_submenu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_wrapper_mobile_color_tablet_responsive_tablet\":\"\",\"st_menu_item_text_normal_color_responsive_tablet\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_item_text_active_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_submenu_item_indicator_color_responsive_tablet\":\"\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_icon_color_hover_responsive_tablet\":\"\",\"st_hamburger_menu_close_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_close_color_hover_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_wrapper_background_background_color\":\"\",\"st_hamburger_menu_close_background_background_color\":\"globals\\/colors?id=secondary\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_border_border_color\":\"\",\"st_hamburger_menu_close_background_hover_background_color\":\"globals\\/colors?id=accent\"},\"st_submenu_panel_box_shadow_box_shadow_box_shadow_type\":\"yes\",\"st_submenu_panel_box_shadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_submenu_item_indicator_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_submenu_item_indicator_border_border_border\":\"solid\",\"st_submenu_item_indicator_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_submenu_panel_background_background_color\":\"#FFFFFF\",\"st_hamburger_menu_icon_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_icon_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_close_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_hamburger_menu_close_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_hamburger_menu_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_menu_item_text_normal_color_responsive_tablet\":\"#6EC1E4\",\"st_menu_item_text_hover_color_responsive_tablet\":\"#54595F\",\"st_menu_item_text_active_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_close_background_background_color\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"#54595F\",\"st_hamburger_menu_position_responsive_mobile\":\"left\",\"st_hamburger_menu_close_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_hamburger_menu_close_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"st_mobile_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"st_menu_item_text_hover_color_responsive\":\"#54595F\",\"st_menu_item_text_active_color_responsive\":\"#54595F\",\"st_mobile_menu_object_fit_responsive_tablet\":\"cover\",\"st_mobile_menu_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_hamburger_menu_close_background_hover_background_background\":\"classic\",\"sg_menu_alignment_responsive\":\"center\",\"sg_menu_alignment_responsive_tablet\":\"flex-end\",\"sg_menu_alignment_responsive_mobile\":\"flex-end\",\"sg_menu_sub_position\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_z_index_mobile\":9999},\"elements\":[],\"widgetType\":\"jkit_nav_menu\"}],\"isInner\":true},{\"id\":\"5ef5f227\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"234dd6d2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"align\":\"right\",\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=558fe58\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"hover_animation\":\"float\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"00bb017\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"z_index\":1,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":3,\"blur\":15,\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.06)\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"z_index_tablet\":4,\"z_index_mobile\":0,\"hide_desktop\":\"hidden-desktop\"},\"elements\":[{\"id\":\"05b35c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"z_index_tablet\":5,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"817d99c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"f9871fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"b9b486a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-2.png\",\"id\":219,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2c526\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position_tablet\":\"center\",\"content_position_mobile\":\"center\",\"align_tablet\":\"flex-end\",\"align_mobile\":\"flex-end\"},\"elements\":[{\"id\":\"665fe6d\",\"elType\":\"widget\",\"settings\":{\"sg_menu_choose\":\"main-menu\",\"sg_mobile_menu_logo\":{\"id\":107,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_mobile_menu_logo_size_imagesize_size\":\"full\",\"sg_mobile_menu_icon\":{\"value\":\"jki jki-bars-solid\",\"library\":\"jkiticon\"},\"st_menu_wrapper_height_responsive\":{\"unit\":\"px\",\"size\":74,\"sizes\":[]},\"st_menu_wrapper_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"},\"st_submenu_item_indicator_margin_responsive\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_submenu_panel_padding_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_panel_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_background_background_background\":\"classic\",\"st_submenu_panel_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_position_responsive_tablet\":\"left\",\"st_hamburger_menu_icon_background_background_background\":\"classic\",\"st_hamburger_menu_icon_background_background_color\":\"#FFFFFF00\",\"st_hamburger_menu_icon_border_border_border\":\"solid\",\"st_hamburger_menu_icon_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_hamburger_menu_close_background_background_background\":\"classic\",\"st_hamburger_menu_close_border_border_border\":\"solid\",\"st_hamburger_menu_close_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"st_menu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_menu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_color_responsive\":\"\",\"st_submenu_panel_background_background_color\":\"\",\"st_submenu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_submenu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_wrapper_mobile_color_tablet_responsive_tablet\":\"\",\"st_menu_item_text_normal_color_responsive_tablet\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_item_text_active_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_submenu_item_indicator_color_responsive_tablet\":\"\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_icon_color_hover_responsive_tablet\":\"\",\"st_hamburger_menu_close_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_close_color_hover_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_wrapper_background_background_color\":\"\",\"st_hamburger_menu_close_background_background_color\":\"globals\\/colors?id=secondary\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_border_border_color\":\"\",\"st_hamburger_menu_close_background_hover_background_color\":\"globals\\/colors?id=accent\"},\"st_submenu_panel_box_shadow_box_shadow_box_shadow_type\":\"yes\",\"st_submenu_panel_box_shadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_submenu_item_indicator_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_submenu_item_indicator_border_border_border\":\"solid\",\"st_submenu_item_indicator_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_submenu_panel_background_background_color\":\"#FFFFFF\",\"st_hamburger_menu_icon_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_icon_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_close_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_hamburger_menu_close_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_hamburger_menu_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_menu_item_text_normal_color_responsive_tablet\":\"#6EC1E4\",\"st_menu_item_text_hover_color_responsive_tablet\":\"#54595F\",\"st_menu_item_text_active_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_close_background_background_color\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"#54595F\",\"st_hamburger_menu_position_responsive_mobile\":\"left\",\"st_hamburger_menu_close_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_hamburger_menu_close_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"st_mobile_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"st_menu_item_text_hover_color_responsive\":\"#54595F\",\"st_menu_item_text_active_color_responsive\":\"#54595F\",\"st_mobile_menu_object_fit_responsive_tablet\":\"cover\",\"st_mobile_menu_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_hamburger_menu_close_background_hover_background_background\":\"classic\",\"sg_menu_alignment_responsive\":\"center\",\"sg_menu_alignment_responsive_tablet\":\"flex-end\",\"sg_menu_alignment_responsive_mobile\":\"flex-end\",\"sg_menu_sub_position\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_nav_menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1582,270,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1584,271,'_wp_page_template','default'),(1585,271,'_elementor_edit_mode','builder'),(1586,271,'_elementor_template_type','wp-post'),(1587,271,'_elementor_version','3.23.2'),(1588,271,'_elementor_data','[{\"id\":\"1ed2d9f1\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":3,\"blur\":15,\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.06)\"},\"background_background\":\"classic\",\"z_index\":1,\"jet_sticky_section_sticky\":\"yes\",\"jet_sticky_section_sticky_z_index\":\"10\",\"jet_sticky_section_sticky_background_background\":\"classic\",\"jet_sticky_section_sticky_background_color\":\"#FFFFFF\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"z_index_tablet\":4,\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"z_index_mobile\":0,\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=f01b239\"}},\"elements\":[{\"id\":\"5a58714b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80.3490000000000037516656448133289813995361328125,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":20,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"18bb12d6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-map-marker1-light\",\"library\":\"jkiticon\"},\"title_text\":\"\",\"description_text\":\"123 Wall St\\nMiami, FL 12345\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"none\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#EAEAEA\",\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\",\"description_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"secondary_color\":\"\",\"title_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"view\":\"framed\",\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#3F5A29\",\"title_color\":\"#00160E\",\"description_color\":\"#00160E\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"secondary_color\":\"#FFFFFF00\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Heebo\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"294dea9a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-phone-call-line\",\"library\":\"jkiticon\"},\"title_text\":\"\",\"description_text\":\"+1 505 555 5555\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\",\"description_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"secondary_color\":\"\",\"title_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"view\":\"framed\",\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"tel:+1 505 555 5555\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"primary_color\":\"#3F5A29\",\"secondary_color\":\"#FFFFFF00\",\"title_color\":\"#00160E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"description_color\":\"#00160E\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Heebo\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_border_border\":\"none\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#EAEAEA\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"5e047152\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":19.650999999999999801048033987171947956085205078125,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":30,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":80},\"elements\":[{\"id\":\"976c2f8\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"jki jki-facebook-f\",\"library\":\"jkiticon\"},\"_id\":\"0fb8cc7\"},{\"social_icon\":{\"value\":\"fab fa-x-twitter\",\"library\":\"fa-brands\"},\"_id\":\"4be5bc7\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"147010a\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"df2ad14\"}],\"shape\":\"circle\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"hover_animation\":\"shrink\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=secondary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_secondary_color\":\"globals\\/colors?id=accent\",\"hover_primary_color\":\"globals\\/colors?id=accent\"},\"align_tablet\":\"right\",\"hover_primary_color\":\"#006943\",\"hover_secondary_color\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65d61e79\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"z_index\":1,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":3,\"blur\":15,\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.06)\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"z_index_tablet\":4,\"z_index_mobile\":0,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"49c5f53f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"z_index_tablet\":5,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7fd427a5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"z_index_mobile\":999},\"elements\":[{\"id\":\"a5ad795\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EAEAEA\"},\"elements\":[{\"id\":\"4b6500b7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":219,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-2.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":70}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2eb94bb5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.6580000000000012505552149377763271331787109375,\"align\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":80,\"hide_mobile\":\"hidden-phone\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align_tablet\":\"flex-end\"},\"elements\":[{\"id\":\"14c9c516\",\"elType\":\"widget\",\"settings\":{\"sg_menu_choose\":\"main-menu\",\"sg_mobile_menu_logo\":{\"id\":107,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_mobile_menu_logo_size_imagesize_size\":\"full\",\"sg_mobile_menu_icon\":{\"value\":\"jki jki-bars-solid\",\"library\":\"jkiticon\"},\"st_menu_wrapper_height_responsive\":{\"unit\":\"px\",\"size\":74,\"sizes\":[]},\"st_menu_wrapper_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"},\"st_submenu_item_indicator_margin_responsive\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_submenu_panel_padding_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_panel_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_background_background_background\":\"classic\",\"st_submenu_panel_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_position_responsive_tablet\":\"left\",\"st_hamburger_menu_icon_background_background_background\":\"classic\",\"st_hamburger_menu_icon_background_background_color\":\"#FFFFFF00\",\"st_hamburger_menu_icon_border_border_border\":\"solid\",\"st_hamburger_menu_icon_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_hamburger_menu_close_background_background_background\":\"classic\",\"st_hamburger_menu_close_border_border_border\":\"solid\",\"st_hamburger_menu_close_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"st_menu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_menu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_color_responsive\":\"\",\"st_submenu_panel_background_background_color\":\"\",\"st_submenu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_submenu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_wrapper_mobile_color_tablet_responsive_tablet\":\"\",\"st_menu_item_text_normal_color_responsive_tablet\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_item_text_active_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_submenu_item_indicator_color_responsive_tablet\":\"\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_icon_color_hover_responsive_tablet\":\"\",\"st_hamburger_menu_close_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_close_color_hover_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_wrapper_background_background_color\":\"\",\"st_hamburger_menu_close_background_background_color\":\"globals\\/colors?id=secondary\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_border_border_color\":\"\",\"st_hamburger_menu_close_background_hover_background_color\":\"globals\\/colors?id=accent\"},\"st_submenu_panel_box_shadow_box_shadow_box_shadow_type\":\"yes\",\"st_submenu_panel_box_shadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_submenu_item_indicator_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_submenu_item_indicator_border_border_border\":\"solid\",\"st_submenu_item_indicator_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_submenu_panel_background_background_color\":\"#FFFFFF\",\"st_hamburger_menu_icon_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_icon_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_close_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_hamburger_menu_close_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_hamburger_menu_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_menu_item_text_normal_color_responsive_tablet\":\"#6EC1E4\",\"st_menu_item_text_hover_color_responsive_tablet\":\"#54595F\",\"st_menu_item_text_active_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_close_background_background_color\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"#54595F\",\"st_hamburger_menu_position_responsive_mobile\":\"left\",\"st_hamburger_menu_close_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_hamburger_menu_close_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"st_mobile_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"st_menu_item_text_hover_color_responsive\":\"#54595F\",\"st_menu_item_text_active_color_responsive\":\"#54595F\",\"st_mobile_menu_object_fit_responsive_tablet\":\"cover\",\"st_mobile_menu_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_hamburger_menu_close_background_hover_background_background\":\"classic\",\"sg_menu_alignment_responsive\":\"center\",\"sg_menu_alignment_responsive_tablet\":\"flex-end\",\"sg_menu_alignment_responsive_mobile\":\"flex-end\",\"sg_menu_sub_position\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_z_index_mobile\":9999},\"elements\":[],\"widgetType\":\"jkit_nav_menu\"}],\"isInner\":true},{\"id\":\"5ef5f227\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"234dd6d2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"align\":\"right\",\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=558fe58\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"hover_animation\":\"float\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"00bb017\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"z_index\":1,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":3,\"blur\":15,\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.06)\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"z_index_tablet\":4,\"z_index_mobile\":0,\"hide_desktop\":\"hidden-desktop\"},\"elements\":[{\"id\":\"05b35c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"z_index_tablet\":5,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"817d99c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"f9871fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"b9b486a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-2.png\",\"id\":219,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2c526\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position_tablet\":\"center\",\"content_position_mobile\":\"center\",\"align_tablet\":\"flex-end\",\"align_mobile\":\"flex-end\"},\"elements\":[{\"id\":\"665fe6d\",\"elType\":\"widget\",\"settings\":{\"sg_menu_choose\":\"main-menu\",\"sg_mobile_menu_logo\":{\"id\":107,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_mobile_menu_logo_size_imagesize_size\":\"full\",\"sg_mobile_menu_icon\":{\"value\":\"jki jki-bars-solid\",\"library\":\"jkiticon\"},\"st_menu_wrapper_height_responsive\":{\"unit\":\"px\",\"size\":74,\"sizes\":[]},\"st_menu_wrapper_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"},\"st_submenu_item_indicator_margin_responsive\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_submenu_panel_padding_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_panel_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_background_background_background\":\"classic\",\"st_submenu_panel_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_position_responsive_tablet\":\"left\",\"st_hamburger_menu_icon_background_background_background\":\"classic\",\"st_hamburger_menu_icon_background_background_color\":\"#FFFFFF00\",\"st_hamburger_menu_icon_border_border_border\":\"solid\",\"st_hamburger_menu_icon_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_hamburger_menu_close_background_background_background\":\"classic\",\"st_hamburger_menu_close_border_border_border\":\"solid\",\"st_hamburger_menu_close_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"st_menu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_menu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_color_responsive\":\"\",\"st_submenu_panel_background_background_color\":\"\",\"st_submenu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_submenu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_wrapper_mobile_color_tablet_responsive_tablet\":\"\",\"st_menu_item_text_normal_color_responsive_tablet\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_item_text_active_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_submenu_item_indicator_color_responsive_tablet\":\"\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_icon_color_hover_responsive_tablet\":\"\",\"st_hamburger_menu_close_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_close_color_hover_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_wrapper_background_background_color\":\"\",\"st_hamburger_menu_close_background_background_color\":\"globals\\/colors?id=secondary\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_border_border_color\":\"\",\"st_hamburger_menu_close_background_hover_background_color\":\"globals\\/colors?id=accent\"},\"st_submenu_panel_box_shadow_box_shadow_box_shadow_type\":\"yes\",\"st_submenu_panel_box_shadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_submenu_item_indicator_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_submenu_item_indicator_border_border_border\":\"solid\",\"st_submenu_item_indicator_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_submenu_panel_background_background_color\":\"#FFFFFF\",\"st_hamburger_menu_icon_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_icon_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_close_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_hamburger_menu_close_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_hamburger_menu_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_menu_item_text_normal_color_responsive_tablet\":\"#6EC1E4\",\"st_menu_item_text_hover_color_responsive_tablet\":\"#54595F\",\"st_menu_item_text_active_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_close_background_background_color\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"#54595F\",\"st_hamburger_menu_position_responsive_mobile\":\"left\",\"st_hamburger_menu_close_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_hamburger_menu_close_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"st_mobile_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"st_menu_item_text_hover_color_responsive\":\"#54595F\",\"st_menu_item_text_active_color_responsive\":\"#54595F\",\"st_mobile_menu_object_fit_responsive_tablet\":\"cover\",\"st_mobile_menu_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_hamburger_menu_close_background_hover_background_background\":\"classic\",\"sg_menu_alignment_responsive\":\"center\",\"sg_menu_alignment_responsive_tablet\":\"flex-end\",\"sg_menu_alignment_responsive_mobile\":\"flex-end\",\"sg_menu_sub_position\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_nav_menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1589,271,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1590,271,'_elementor_css','a:6:{s:4:\"time\";i:1721837856;s:5:\"fonts\";a:1:{i:0;s:5:\"Inter\";}s:5:\"icons\";a:4:{i:0;s:8:\"jkiticon\";i:3;s:9:\"fa-brands\";i:7;s:8:\"fa-solid\";i:9;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1591,272,'_wp_page_template','default'),(1592,272,'_elementor_edit_mode','builder'),(1593,272,'_elementor_template_type','wp-post'),(1594,272,'_elementor_version','3.23.2'),(1595,272,'_elementor_data','[{\"id\":\"1ed2d9f1\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":3,\"blur\":15,\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.06)\"},\"background_background\":\"classic\",\"z_index\":1,\"jet_sticky_section_sticky\":\"yes\",\"jet_sticky_section_sticky_z_index\":\"10\",\"jet_sticky_section_sticky_background_background\":\"classic\",\"jet_sticky_section_sticky_background_color\":\"#FFFFFF\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"z_index_tablet\":4,\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"z_index_mobile\":0,\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=f01b239\"}},\"elements\":[{\"id\":\"5a58714b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80.3490000000000037516656448133289813995361328125,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":20,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"18bb12d6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-map-marker1-light\",\"library\":\"jkiticon\"},\"title_text\":\"\",\"description_text\":\"123 Wall St\\nMiami, FL 12345\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"none\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#EAEAEA\",\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\",\"description_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"secondary_color\":\"\",\"title_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"view\":\"framed\",\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#3F5A29\",\"title_color\":\"#00160E\",\"description_color\":\"#00160E\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"secondary_color\":\"#FFFFFF00\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Heebo\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"294dea9a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-phone-call-line\",\"library\":\"jkiticon\"},\"title_text\":\"\",\"description_text\":\"+1 505 555 5555\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\",\"description_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"secondary_color\":\"\",\"title_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"view\":\"framed\",\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"tel:+1 505 555 5555\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"primary_color\":\"#3F5A29\",\"secondary_color\":\"#FFFFFF00\",\"title_color\":\"#00160E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"description_color\":\"#00160E\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Heebo\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_border_border\":\"none\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#EAEAEA\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"5e047152\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":19.650999999999999801048033987171947956085205078125,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":30,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":80},\"elements\":[{\"id\":\"976c2f8\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"jki jki-facebook-f\",\"library\":\"jkiticon\"},\"_id\":\"0fb8cc7\"},{\"social_icon\":{\"value\":\"fab fa-x-twitter\",\"library\":\"fa-brands\"},\"_id\":\"4be5bc7\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"147010a\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"df2ad14\"}],\"shape\":\"circle\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"hover_animation\":\"shrink\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=secondary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_secondary_color\":\"globals\\/colors?id=accent\",\"hover_primary_color\":\"globals\\/colors?id=accent\"},\"align_tablet\":\"right\",\"hover_primary_color\":\"#006943\",\"hover_secondary_color\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65d61e79\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"z_index\":1,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":3,\"blur\":15,\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.06)\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"z_index_tablet\":4,\"z_index_mobile\":0,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"49c5f53f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"z_index_tablet\":5,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7fd427a5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"z_index_mobile\":999},\"elements\":[{\"id\":\"a5ad795\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EAEAEA\"},\"elements\":[{\"id\":\"4b6500b7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":219,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-2.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":70}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2eb94bb5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.6580000000000012505552149377763271331787109375,\"align\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":80,\"hide_mobile\":\"hidden-phone\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align_tablet\":\"flex-end\"},\"elements\":[{\"id\":\"14c9c516\",\"elType\":\"widget\",\"settings\":{\"sg_menu_choose\":\"main-menu\",\"sg_mobile_menu_logo\":{\"id\":107,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_mobile_menu_logo_size_imagesize_size\":\"full\",\"sg_mobile_menu_icon\":{\"value\":\"jki jki-bars-solid\",\"library\":\"jkiticon\"},\"st_menu_wrapper_height_responsive\":{\"unit\":\"px\",\"size\":74,\"sizes\":[]},\"st_menu_wrapper_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"},\"st_submenu_item_indicator_margin_responsive\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_submenu_panel_padding_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_panel_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_background_background_background\":\"classic\",\"st_submenu_panel_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_position_responsive_tablet\":\"left\",\"st_hamburger_menu_icon_background_background_background\":\"classic\",\"st_hamburger_menu_icon_background_background_color\":\"#FFFFFF00\",\"st_hamburger_menu_icon_border_border_border\":\"solid\",\"st_hamburger_menu_icon_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_hamburger_menu_close_background_background_background\":\"classic\",\"st_hamburger_menu_close_border_border_border\":\"solid\",\"st_hamburger_menu_close_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"st_menu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_menu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_color_responsive\":\"\",\"st_submenu_panel_background_background_color\":\"\",\"st_submenu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_submenu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_wrapper_mobile_color_tablet_responsive_tablet\":\"\",\"st_menu_item_text_normal_color_responsive_tablet\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_item_text_active_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_submenu_item_indicator_color_responsive_tablet\":\"\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_icon_color_hover_responsive_tablet\":\"\",\"st_hamburger_menu_close_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_close_color_hover_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_wrapper_background_background_color\":\"\",\"st_hamburger_menu_close_background_background_color\":\"globals\\/colors?id=secondary\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_border_border_color\":\"\",\"st_hamburger_menu_close_background_hover_background_color\":\"globals\\/colors?id=accent\"},\"st_submenu_panel_box_shadow_box_shadow_box_shadow_type\":\"yes\",\"st_submenu_panel_box_shadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_submenu_item_indicator_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_submenu_item_indicator_border_border_border\":\"solid\",\"st_submenu_item_indicator_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_submenu_panel_background_background_color\":\"#FFFFFF\",\"st_hamburger_menu_icon_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_icon_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_close_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_hamburger_menu_close_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_hamburger_menu_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_menu_item_text_normal_color_responsive_tablet\":\"#6EC1E4\",\"st_menu_item_text_hover_color_responsive_tablet\":\"#54595F\",\"st_menu_item_text_active_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_close_background_background_color\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"#54595F\",\"st_hamburger_menu_position_responsive_mobile\":\"left\",\"st_hamburger_menu_close_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_hamburger_menu_close_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"st_mobile_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"st_menu_item_text_hover_color_responsive\":\"#54595F\",\"st_menu_item_text_active_color_responsive\":\"#54595F\",\"st_mobile_menu_object_fit_responsive_tablet\":\"cover\",\"st_mobile_menu_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_hamburger_menu_close_background_hover_background_background\":\"classic\",\"sg_menu_alignment_responsive\":\"center\",\"sg_menu_alignment_responsive_tablet\":\"flex-end\",\"sg_menu_alignment_responsive_mobile\":\"flex-end\",\"sg_menu_sub_position\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_z_index_mobile\":9999},\"elements\":[],\"widgetType\":\"jkit_nav_menu\"}],\"isInner\":true},{\"id\":\"5ef5f227\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"234dd6d2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"align\":\"right\",\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=558fe58\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"hover_animation\":\"float\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"00bb017\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"z_index\":1,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":3,\"blur\":15,\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.06)\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"z_index_tablet\":4,\"z_index_mobile\":0,\"hide_desktop\":\"hidden-desktop\"},\"elements\":[{\"id\":\"05b35c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"z_index_tablet\":5,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"817d99c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"f9871fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"b9b486a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-2.png\",\"id\":219,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2c526\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position_tablet\":\"center\",\"content_position_mobile\":\"center\",\"align_tablet\":\"flex-end\",\"align_mobile\":\"flex-end\"},\"elements\":[{\"id\":\"665fe6d\",\"elType\":\"widget\",\"settings\":{\"sg_menu_choose\":\"main-menu\",\"sg_mobile_menu_logo\":{\"id\":107,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_mobile_menu_logo_size_imagesize_size\":\"full\",\"sg_mobile_menu_icon\":{\"value\":\"jki jki-bars-solid\",\"library\":\"jkiticon\"},\"st_menu_wrapper_height_responsive\":{\"unit\":\"px\",\"size\":74,\"sizes\":[]},\"st_menu_wrapper_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"},\"st_submenu_item_indicator_margin_responsive\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_submenu_panel_padding_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_panel_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_background_background_background\":\"classic\",\"st_submenu_panel_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_position_responsive_tablet\":\"left\",\"st_hamburger_menu_icon_background_background_background\":\"classic\",\"st_hamburger_menu_icon_background_background_color\":\"#FFFFFF00\",\"st_hamburger_menu_icon_border_border_border\":\"solid\",\"st_hamburger_menu_icon_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_hamburger_menu_close_background_background_background\":\"classic\",\"st_hamburger_menu_close_border_border_border\":\"solid\",\"st_hamburger_menu_close_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"st_menu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_menu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_color_responsive\":\"\",\"st_submenu_panel_background_background_color\":\"\",\"st_submenu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_submenu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_wrapper_mobile_color_tablet_responsive_tablet\":\"\",\"st_menu_item_text_normal_color_responsive_tablet\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_item_text_active_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_submenu_item_indicator_color_responsive_tablet\":\"\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_icon_color_hover_responsive_tablet\":\"\",\"st_hamburger_menu_close_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_close_color_hover_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_wrapper_background_background_color\":\"\",\"st_hamburger_menu_close_background_background_color\":\"globals\\/colors?id=secondary\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_border_border_color\":\"\",\"st_hamburger_menu_close_background_hover_background_color\":\"globals\\/colors?id=accent\"},\"st_submenu_panel_box_shadow_box_shadow_box_shadow_type\":\"yes\",\"st_submenu_panel_box_shadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_submenu_item_indicator_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_submenu_item_indicator_border_border_border\":\"solid\",\"st_submenu_item_indicator_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_submenu_panel_background_background_color\":\"#FFFFFF\",\"st_hamburger_menu_icon_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_icon_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_close_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_hamburger_menu_close_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_hamburger_menu_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_menu_item_text_normal_color_responsive_tablet\":\"#6EC1E4\",\"st_menu_item_text_hover_color_responsive_tablet\":\"#54595F\",\"st_menu_item_text_active_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_close_background_background_color\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"#54595F\",\"st_hamburger_menu_position_responsive_mobile\":\"left\",\"st_hamburger_menu_close_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_hamburger_menu_close_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"st_mobile_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"st_menu_item_text_hover_color_responsive\":\"#54595F\",\"st_menu_item_text_active_color_responsive\":\"#54595F\",\"st_mobile_menu_object_fit_responsive_tablet\":\"cover\",\"st_mobile_menu_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_hamburger_menu_close_background_hover_background_background\":\"classic\",\"sg_menu_alignment_responsive\":\"center\",\"sg_menu_alignment_responsive_tablet\":\"flex-end\",\"sg_menu_alignment_responsive_mobile\":\"flex-end\",\"sg_menu_sub_position\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_nav_menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1596,272,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1597,272,'_elementor_css','a:6:{s:4:\"time\";i:1721837856;s:5:\"fonts\";a:1:{i:0;s:5:\"Inter\";}s:5:\"icons\";a:4:{i:0;s:8:\"jkiticon\";i:3;s:9:\"fa-brands\";i:7;s:8:\"fa-solid\";i:9;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1598,273,'_wp_page_template','default'),(1599,273,'_elementor_edit_mode','builder'),(1600,273,'_elementor_template_type','wp-post'),(1601,273,'_elementor_version','3.23.2'),(1602,273,'_elementor_data','[{\"id\":\"1ed2d9f1\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":3,\"blur\":15,\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.06)\"},\"background_background\":\"classic\",\"z_index\":1,\"jet_sticky_section_sticky\":\"yes\",\"jet_sticky_section_sticky_z_index\":\"10\",\"jet_sticky_section_sticky_background_background\":\"classic\",\"jet_sticky_section_sticky_background_color\":\"#FFFFFF\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"z_index_tablet\":4,\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"z_index_mobile\":0,\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=f01b239\"}},\"elements\":[{\"id\":\"5a58714b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80.3490000000000037516656448133289813995361328125,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":20,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"18bb12d6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-map-marker1-light\",\"library\":\"jkiticon\"},\"title_text\":\"\",\"description_text\":\"123 Wall St\\nMiami, FL 12345\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"none\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#EAEAEA\",\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\",\"description_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"secondary_color\":\"\",\"title_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"view\":\"framed\",\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#3F5A29\",\"title_color\":\"#00160E\",\"description_color\":\"#00160E\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"secondary_color\":\"#FFFFFF00\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Heebo\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"294dea9a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-phone-call-line\",\"library\":\"jkiticon\"},\"title_text\":\"\",\"description_text\":\"+1 505 555 5555\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\",\"description_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"secondary_color\":\"\",\"title_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"view\":\"framed\",\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"tel:+1 505 555 5555\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"primary_color\":\"#3F5A29\",\"secondary_color\":\"#FFFFFF00\",\"title_color\":\"#00160E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"description_color\":\"#00160E\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Heebo\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_border_border\":\"none\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#EAEAEA\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"5e047152\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":19.650999999999999801048033987171947956085205078125,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":30,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":80},\"elements\":[{\"id\":\"976c2f8\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"jki jki-facebook-f\",\"library\":\"jkiticon\"},\"_id\":\"0fb8cc7\"},{\"social_icon\":{\"value\":\"fab fa-x-twitter\",\"library\":\"fa-brands\"},\"_id\":\"4be5bc7\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"147010a\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"df2ad14\"}],\"shape\":\"circle\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"hover_animation\":\"shrink\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=secondary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_secondary_color\":\"globals\\/colors?id=accent\",\"hover_primary_color\":\"globals\\/colors?id=accent\"},\"align_tablet\":\"right\",\"hover_primary_color\":\"#006943\",\"hover_secondary_color\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65d61e79\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"z_index\":1,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":3,\"blur\":15,\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.06)\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"z_index_tablet\":4,\"z_index_mobile\":0,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"49c5f53f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"z_index_tablet\":5,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7fd427a5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"z_index_mobile\":999},\"elements\":[{\"id\":\"a5ad795\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EAEAEA\"},\"elements\":[{\"id\":\"4b6500b7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":219,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-2.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":70}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2eb94bb5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.6580000000000012505552149377763271331787109375,\"align\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":80,\"hide_mobile\":\"hidden-phone\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align_tablet\":\"flex-end\"},\"elements\":[{\"id\":\"14c9c516\",\"elType\":\"widget\",\"settings\":{\"sg_menu_choose\":\"main-menu\",\"sg_mobile_menu_logo\":{\"id\":107,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_mobile_menu_logo_size_imagesize_size\":\"full\",\"sg_mobile_menu_icon\":{\"value\":\"jki jki-bars-solid\",\"library\":\"jkiticon\"},\"st_menu_wrapper_height_responsive\":{\"unit\":\"px\",\"size\":74,\"sizes\":[]},\"st_menu_wrapper_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"},\"st_submenu_item_indicator_margin_responsive\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_submenu_panel_padding_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_panel_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_background_background_background\":\"classic\",\"st_submenu_panel_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_position_responsive_tablet\":\"left\",\"st_hamburger_menu_icon_background_background_background\":\"classic\",\"st_hamburger_menu_icon_background_background_color\":\"#FFFFFF00\",\"st_hamburger_menu_icon_border_border_border\":\"solid\",\"st_hamburger_menu_icon_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_hamburger_menu_close_background_background_background\":\"classic\",\"st_hamburger_menu_close_border_border_border\":\"solid\",\"st_hamburger_menu_close_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"st_menu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_menu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_color_responsive\":\"\",\"st_submenu_panel_background_background_color\":\"\",\"st_submenu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_submenu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_wrapper_mobile_color_tablet_responsive_tablet\":\"\",\"st_menu_item_text_normal_color_responsive_tablet\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_item_text_active_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_submenu_item_indicator_color_responsive_tablet\":\"\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_icon_color_hover_responsive_tablet\":\"\",\"st_hamburger_menu_close_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_close_color_hover_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_wrapper_background_background_color\":\"\",\"st_hamburger_menu_close_background_background_color\":\"globals\\/colors?id=secondary\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_border_border_color\":\"\",\"st_hamburger_menu_close_background_hover_background_color\":\"globals\\/colors?id=accent\"},\"st_submenu_panel_box_shadow_box_shadow_box_shadow_type\":\"yes\",\"st_submenu_panel_box_shadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_submenu_item_indicator_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_submenu_item_indicator_border_border_border\":\"solid\",\"st_submenu_item_indicator_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_submenu_panel_background_background_color\":\"#FFFFFF\",\"st_hamburger_menu_icon_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_icon_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_close_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_hamburger_menu_close_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_hamburger_menu_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_menu_item_text_normal_color_responsive_tablet\":\"#6EC1E4\",\"st_menu_item_text_hover_color_responsive_tablet\":\"#54595F\",\"st_menu_item_text_active_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_close_background_background_color\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"#54595F\",\"st_hamburger_menu_position_responsive_mobile\":\"left\",\"st_hamburger_menu_close_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_hamburger_menu_close_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"st_mobile_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"st_menu_item_text_hover_color_responsive\":\"#54595F\",\"st_menu_item_text_active_color_responsive\":\"#54595F\",\"st_mobile_menu_object_fit_responsive_tablet\":\"cover\",\"st_mobile_menu_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_hamburger_menu_close_background_hover_background_background\":\"classic\",\"sg_menu_alignment_responsive\":\"center\",\"sg_menu_alignment_responsive_tablet\":\"flex-end\",\"sg_menu_alignment_responsive_mobile\":\"flex-end\",\"sg_menu_sub_position\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_z_index_mobile\":9999},\"elements\":[],\"widgetType\":\"jkit_nav_menu\"}],\"isInner\":true},{\"id\":\"5ef5f227\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"234dd6d2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"align\":\"right\",\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=558fe58\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"hover_animation\":\"float\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"00bb017\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"z_index\":1,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":3,\"blur\":15,\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.06)\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"z_index_tablet\":4,\"z_index_mobile\":0,\"hide_desktop\":\"hidden-desktop\"},\"elements\":[{\"id\":\"05b35c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"z_index_tablet\":5,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"817d99c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"f9871fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"b9b486a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-2.png\",\"id\":219,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2c526\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position_tablet\":\"center\",\"content_position_mobile\":\"center\",\"align_tablet\":\"flex-end\",\"align_mobile\":\"flex-end\"},\"elements\":[{\"id\":\"665fe6d\",\"elType\":\"widget\",\"settings\":{\"sg_menu_choose\":\"main-menu\",\"sg_mobile_menu_logo\":{\"id\":107,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_mobile_menu_logo_size_imagesize_size\":\"full\",\"sg_mobile_menu_icon\":{\"value\":\"jki jki-bars-solid\",\"library\":\"jkiticon\"},\"st_menu_wrapper_height_responsive\":{\"unit\":\"px\",\"size\":74,\"sizes\":[]},\"st_menu_wrapper_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"},\"st_submenu_item_indicator_margin_responsive\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_submenu_panel_padding_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_panel_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_background_background_background\":\"classic\",\"st_submenu_panel_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_position_responsive_tablet\":\"left\",\"st_hamburger_menu_icon_background_background_background\":\"classic\",\"st_hamburger_menu_icon_background_background_color\":\"#FFFFFF00\",\"st_hamburger_menu_icon_border_border_border\":\"solid\",\"st_hamburger_menu_icon_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_hamburger_menu_close_background_background_background\":\"classic\",\"st_hamburger_menu_close_border_border_border\":\"solid\",\"st_hamburger_menu_close_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"st_menu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_menu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_color_responsive\":\"\",\"st_submenu_panel_background_background_color\":\"\",\"st_submenu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_submenu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_wrapper_mobile_color_tablet_responsive_tablet\":\"\",\"st_menu_item_text_normal_color_responsive_tablet\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_item_text_active_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_submenu_item_indicator_color_responsive_tablet\":\"\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_icon_color_hover_responsive_tablet\":\"\",\"st_hamburger_menu_close_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_close_color_hover_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_wrapper_background_background_color\":\"\",\"st_hamburger_menu_close_background_background_color\":\"globals\\/colors?id=secondary\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_border_border_color\":\"\",\"st_hamburger_menu_close_background_hover_background_color\":\"globals\\/colors?id=accent\"},\"st_submenu_panel_box_shadow_box_shadow_box_shadow_type\":\"yes\",\"st_submenu_panel_box_shadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_submenu_item_indicator_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_submenu_item_indicator_border_border_border\":\"solid\",\"st_submenu_item_indicator_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_submenu_panel_background_background_color\":\"#FFFFFF\",\"st_hamburger_menu_icon_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_icon_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_close_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_hamburger_menu_close_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_hamburger_menu_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_menu_item_text_normal_color_responsive_tablet\":\"#6EC1E4\",\"st_menu_item_text_hover_color_responsive_tablet\":\"#54595F\",\"st_menu_item_text_active_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_close_background_background_color\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"#54595F\",\"st_hamburger_menu_position_responsive_mobile\":\"left\",\"st_hamburger_menu_close_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_hamburger_menu_close_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"st_mobile_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"st_menu_item_text_hover_color_responsive\":\"#54595F\",\"st_menu_item_text_active_color_responsive\":\"#54595F\",\"st_mobile_menu_object_fit_responsive_tablet\":\"cover\",\"st_mobile_menu_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_hamburger_menu_close_background_hover_background_background\":\"classic\",\"sg_menu_alignment_responsive\":\"center\",\"sg_menu_alignment_responsive_tablet\":\"flex-end\",\"sg_menu_alignment_responsive_mobile\":\"flex-end\",\"sg_menu_sub_position\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width_tablet\":\"auto\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_offset_orientation_h\":\"end\"},\"elements\":[],\"widgetType\":\"jkit_nav_menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1603,273,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1604,273,'_elementor_css','a:6:{s:4:\"time\";i:1721837856;s:5:\"fonts\";a:1:{i:0;s:5:\"Inter\";}s:5:\"icons\";a:4:{i:0;s:8:\"jkiticon\";i:3;s:9:\"fa-brands\";i:7;s:8:\"fa-solid\";i:9;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1606,274,'_wp_page_template','default'),(1607,274,'_elementor_edit_mode','builder'),(1608,274,'_elementor_template_type','wp-post'),(1609,274,'_elementor_version','3.23.2'),(1610,274,'_elementor_data','[{\"id\":\"1ed2d9f1\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":3,\"blur\":15,\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.06)\"},\"background_background\":\"classic\",\"z_index\":1,\"jet_sticky_section_sticky\":\"yes\",\"jet_sticky_section_sticky_z_index\":\"10\",\"jet_sticky_section_sticky_background_background\":\"classic\",\"jet_sticky_section_sticky_background_color\":\"#FFFFFF\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"z_index_tablet\":4,\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"z_index_mobile\":0,\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=f01b239\"}},\"elements\":[{\"id\":\"5a58714b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80.3490000000000037516656448133289813995361328125,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":20,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"18bb12d6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-map-marker1-light\",\"library\":\"jkiticon\"},\"title_text\":\"\",\"description_text\":\"123 Wall St\\nMiami, FL 12345\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"none\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#EAEAEA\",\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\",\"description_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"secondary_color\":\"\",\"title_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"view\":\"framed\",\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#3F5A29\",\"title_color\":\"#00160E\",\"description_color\":\"#00160E\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"secondary_color\":\"#FFFFFF00\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Heebo\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"294dea9a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-phone-call-line\",\"library\":\"jkiticon\"},\"title_text\":\"\",\"description_text\":\"+1 505 555 5555\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\",\"description_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"secondary_color\":\"\",\"title_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"view\":\"framed\",\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"tel:+1 505 555 5555\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"primary_color\":\"#3F5A29\",\"secondary_color\":\"#FFFFFF00\",\"title_color\":\"#00160E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"description_color\":\"#00160E\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Heebo\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_border_border\":\"none\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#EAEAEA\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"5e047152\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":19.650999999999999801048033987171947956085205078125,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":30,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":80},\"elements\":[{\"id\":\"976c2f8\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"jki jki-facebook-f\",\"library\":\"jkiticon\"},\"_id\":\"0fb8cc7\"},{\"social_icon\":{\"value\":\"fab fa-x-twitter\",\"library\":\"fa-brands\"},\"_id\":\"4be5bc7\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"147010a\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"df2ad14\"}],\"shape\":\"circle\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"hover_animation\":\"shrink\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=secondary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_secondary_color\":\"globals\\/colors?id=accent\",\"hover_primary_color\":\"globals\\/colors?id=accent\"},\"align_tablet\":\"right\",\"hover_primary_color\":\"#006943\",\"hover_secondary_color\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65d61e79\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"z_index\":1,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":3,\"blur\":15,\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.06)\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"z_index_tablet\":4,\"z_index_mobile\":0,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"49c5f53f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"z_index_tablet\":5,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7fd427a5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"z_index_mobile\":999},\"elements\":[{\"id\":\"a5ad795\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EAEAEA\"},\"elements\":[{\"id\":\"4b6500b7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":219,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-2.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":70}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2eb94bb5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.6580000000000012505552149377763271331787109375,\"align\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":80,\"hide_mobile\":\"hidden-phone\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align_tablet\":\"flex-end\"},\"elements\":[{\"id\":\"14c9c516\",\"elType\":\"widget\",\"settings\":{\"sg_menu_choose\":\"main-menu\",\"sg_mobile_menu_logo\":{\"id\":107,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_mobile_menu_logo_size_imagesize_size\":\"full\",\"sg_mobile_menu_icon\":{\"value\":\"jki jki-bars-solid\",\"library\":\"jkiticon\"},\"st_menu_wrapper_height_responsive\":{\"unit\":\"px\",\"size\":74,\"sizes\":[]},\"st_menu_wrapper_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"},\"st_submenu_item_indicator_margin_responsive\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_submenu_panel_padding_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_panel_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_background_background_background\":\"classic\",\"st_submenu_panel_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_position_responsive_tablet\":\"left\",\"st_hamburger_menu_icon_background_background_background\":\"classic\",\"st_hamburger_menu_icon_background_background_color\":\"#FFFFFF00\",\"st_hamburger_menu_icon_border_border_border\":\"solid\",\"st_hamburger_menu_icon_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_hamburger_menu_close_background_background_background\":\"classic\",\"st_hamburger_menu_close_border_border_border\":\"solid\",\"st_hamburger_menu_close_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"st_menu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_menu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_color_responsive\":\"\",\"st_submenu_panel_background_background_color\":\"\",\"st_submenu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_submenu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_wrapper_mobile_color_tablet_responsive_tablet\":\"\",\"st_menu_item_text_normal_color_responsive_tablet\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_item_text_active_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_submenu_item_indicator_color_responsive_tablet\":\"\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_icon_color_hover_responsive_tablet\":\"\",\"st_hamburger_menu_close_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_close_color_hover_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_wrapper_background_background_color\":\"\",\"st_hamburger_menu_close_background_background_color\":\"globals\\/colors?id=secondary\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_border_border_color\":\"\",\"st_hamburger_menu_close_background_hover_background_color\":\"globals\\/colors?id=accent\"},\"st_submenu_panel_box_shadow_box_shadow_box_shadow_type\":\"yes\",\"st_submenu_panel_box_shadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_submenu_item_indicator_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_submenu_item_indicator_border_border_border\":\"solid\",\"st_submenu_item_indicator_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_submenu_panel_background_background_color\":\"#FFFFFF\",\"st_hamburger_menu_icon_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_icon_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_close_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_hamburger_menu_close_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_hamburger_menu_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_menu_item_text_normal_color_responsive_tablet\":\"#6EC1E4\",\"st_menu_item_text_hover_color_responsive_tablet\":\"#54595F\",\"st_menu_item_text_active_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_close_background_background_color\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"#54595F\",\"st_hamburger_menu_position_responsive_mobile\":\"left\",\"st_hamburger_menu_close_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_hamburger_menu_close_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"st_mobile_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"st_menu_item_text_hover_color_responsive\":\"#54595F\",\"st_menu_item_text_active_color_responsive\":\"#54595F\",\"st_mobile_menu_object_fit_responsive_tablet\":\"cover\",\"st_mobile_menu_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_hamburger_menu_close_background_hover_background_background\":\"classic\",\"sg_menu_alignment_responsive\":\"center\",\"sg_menu_alignment_responsive_tablet\":\"flex-end\",\"sg_menu_alignment_responsive_mobile\":\"flex-end\",\"sg_menu_sub_position\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_z_index_mobile\":9999},\"elements\":[],\"widgetType\":\"jkit_nav_menu\"}],\"isInner\":true},{\"id\":\"5ef5f227\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"234dd6d2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"align\":\"right\",\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=558fe58\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"hover_animation\":\"float\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"00bb017\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"z_index\":1,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":3,\"blur\":15,\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.06)\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"z_index_tablet\":4,\"z_index_mobile\":0,\"hide_desktop\":\"hidden-desktop\"},\"elements\":[{\"id\":\"05b35c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"z_index_tablet\":5,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"817d99c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"f9871fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"b9b486a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-2.png\",\"id\":219,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2c526\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position_tablet\":\"center\",\"content_position_mobile\":\"center\",\"align_tablet\":\"flex-end\",\"align_mobile\":\"flex-end\"},\"elements\":[{\"id\":\"665fe6d\",\"elType\":\"widget\",\"settings\":{\"sg_menu_choose\":\"main-menu\",\"sg_mobile_menu_logo\":{\"id\":107,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_mobile_menu_logo_size_imagesize_size\":\"full\",\"sg_mobile_menu_icon\":{\"value\":\"jki jki-bars-solid\",\"library\":\"jkiticon\"},\"st_menu_wrapper_height_responsive\":{\"unit\":\"px\",\"size\":74,\"sizes\":[]},\"st_menu_wrapper_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"},\"st_submenu_item_indicator_margin_responsive\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_submenu_panel_padding_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_panel_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_background_background_background\":\"classic\",\"st_submenu_panel_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_position_responsive_tablet\":\"left\",\"st_hamburger_menu_icon_background_background_background\":\"classic\",\"st_hamburger_menu_icon_background_background_color\":\"#FFFFFF00\",\"st_hamburger_menu_icon_border_border_border\":\"solid\",\"st_hamburger_menu_icon_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_hamburger_menu_close_background_background_background\":\"classic\",\"st_hamburger_menu_close_border_border_border\":\"solid\",\"st_hamburger_menu_close_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"st_menu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_menu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_color_responsive\":\"\",\"st_submenu_panel_background_background_color\":\"\",\"st_submenu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_submenu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_wrapper_mobile_color_tablet_responsive_tablet\":\"\",\"st_menu_item_text_normal_color_responsive_tablet\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_item_text_active_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_submenu_item_indicator_color_responsive_tablet\":\"\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_icon_color_hover_responsive_tablet\":\"\",\"st_hamburger_menu_close_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_close_color_hover_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_wrapper_background_background_color\":\"\",\"st_hamburger_menu_close_background_background_color\":\"globals\\/colors?id=secondary\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_border_border_color\":\"\",\"st_hamburger_menu_close_background_hover_background_color\":\"globals\\/colors?id=accent\"},\"st_submenu_panel_box_shadow_box_shadow_box_shadow_type\":\"yes\",\"st_submenu_panel_box_shadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_submenu_item_indicator_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_submenu_item_indicator_border_border_border\":\"solid\",\"st_submenu_item_indicator_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_submenu_panel_background_background_color\":\"#FFFFFF\",\"st_hamburger_menu_icon_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_icon_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_close_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_hamburger_menu_close_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_hamburger_menu_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_menu_item_text_normal_color_responsive_tablet\":\"#6EC1E4\",\"st_menu_item_text_hover_color_responsive_tablet\":\"#54595F\",\"st_menu_item_text_active_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_close_background_background_color\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"#54595F\",\"st_hamburger_menu_position_responsive_mobile\":\"left\",\"st_hamburger_menu_close_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_hamburger_menu_close_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"st_mobile_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"st_menu_item_text_hover_color_responsive\":\"#54595F\",\"st_menu_item_text_active_color_responsive\":\"#54595F\",\"st_mobile_menu_object_fit_responsive_tablet\":\"cover\",\"st_mobile_menu_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_hamburger_menu_close_background_hover_background_background\":\"classic\",\"sg_menu_alignment_responsive\":\"center\",\"sg_menu_alignment_responsive_tablet\":\"flex-end\",\"sg_menu_alignment_responsive_mobile\":\"flex-end\",\"sg_menu_sub_position\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width_tablet\":\"auto\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_offset_orientation_h\":\"end\"},\"elements\":[],\"widgetType\":\"jkit_nav_menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1611,274,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1612,274,'_elementor_css','a:6:{s:4:\"time\";i:1721837914;s:5:\"fonts\";a:1:{i:0;s:5:\"Inter\";}s:5:\"icons\";a:4:{i:0;s:8:\"jkiticon\";i:3;s:9:\"fa-brands\";i:7;s:8:\"fa-solid\";i:9;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1613,275,'_wp_page_template','default'),(1614,275,'_elementor_edit_mode','builder'),(1615,275,'_elementor_template_type','wp-post'),(1616,275,'_elementor_version','3.23.2'),(1617,275,'_elementor_data','[{\"id\":\"1ed2d9f1\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":3,\"blur\":15,\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.06)\"},\"background_background\":\"classic\",\"z_index\":1,\"jet_sticky_section_sticky\":\"yes\",\"jet_sticky_section_sticky_z_index\":\"10\",\"jet_sticky_section_sticky_background_background\":\"classic\",\"jet_sticky_section_sticky_background_color\":\"#FFFFFF\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"z_index_tablet\":4,\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"z_index_mobile\":0,\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=f01b239\"}},\"elements\":[{\"id\":\"5a58714b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80.3490000000000037516656448133289813995361328125,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":20,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"18bb12d6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-map-marker1-light\",\"library\":\"jkiticon\"},\"title_text\":\"\",\"description_text\":\"123 Wall St\\nMiami, FL 12345\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"none\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#EAEAEA\",\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\",\"description_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"secondary_color\":\"\",\"title_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"view\":\"framed\",\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#3F5A29\",\"title_color\":\"#00160E\",\"description_color\":\"#00160E\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"secondary_color\":\"#FFFFFF00\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Heebo\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"294dea9a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-phone-call-line\",\"library\":\"jkiticon\"},\"title_text\":\"\",\"description_text\":\"+1 505 555 5555\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\",\"description_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"secondary_color\":\"\",\"title_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"view\":\"framed\",\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"tel:+1 505 555 5555\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"primary_color\":\"#3F5A29\",\"secondary_color\":\"#FFFFFF00\",\"title_color\":\"#00160E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"description_color\":\"#00160E\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Heebo\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_border_border\":\"none\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#EAEAEA\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"5e047152\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":19.650999999999999801048033987171947956085205078125,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":30,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":80},\"elements\":[{\"id\":\"976c2f8\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"jki jki-facebook-f\",\"library\":\"jkiticon\"},\"_id\":\"0fb8cc7\"},{\"social_icon\":{\"value\":\"fab fa-x-twitter\",\"library\":\"fa-brands\"},\"_id\":\"4be5bc7\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"147010a\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"df2ad14\"}],\"shape\":\"circle\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"hover_animation\":\"shrink\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=secondary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_secondary_color\":\"globals\\/colors?id=accent\",\"hover_primary_color\":\"globals\\/colors?id=accent\"},\"align_tablet\":\"right\",\"hover_primary_color\":\"#006943\",\"hover_secondary_color\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65d61e79\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"z_index\":1,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":3,\"blur\":15,\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.06)\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"z_index_tablet\":4,\"z_index_mobile\":0,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"49c5f53f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"z_index_tablet\":5,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7fd427a5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"z_index_mobile\":999},\"elements\":[{\"id\":\"a5ad795\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EAEAEA\"},\"elements\":[{\"id\":\"4b6500b7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":219,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-2.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":70}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2eb94bb5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.6580000000000012505552149377763271331787109375,\"align\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":80,\"hide_mobile\":\"hidden-phone\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align_tablet\":\"flex-end\"},\"elements\":[{\"id\":\"14c9c516\",\"elType\":\"widget\",\"settings\":{\"sg_menu_choose\":\"main-menu\",\"sg_mobile_menu_logo\":{\"id\":107,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_mobile_menu_logo_size_imagesize_size\":\"full\",\"sg_mobile_menu_icon\":{\"value\":\"jki jki-bars-solid\",\"library\":\"jkiticon\"},\"st_menu_wrapper_height_responsive\":{\"unit\":\"px\",\"size\":74,\"sizes\":[]},\"st_menu_wrapper_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"},\"st_submenu_item_indicator_margin_responsive\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_submenu_panel_padding_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_panel_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_background_background_background\":\"classic\",\"st_submenu_panel_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_position_responsive_tablet\":\"left\",\"st_hamburger_menu_icon_background_background_background\":\"classic\",\"st_hamburger_menu_icon_background_background_color\":\"#FFFFFF00\",\"st_hamburger_menu_icon_border_border_border\":\"solid\",\"st_hamburger_menu_icon_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_hamburger_menu_close_background_background_background\":\"classic\",\"st_hamburger_menu_close_border_border_border\":\"solid\",\"st_hamburger_menu_close_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"st_menu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_menu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_color_responsive\":\"\",\"st_submenu_panel_background_background_color\":\"\",\"st_submenu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_submenu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_wrapper_mobile_color_tablet_responsive_tablet\":\"\",\"st_menu_item_text_normal_color_responsive_tablet\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_item_text_active_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_submenu_item_indicator_color_responsive_tablet\":\"\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_icon_color_hover_responsive_tablet\":\"\",\"st_hamburger_menu_close_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_close_color_hover_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_wrapper_background_background_color\":\"\",\"st_hamburger_menu_close_background_background_color\":\"globals\\/colors?id=secondary\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_border_border_color\":\"\",\"st_hamburger_menu_close_background_hover_background_color\":\"globals\\/colors?id=accent\"},\"st_submenu_panel_box_shadow_box_shadow_box_shadow_type\":\"yes\",\"st_submenu_panel_box_shadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_submenu_item_indicator_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_submenu_item_indicator_border_border_border\":\"solid\",\"st_submenu_item_indicator_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_submenu_panel_background_background_color\":\"#FFFFFF\",\"st_hamburger_menu_icon_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_icon_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_close_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_hamburger_menu_close_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_hamburger_menu_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_menu_item_text_normal_color_responsive_tablet\":\"#6EC1E4\",\"st_menu_item_text_hover_color_responsive_tablet\":\"#54595F\",\"st_menu_item_text_active_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_close_background_background_color\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"#54595F\",\"st_hamburger_menu_position_responsive_mobile\":\"left\",\"st_hamburger_menu_close_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_hamburger_menu_close_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"st_mobile_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"st_menu_item_text_hover_color_responsive\":\"#54595F\",\"st_menu_item_text_active_color_responsive\":\"#54595F\",\"st_mobile_menu_object_fit_responsive_tablet\":\"cover\",\"st_mobile_menu_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_hamburger_menu_close_background_hover_background_background\":\"classic\",\"sg_menu_alignment_responsive\":\"center\",\"sg_menu_alignment_responsive_tablet\":\"flex-end\",\"sg_menu_alignment_responsive_mobile\":\"flex-end\",\"sg_menu_sub_position\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_z_index_mobile\":9999},\"elements\":[],\"widgetType\":\"jkit_nav_menu\"}],\"isInner\":true},{\"id\":\"5ef5f227\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"234dd6d2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"align\":\"right\",\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=558fe58\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"hover_animation\":\"float\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"00bb017\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"z_index\":1,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":3,\"blur\":15,\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.06)\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"z_index_tablet\":4,\"z_index_mobile\":0,\"hide_desktop\":\"hidden-desktop\"},\"elements\":[{\"id\":\"05b35c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"z_index_tablet\":5,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"817d99c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"f9871fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"b9b486a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-2.png\",\"id\":219,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2c526\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position_tablet\":\"center\",\"content_position_mobile\":\"center\",\"align_tablet\":\"flex-end\",\"align_mobile\":\"flex-end\"},\"elements\":[{\"id\":\"665fe6d\",\"elType\":\"widget\",\"settings\":{\"sg_menu_choose\":\"main-menu\",\"sg_mobile_menu_logo\":{\"id\":107,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_mobile_menu_logo_size_imagesize_size\":\"full\",\"sg_mobile_menu_icon\":{\"value\":\"jki jki-bars-solid\",\"library\":\"jkiticon\"},\"st_menu_wrapper_height_responsive\":{\"unit\":\"px\",\"size\":74,\"sizes\":[]},\"st_menu_wrapper_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"},\"st_submenu_item_indicator_margin_responsive\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_submenu_panel_padding_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_panel_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_background_background_background\":\"classic\",\"st_submenu_panel_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_position_responsive_tablet\":\"left\",\"st_hamburger_menu_icon_background_background_background\":\"classic\",\"st_hamburger_menu_icon_background_background_color\":\"#FFFFFF00\",\"st_hamburger_menu_icon_border_border_border\":\"solid\",\"st_hamburger_menu_icon_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_hamburger_menu_close_background_background_background\":\"classic\",\"st_hamburger_menu_close_border_border_border\":\"solid\",\"st_hamburger_menu_close_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"st_menu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_menu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_color_responsive\":\"\",\"st_submenu_panel_background_background_color\":\"\",\"st_submenu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_submenu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_wrapper_mobile_color_tablet_responsive_tablet\":\"\",\"st_menu_item_text_normal_color_responsive_tablet\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_item_text_active_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_submenu_item_indicator_color_responsive_tablet\":\"\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_icon_color_hover_responsive_tablet\":\"\",\"st_hamburger_menu_close_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_close_color_hover_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_wrapper_background_background_color\":\"\",\"st_hamburger_menu_close_background_background_color\":\"globals\\/colors?id=secondary\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_border_border_color\":\"\",\"st_hamburger_menu_close_background_hover_background_color\":\"globals\\/colors?id=accent\"},\"st_submenu_panel_box_shadow_box_shadow_box_shadow_type\":\"yes\",\"st_submenu_panel_box_shadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_submenu_item_indicator_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_submenu_item_indicator_border_border_border\":\"solid\",\"st_submenu_item_indicator_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_submenu_panel_background_background_color\":\"#FFFFFF\",\"st_hamburger_menu_icon_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_icon_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_close_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_hamburger_menu_close_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_hamburger_menu_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_menu_item_text_normal_color_responsive_tablet\":\"#6EC1E4\",\"st_menu_item_text_hover_color_responsive_tablet\":\"#54595F\",\"st_menu_item_text_active_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_close_background_background_color\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"#54595F\",\"st_hamburger_menu_position_responsive_mobile\":\"left\",\"st_hamburger_menu_close_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_hamburger_menu_close_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"st_mobile_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"st_menu_item_text_hover_color_responsive\":\"#54595F\",\"st_menu_item_text_active_color_responsive\":\"#54595F\",\"st_mobile_menu_object_fit_responsive_tablet\":\"cover\",\"st_mobile_menu_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_hamburger_menu_close_background_hover_background_background\":\"classic\",\"sg_menu_alignment_responsive\":\"center\",\"sg_menu_alignment_responsive_tablet\":\"flex-end\",\"sg_menu_alignment_responsive_mobile\":\"flex-end\",\"sg_menu_sub_position\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width_tablet\":\"auto\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_offset_orientation_h\":\"end\"},\"elements\":[],\"widgetType\":\"jkit_nav_menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1618,275,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1619,275,'_elementor_css','a:6:{s:4:\"time\";i:1721837914;s:5:\"fonts\";a:1:{i:0;s:5:\"Inter\";}s:5:\"icons\";a:4:{i:0;s:8:\"jkiticon\";i:3;s:9:\"fa-brands\";i:7;s:8:\"fa-solid\";i:9;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1620,276,'_wp_page_template','default'),(1621,276,'_elementor_edit_mode','builder'),(1622,276,'_elementor_template_type','wp-post'),(1623,276,'_elementor_version','3.23.2'),(1624,276,'_elementor_data','[{\"id\":\"1ed2d9f1\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":3,\"blur\":15,\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.06)\"},\"background_background\":\"classic\",\"z_index\":1,\"jet_sticky_section_sticky\":\"yes\",\"jet_sticky_section_sticky_z_index\":\"10\",\"jet_sticky_section_sticky_background_background\":\"classic\",\"jet_sticky_section_sticky_background_color\":\"#FFFFFF\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"z_index_tablet\":4,\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"z_index_mobile\":0,\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=f01b239\"}},\"elements\":[{\"id\":\"5a58714b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80.3490000000000037516656448133289813995361328125,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":20,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"18bb12d6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-map-marker1-light\",\"library\":\"jkiticon\"},\"title_text\":\"\",\"description_text\":\"123 Wall St\\nMiami, FL 12345\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"none\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#EAEAEA\",\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\",\"description_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"secondary_color\":\"\",\"title_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"view\":\"framed\",\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#3F5A29\",\"title_color\":\"#00160E\",\"description_color\":\"#00160E\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"secondary_color\":\"#FFFFFF00\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Heebo\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"294dea9a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-phone-call-line\",\"library\":\"jkiticon\"},\"title_text\":\"\",\"description_text\":\"+1 505 555 5555\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\",\"description_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"secondary_color\":\"\",\"title_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"view\":\"framed\",\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"tel:+1 505 555 5555\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"primary_color\":\"#3F5A29\",\"secondary_color\":\"#FFFFFF00\",\"title_color\":\"#00160E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"description_color\":\"#00160E\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Heebo\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_border_border\":\"none\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#EAEAEA\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"5e047152\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":19.650999999999999801048033987171947956085205078125,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":30,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":80},\"elements\":[{\"id\":\"976c2f8\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"jki jki-facebook-f\",\"library\":\"jkiticon\"},\"_id\":\"0fb8cc7\"},{\"social_icon\":{\"value\":\"fab fa-x-twitter\",\"library\":\"fa-brands\"},\"_id\":\"4be5bc7\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"147010a\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"df2ad14\"}],\"shape\":\"circle\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"hover_animation\":\"shrink\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=secondary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_secondary_color\":\"globals\\/colors?id=accent\",\"hover_primary_color\":\"globals\\/colors?id=accent\"},\"align_tablet\":\"right\",\"hover_primary_color\":\"#006943\",\"hover_secondary_color\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65d61e79\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"z_index\":1,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":3,\"blur\":15,\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.06)\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"z_index_tablet\":4,\"z_index_mobile\":0,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"49c5f53f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"z_index_tablet\":5,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7fd427a5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"z_index_mobile\":999},\"elements\":[{\"id\":\"a5ad795\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EAEAEA\"},\"elements\":[{\"id\":\"4b6500b7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":219,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-2.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":70}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2eb94bb5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.6580000000000012505552149377763271331787109375,\"align\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":80,\"hide_mobile\":\"hidden-phone\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align_tablet\":\"flex-end\"},\"elements\":[{\"id\":\"14c9c516\",\"elType\":\"widget\",\"settings\":{\"sg_menu_choose\":\"main-menu\",\"sg_mobile_menu_logo\":{\"id\":107,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_mobile_menu_logo_size_imagesize_size\":\"full\",\"sg_mobile_menu_icon\":{\"value\":\"jki jki-bars-solid\",\"library\":\"jkiticon\"},\"st_menu_wrapper_height_responsive\":{\"unit\":\"px\",\"size\":74,\"sizes\":[]},\"st_menu_wrapper_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"},\"st_submenu_item_indicator_margin_responsive\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_submenu_panel_padding_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_panel_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_background_background_background\":\"classic\",\"st_submenu_panel_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_position_responsive_tablet\":\"left\",\"st_hamburger_menu_icon_background_background_background\":\"classic\",\"st_hamburger_menu_icon_background_background_color\":\"#FFFFFF00\",\"st_hamburger_menu_icon_border_border_border\":\"solid\",\"st_hamburger_menu_icon_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_hamburger_menu_close_background_background_background\":\"classic\",\"st_hamburger_menu_close_border_border_border\":\"solid\",\"st_hamburger_menu_close_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"st_menu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_menu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_color_responsive\":\"\",\"st_submenu_panel_background_background_color\":\"\",\"st_submenu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_submenu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_wrapper_mobile_color_tablet_responsive_tablet\":\"\",\"st_menu_item_text_normal_color_responsive_tablet\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_item_text_active_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_submenu_item_indicator_color_responsive_tablet\":\"\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_icon_color_hover_responsive_tablet\":\"\",\"st_hamburger_menu_close_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_close_color_hover_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_wrapper_background_background_color\":\"\",\"st_hamburger_menu_close_background_background_color\":\"globals\\/colors?id=secondary\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_border_border_color\":\"\",\"st_hamburger_menu_close_background_hover_background_color\":\"globals\\/colors?id=accent\"},\"st_submenu_panel_box_shadow_box_shadow_box_shadow_type\":\"yes\",\"st_submenu_panel_box_shadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_submenu_item_indicator_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_submenu_item_indicator_border_border_border\":\"solid\",\"st_submenu_item_indicator_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_submenu_panel_background_background_color\":\"#FFFFFF\",\"st_hamburger_menu_icon_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_icon_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_close_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_hamburger_menu_close_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_hamburger_menu_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_menu_item_text_normal_color_responsive_tablet\":\"#6EC1E4\",\"st_menu_item_text_hover_color_responsive_tablet\":\"#54595F\",\"st_menu_item_text_active_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_close_background_background_color\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"#54595F\",\"st_hamburger_menu_position_responsive_mobile\":\"left\",\"st_hamburger_menu_close_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_hamburger_menu_close_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"st_mobile_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"st_menu_item_text_hover_color_responsive\":\"#54595F\",\"st_menu_item_text_active_color_responsive\":\"#54595F\",\"st_mobile_menu_object_fit_responsive_tablet\":\"cover\",\"st_mobile_menu_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_hamburger_menu_close_background_hover_background_background\":\"classic\",\"sg_menu_alignment_responsive\":\"center\",\"sg_menu_alignment_responsive_tablet\":\"flex-end\",\"sg_menu_alignment_responsive_mobile\":\"flex-end\",\"sg_menu_sub_position\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_z_index_mobile\":9999},\"elements\":[],\"widgetType\":\"jkit_nav_menu\"}],\"isInner\":true},{\"id\":\"5ef5f227\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"234dd6d2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"align\":\"right\",\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=558fe58\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"hover_animation\":\"float\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"00bb017\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"z_index\":1,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":3,\"blur\":15,\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.06)\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"z_index_tablet\":4,\"z_index_mobile\":0,\"hide_desktop\":\"hidden-desktop\"},\"elements\":[{\"id\":\"05b35c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index_tablet\":5,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"817d99c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"f9871fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"b9b486a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-2.png\",\"id\":219,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2c526\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position_tablet\":\"center\",\"content_position_mobile\":\"center\",\"align_tablet\":\"flex-end\",\"align_mobile\":\"flex-end\"},\"elements\":[{\"id\":\"665fe6d\",\"elType\":\"widget\",\"settings\":{\"sg_menu_choose\":\"main-menu\",\"sg_mobile_menu_logo\":{\"id\":107,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_mobile_menu_logo_size_imagesize_size\":\"full\",\"sg_mobile_menu_icon\":{\"value\":\"jki jki-bars-solid\",\"library\":\"jkiticon\"},\"st_menu_wrapper_height_responsive\":{\"unit\":\"px\",\"size\":74,\"sizes\":[]},\"st_menu_wrapper_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"},\"st_submenu_item_indicator_margin_responsive\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_submenu_panel_padding_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_panel_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_background_background_background\":\"classic\",\"st_submenu_panel_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_position_responsive_tablet\":\"left\",\"st_hamburger_menu_icon_background_background_background\":\"classic\",\"st_hamburger_menu_icon_background_background_color\":\"#FFFFFF00\",\"st_hamburger_menu_icon_border_border_border\":\"solid\",\"st_hamburger_menu_icon_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_hamburger_menu_close_background_background_background\":\"classic\",\"st_hamburger_menu_close_border_border_border\":\"solid\",\"st_hamburger_menu_close_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"st_menu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_menu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_color_responsive\":\"\",\"st_submenu_panel_background_background_color\":\"\",\"st_submenu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_submenu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_wrapper_mobile_color_tablet_responsive_tablet\":\"\",\"st_menu_item_text_normal_color_responsive_tablet\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_item_text_active_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_submenu_item_indicator_color_responsive_tablet\":\"\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_icon_color_hover_responsive_tablet\":\"\",\"st_hamburger_menu_close_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_close_color_hover_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_wrapper_background_background_color\":\"\",\"st_hamburger_menu_close_background_background_color\":\"globals\\/colors?id=secondary\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_border_border_color\":\"\",\"st_hamburger_menu_close_background_hover_background_color\":\"globals\\/colors?id=accent\"},\"st_submenu_panel_box_shadow_box_shadow_box_shadow_type\":\"yes\",\"st_submenu_panel_box_shadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_submenu_item_indicator_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_submenu_item_indicator_border_border_border\":\"solid\",\"st_submenu_item_indicator_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_submenu_panel_background_background_color\":\"#FFFFFF\",\"st_hamburger_menu_icon_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_icon_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_close_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_hamburger_menu_close_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_hamburger_menu_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_menu_item_text_normal_color_responsive_tablet\":\"#6EC1E4\",\"st_menu_item_text_hover_color_responsive_tablet\":\"#54595F\",\"st_menu_item_text_active_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_close_background_background_color\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"#54595F\",\"st_hamburger_menu_position_responsive_mobile\":\"left\",\"st_hamburger_menu_close_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_hamburger_menu_close_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"st_mobile_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"st_menu_item_text_hover_color_responsive\":\"#54595F\",\"st_menu_item_text_active_color_responsive\":\"#54595F\",\"st_mobile_menu_object_fit_responsive_tablet\":\"cover\",\"st_mobile_menu_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_hamburger_menu_close_background_hover_background_background\":\"classic\",\"sg_menu_alignment_responsive\":\"center\",\"sg_menu_alignment_responsive_tablet\":\"flex-end\",\"sg_menu_alignment_responsive_mobile\":\"flex-end\",\"sg_menu_sub_position\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width_tablet\":\"auto\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_offset_orientation_h\":\"end\"},\"elements\":[],\"widgetType\":\"jkit_nav_menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1625,276,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1626,276,'_elementor_css','a:6:{s:4:\"time\";i:1721837914;s:5:\"fonts\";a:1:{i:0;s:5:\"Inter\";}s:5:\"icons\";a:4:{i:0;s:8:\"jkiticon\";i:3;s:9:\"fa-brands\";i:7;s:8:\"fa-solid\";i:9;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1628,277,'_wp_page_template','default'),(1629,277,'_elementor_edit_mode','builder'),(1630,277,'_elementor_template_type','wp-post'),(1631,277,'_elementor_version','3.23.2'),(1632,277,'_elementor_data','[{\"id\":\"1ed2d9f1\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":3,\"blur\":15,\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.06)\"},\"background_background\":\"classic\",\"z_index\":1,\"jet_sticky_section_sticky\":\"yes\",\"jet_sticky_section_sticky_z_index\":\"10\",\"jet_sticky_section_sticky_background_background\":\"classic\",\"jet_sticky_section_sticky_background_color\":\"#FFFFFF\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"z_index_tablet\":4,\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"z_index_mobile\":0,\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=f01b239\"}},\"elements\":[{\"id\":\"5a58714b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80.3490000000000037516656448133289813995361328125,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":20,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"18bb12d6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-map-marker1-light\",\"library\":\"jkiticon\"},\"title_text\":\"\",\"description_text\":\"123 Wall St\\nMiami, FL 12345\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"none\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#EAEAEA\",\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\",\"description_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"secondary_color\":\"\",\"title_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"view\":\"framed\",\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#3F5A29\",\"title_color\":\"#00160E\",\"description_color\":\"#00160E\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"secondary_color\":\"#FFFFFF00\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Heebo\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"294dea9a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-phone-call-line\",\"library\":\"jkiticon\"},\"title_text\":\"\",\"description_text\":\"+1 505 555 5555\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\",\"description_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"secondary_color\":\"\",\"title_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"view\":\"framed\",\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"tel:+1 505 555 5555\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"primary_color\":\"#3F5A29\",\"secondary_color\":\"#FFFFFF00\",\"title_color\":\"#00160E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"description_color\":\"#00160E\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Heebo\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_border_border\":\"none\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#EAEAEA\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"5e047152\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":19.650999999999999801048033987171947956085205078125,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":30,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":80},\"elements\":[{\"id\":\"976c2f8\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"jki jki-facebook-f\",\"library\":\"jkiticon\"},\"_id\":\"0fb8cc7\"},{\"social_icon\":{\"value\":\"fab fa-x-twitter\",\"library\":\"fa-brands\"},\"_id\":\"4be5bc7\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"147010a\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"df2ad14\"}],\"shape\":\"circle\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"hover_animation\":\"shrink\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=secondary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_secondary_color\":\"globals\\/colors?id=accent\",\"hover_primary_color\":\"globals\\/colors?id=accent\"},\"align_tablet\":\"right\",\"hover_primary_color\":\"#006943\",\"hover_secondary_color\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65d61e79\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"z_index\":1,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":3,\"blur\":15,\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.06)\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"z_index_tablet\":4,\"z_index_mobile\":0,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"49c5f53f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"z_index_tablet\":5,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7fd427a5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"z_index_mobile\":999},\"elements\":[{\"id\":\"a5ad795\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EAEAEA\"},\"elements\":[{\"id\":\"4b6500b7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":219,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-2.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":70}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2eb94bb5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.6580000000000012505552149377763271331787109375,\"align\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":80,\"hide_mobile\":\"hidden-phone\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align_tablet\":\"flex-end\"},\"elements\":[{\"id\":\"14c9c516\",\"elType\":\"widget\",\"settings\":{\"sg_menu_choose\":\"main-menu\",\"sg_mobile_menu_logo\":{\"id\":107,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_mobile_menu_logo_size_imagesize_size\":\"full\",\"sg_mobile_menu_icon\":{\"value\":\"jki jki-bars-solid\",\"library\":\"jkiticon\"},\"st_menu_wrapper_height_responsive\":{\"unit\":\"px\",\"size\":74,\"sizes\":[]},\"st_menu_wrapper_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"},\"st_submenu_item_indicator_margin_responsive\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_submenu_panel_padding_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_panel_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_background_background_background\":\"classic\",\"st_submenu_panel_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_position_responsive_tablet\":\"left\",\"st_hamburger_menu_icon_background_background_background\":\"classic\",\"st_hamburger_menu_icon_background_background_color\":\"#FFFFFF00\",\"st_hamburger_menu_icon_border_border_border\":\"solid\",\"st_hamburger_menu_icon_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_hamburger_menu_close_background_background_background\":\"classic\",\"st_hamburger_menu_close_border_border_border\":\"solid\",\"st_hamburger_menu_close_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"st_menu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_menu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_color_responsive\":\"\",\"st_submenu_panel_background_background_color\":\"\",\"st_submenu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_submenu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_wrapper_mobile_color_tablet_responsive_tablet\":\"\",\"st_menu_item_text_normal_color_responsive_tablet\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_item_text_active_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_submenu_item_indicator_color_responsive_tablet\":\"\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_icon_color_hover_responsive_tablet\":\"\",\"st_hamburger_menu_close_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_close_color_hover_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_wrapper_background_background_color\":\"\",\"st_hamburger_menu_close_background_background_color\":\"globals\\/colors?id=secondary\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_border_border_color\":\"\",\"st_hamburger_menu_close_background_hover_background_color\":\"globals\\/colors?id=accent\"},\"st_submenu_panel_box_shadow_box_shadow_box_shadow_type\":\"yes\",\"st_submenu_panel_box_shadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_submenu_item_indicator_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_submenu_item_indicator_border_border_border\":\"solid\",\"st_submenu_item_indicator_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_submenu_panel_background_background_color\":\"#FFFFFF\",\"st_hamburger_menu_icon_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_icon_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_close_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_hamburger_menu_close_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_hamburger_menu_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_menu_item_text_normal_color_responsive_tablet\":\"#6EC1E4\",\"st_menu_item_text_hover_color_responsive_tablet\":\"#54595F\",\"st_menu_item_text_active_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_close_background_background_color\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"#54595F\",\"st_hamburger_menu_position_responsive_mobile\":\"left\",\"st_hamburger_menu_close_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_hamburger_menu_close_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"st_mobile_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"st_menu_item_text_hover_color_responsive\":\"#54595F\",\"st_menu_item_text_active_color_responsive\":\"#54595F\",\"st_mobile_menu_object_fit_responsive_tablet\":\"cover\",\"st_mobile_menu_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_hamburger_menu_close_background_hover_background_background\":\"classic\",\"sg_menu_alignment_responsive\":\"center\",\"sg_menu_alignment_responsive_tablet\":\"flex-end\",\"sg_menu_alignment_responsive_mobile\":\"flex-end\",\"sg_menu_sub_position\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_z_index_mobile\":9999},\"elements\":[],\"widgetType\":\"jkit_nav_menu\"}],\"isInner\":true},{\"id\":\"5ef5f227\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"234dd6d2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"align\":\"right\",\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=558fe58\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"hover_animation\":\"float\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"00bb017\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"z_index\":1,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":3,\"blur\":15,\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.06)\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"z_index_tablet\":4,\"z_index_mobile\":0,\"hide_desktop\":\"hidden-desktop\"},\"elements\":[{\"id\":\"05b35c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index_tablet\":5,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"817d99c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"f9871fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"b9b486a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-2.png\",\"id\":219,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2c526\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position_tablet\":\"center\",\"content_position_mobile\":\"center\",\"align_tablet\":\"flex-end\",\"align_mobile\":\"flex-end\"},\"elements\":[{\"id\":\"665fe6d\",\"elType\":\"widget\",\"settings\":{\"sg_menu_choose\":\"main-menu\",\"sg_mobile_menu_logo\":{\"id\":107,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_mobile_menu_logo_size_imagesize_size\":\"full\",\"sg_mobile_menu_icon\":{\"value\":\"jki jki-bars-solid\",\"library\":\"jkiticon\"},\"st_menu_wrapper_height_responsive\":{\"unit\":\"px\",\"size\":74,\"sizes\":[]},\"st_menu_wrapper_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"},\"st_submenu_item_indicator_margin_responsive\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_submenu_panel_padding_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_panel_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_background_background_background\":\"classic\",\"st_submenu_panel_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_position_responsive_tablet\":\"left\",\"st_hamburger_menu_icon_background_background_background\":\"classic\",\"st_hamburger_menu_icon_background_background_color\":\"#FFFFFF00\",\"st_hamburger_menu_icon_border_border_border\":\"solid\",\"st_hamburger_menu_icon_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_hamburger_menu_close_background_background_background\":\"classic\",\"st_hamburger_menu_close_border_border_border\":\"solid\",\"st_hamburger_menu_close_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"st_menu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_menu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_color_responsive\":\"\",\"st_submenu_panel_background_background_color\":\"\",\"st_submenu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_submenu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_wrapper_mobile_color_tablet_responsive_tablet\":\"\",\"st_menu_item_text_normal_color_responsive_tablet\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_item_text_active_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_submenu_item_indicator_color_responsive_tablet\":\"\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_icon_color_hover_responsive_tablet\":\"\",\"st_hamburger_menu_close_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_close_color_hover_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_wrapper_background_background_color\":\"\",\"st_hamburger_menu_close_background_background_color\":\"globals\\/colors?id=secondary\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_border_border_color\":\"\",\"st_hamburger_menu_close_background_hover_background_color\":\"globals\\/colors?id=accent\"},\"st_submenu_panel_box_shadow_box_shadow_box_shadow_type\":\"yes\",\"st_submenu_panel_box_shadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_submenu_item_indicator_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_submenu_item_indicator_border_border_border\":\"solid\",\"st_submenu_item_indicator_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_submenu_panel_background_background_color\":\"#FFFFFF\",\"st_hamburger_menu_icon_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_icon_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_close_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_hamburger_menu_close_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_hamburger_menu_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_menu_item_text_normal_color_responsive_tablet\":\"#6EC1E4\",\"st_menu_item_text_hover_color_responsive_tablet\":\"#54595F\",\"st_menu_item_text_active_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_close_background_background_color\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"#54595F\",\"st_hamburger_menu_position_responsive_mobile\":\"left\",\"st_hamburger_menu_close_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_hamburger_menu_close_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"st_mobile_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"st_menu_item_text_hover_color_responsive\":\"#54595F\",\"st_menu_item_text_active_color_responsive\":\"#54595F\",\"st_mobile_menu_object_fit_responsive_tablet\":\"cover\",\"st_mobile_menu_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_hamburger_menu_close_background_hover_background_background\":\"classic\",\"sg_menu_alignment_responsive\":\"center\",\"sg_menu_alignment_responsive_tablet\":\"flex-end\",\"sg_menu_alignment_responsive_mobile\":\"flex-end\",\"sg_menu_sub_position\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width_tablet\":\"auto\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_offset_orientation_h\":\"end\"},\"elements\":[],\"widgetType\":\"jkit_nav_menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1633,277,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1634,277,'_elementor_css','a:6:{s:4:\"time\";i:1721837965;s:5:\"fonts\";a:1:{i:0;s:5:\"Inter\";}s:5:\"icons\";a:4:{i:0;s:8:\"jkiticon\";i:3;s:9:\"fa-brands\";i:7;s:8:\"fa-solid\";i:9;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1635,278,'_wp_page_template','default'),(1636,278,'_elementor_edit_mode','builder'),(1637,278,'_elementor_template_type','wp-post'),(1638,278,'_elementor_version','3.23.2'),(1639,278,'_elementor_data','[{\"id\":\"1ed2d9f1\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":3,\"blur\":15,\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.06)\"},\"background_background\":\"classic\",\"z_index\":1,\"jet_sticky_section_sticky\":\"yes\",\"jet_sticky_section_sticky_z_index\":\"10\",\"jet_sticky_section_sticky_background_background\":\"classic\",\"jet_sticky_section_sticky_background_color\":\"#FFFFFF\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"z_index_tablet\":4,\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"z_index_mobile\":0,\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=f01b239\"}},\"elements\":[{\"id\":\"5a58714b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80.3490000000000037516656448133289813995361328125,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":20,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"18bb12d6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-map-marker1-light\",\"library\":\"jkiticon\"},\"title_text\":\"\",\"description_text\":\"123 Wall St\\nMiami, FL 12345\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"none\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#EAEAEA\",\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\",\"description_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"secondary_color\":\"\",\"title_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"view\":\"framed\",\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#3F5A29\",\"title_color\":\"#00160E\",\"description_color\":\"#00160E\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"secondary_color\":\"#FFFFFF00\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Heebo\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"294dea9a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-phone-call-line\",\"library\":\"jkiticon\"},\"title_text\":\"\",\"description_text\":\"+1 505 555 5555\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\",\"description_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"secondary_color\":\"\",\"title_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"view\":\"framed\",\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"tel:+1 505 555 5555\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"primary_color\":\"#3F5A29\",\"secondary_color\":\"#FFFFFF00\",\"title_color\":\"#00160E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"description_color\":\"#00160E\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Heebo\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_border_border\":\"none\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#EAEAEA\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"5e047152\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":19.650999999999999801048033987171947956085205078125,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":30,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":80},\"elements\":[{\"id\":\"976c2f8\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"jki jki-facebook-f\",\"library\":\"jkiticon\"},\"_id\":\"0fb8cc7\"},{\"social_icon\":{\"value\":\"fab fa-x-twitter\",\"library\":\"fa-brands\"},\"_id\":\"4be5bc7\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"147010a\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"df2ad14\"}],\"shape\":\"circle\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"hover_animation\":\"shrink\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=secondary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_secondary_color\":\"globals\\/colors?id=accent\",\"hover_primary_color\":\"globals\\/colors?id=accent\"},\"align_tablet\":\"right\",\"hover_primary_color\":\"#006943\",\"hover_secondary_color\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65d61e79\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"z_index\":1,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":3,\"blur\":15,\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.06)\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"z_index_tablet\":4,\"z_index_mobile\":0,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"49c5f53f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"z_index_tablet\":5,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7fd427a5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"z_index_mobile\":999},\"elements\":[{\"id\":\"a5ad795\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EAEAEA\"},\"elements\":[{\"id\":\"4b6500b7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":219,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-2.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":70}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2eb94bb5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.6580000000000012505552149377763271331787109375,\"align\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":80,\"hide_mobile\":\"hidden-phone\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align_tablet\":\"flex-end\"},\"elements\":[{\"id\":\"14c9c516\",\"elType\":\"widget\",\"settings\":{\"sg_menu_choose\":\"main-menu\",\"sg_mobile_menu_logo\":{\"id\":107,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_mobile_menu_logo_size_imagesize_size\":\"full\",\"sg_mobile_menu_icon\":{\"value\":\"jki jki-bars-solid\",\"library\":\"jkiticon\"},\"st_menu_wrapper_height_responsive\":{\"unit\":\"px\",\"size\":74,\"sizes\":[]},\"st_menu_wrapper_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"},\"st_submenu_item_indicator_margin_responsive\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_submenu_panel_padding_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_panel_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_background_background_background\":\"classic\",\"st_submenu_panel_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_position_responsive_tablet\":\"left\",\"st_hamburger_menu_icon_background_background_background\":\"classic\",\"st_hamburger_menu_icon_background_background_color\":\"#FFFFFF00\",\"st_hamburger_menu_icon_border_border_border\":\"solid\",\"st_hamburger_menu_icon_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_hamburger_menu_close_background_background_background\":\"classic\",\"st_hamburger_menu_close_border_border_border\":\"solid\",\"st_hamburger_menu_close_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"st_menu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_menu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_color_responsive\":\"\",\"st_submenu_panel_background_background_color\":\"\",\"st_submenu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_submenu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_wrapper_mobile_color_tablet_responsive_tablet\":\"\",\"st_menu_item_text_normal_color_responsive_tablet\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_item_text_active_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_submenu_item_indicator_color_responsive_tablet\":\"\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_icon_color_hover_responsive_tablet\":\"\",\"st_hamburger_menu_close_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_close_color_hover_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_wrapper_background_background_color\":\"\",\"st_hamburger_menu_close_background_background_color\":\"globals\\/colors?id=secondary\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_border_border_color\":\"\",\"st_hamburger_menu_close_background_hover_background_color\":\"globals\\/colors?id=accent\"},\"st_submenu_panel_box_shadow_box_shadow_box_shadow_type\":\"yes\",\"st_submenu_panel_box_shadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_submenu_item_indicator_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_submenu_item_indicator_border_border_border\":\"solid\",\"st_submenu_item_indicator_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_submenu_panel_background_background_color\":\"#FFFFFF\",\"st_hamburger_menu_icon_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_icon_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_close_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_hamburger_menu_close_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_hamburger_menu_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_menu_item_text_normal_color_responsive_tablet\":\"#6EC1E4\",\"st_menu_item_text_hover_color_responsive_tablet\":\"#54595F\",\"st_menu_item_text_active_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_close_background_background_color\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"#54595F\",\"st_hamburger_menu_position_responsive_mobile\":\"left\",\"st_hamburger_menu_close_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_hamburger_menu_close_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"st_mobile_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"st_menu_item_text_hover_color_responsive\":\"#54595F\",\"st_menu_item_text_active_color_responsive\":\"#54595F\",\"st_mobile_menu_object_fit_responsive_tablet\":\"cover\",\"st_mobile_menu_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_hamburger_menu_close_background_hover_background_background\":\"classic\",\"sg_menu_alignment_responsive\":\"center\",\"sg_menu_alignment_responsive_tablet\":\"flex-end\",\"sg_menu_alignment_responsive_mobile\":\"flex-end\",\"sg_menu_sub_position\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_z_index_mobile\":9999},\"elements\":[],\"widgetType\":\"jkit_nav_menu\"}],\"isInner\":true},{\"id\":\"5ef5f227\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"234dd6d2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"align\":\"right\",\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=558fe58\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"hover_animation\":\"float\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"00bb017\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"z_index\":1,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":3,\"blur\":15,\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.06)\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"z_index_tablet\":4,\"z_index_mobile\":0,\"hide_desktop\":\"hidden-desktop\"},\"elements\":[{\"id\":\"05b35c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index_tablet\":5,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"817d99c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"f9871fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"b9b486a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-2.png\",\"id\":219,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2c526\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position_tablet\":\"center\",\"content_position_mobile\":\"center\",\"align_tablet\":\"flex-end\",\"align_mobile\":\"flex-end\"},\"elements\":[{\"id\":\"665fe6d\",\"elType\":\"widget\",\"settings\":{\"sg_menu_choose\":\"main-menu\",\"sg_mobile_menu_logo\":{\"id\":107,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_mobile_menu_logo_size_imagesize_size\":\"full\",\"sg_mobile_menu_icon\":{\"value\":\"jki jki-bars-solid\",\"library\":\"jkiticon\"},\"st_menu_wrapper_height_responsive\":{\"unit\":\"px\",\"size\":74,\"sizes\":[]},\"st_menu_wrapper_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"},\"st_submenu_item_indicator_margin_responsive\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_submenu_panel_padding_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_panel_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_background_background_background\":\"classic\",\"st_submenu_panel_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_position_responsive_tablet\":\"left\",\"st_hamburger_menu_icon_background_background_background\":\"classic\",\"st_hamburger_menu_icon_background_background_color\":\"#FFFFFF00\",\"st_hamburger_menu_icon_border_border_border\":\"solid\",\"st_hamburger_menu_icon_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_hamburger_menu_close_background_background_background\":\"classic\",\"st_hamburger_menu_close_border_border_border\":\"solid\",\"st_hamburger_menu_close_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"st_menu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_menu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_color_responsive\":\"\",\"st_submenu_panel_background_background_color\":\"\",\"st_submenu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_submenu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_wrapper_mobile_color_tablet_responsive_tablet\":\"\",\"st_menu_item_text_normal_color_responsive_tablet\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_item_text_active_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_submenu_item_indicator_color_responsive_tablet\":\"\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_icon_color_hover_responsive_tablet\":\"\",\"st_hamburger_menu_close_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_close_color_hover_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_wrapper_background_background_color\":\"\",\"st_hamburger_menu_close_background_background_color\":\"globals\\/colors?id=secondary\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_border_border_color\":\"\",\"st_hamburger_menu_close_background_hover_background_color\":\"globals\\/colors?id=accent\"},\"st_submenu_panel_box_shadow_box_shadow_box_shadow_type\":\"yes\",\"st_submenu_panel_box_shadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_submenu_item_indicator_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_submenu_item_indicator_border_border_border\":\"solid\",\"st_submenu_item_indicator_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_submenu_panel_background_background_color\":\"#FFFFFF\",\"st_hamburger_menu_icon_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_icon_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_close_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_hamburger_menu_close_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_hamburger_menu_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_menu_item_text_normal_color_responsive_tablet\":\"#6EC1E4\",\"st_menu_item_text_hover_color_responsive_tablet\":\"#54595F\",\"st_menu_item_text_active_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_close_background_background_color\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"#54595F\",\"st_hamburger_menu_position_responsive_mobile\":\"left\",\"st_hamburger_menu_close_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_hamburger_menu_close_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"st_mobile_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"st_menu_item_text_hover_color_responsive\":\"#54595F\",\"st_menu_item_text_active_color_responsive\":\"#54595F\",\"st_mobile_menu_object_fit_responsive_tablet\":\"cover\",\"st_mobile_menu_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_hamburger_menu_close_background_hover_background_background\":\"classic\",\"sg_menu_alignment_responsive\":\"center\",\"sg_menu_alignment_responsive_tablet\":\"flex-end\",\"sg_menu_alignment_responsive_mobile\":\"flex-end\",\"sg_menu_sub_position\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width_tablet\":\"auto\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_offset_orientation_h\":\"end\"},\"elements\":[],\"widgetType\":\"jkit_nav_menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1640,278,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1641,278,'_elementor_css','a:6:{s:4:\"time\";i:1721837965;s:5:\"fonts\";a:1:{i:0;s:5:\"Inter\";}s:5:\"icons\";a:4:{i:0;s:8:\"jkiticon\";i:3;s:9:\"fa-brands\";i:7;s:8:\"fa-solid\";i:9;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1642,279,'_wp_page_template','default'),(1643,279,'_elementor_edit_mode','builder'),(1644,279,'_elementor_template_type','wp-post'),(1645,279,'_elementor_version','3.23.2'),(1646,279,'_elementor_data','[{\"id\":\"1ed2d9f1\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":3,\"blur\":15,\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.06)\"},\"background_background\":\"classic\",\"z_index\":1,\"jet_sticky_section_sticky\":\"yes\",\"jet_sticky_section_sticky_z_index\":\"10\",\"jet_sticky_section_sticky_background_background\":\"classic\",\"jet_sticky_section_sticky_background_color\":\"#FFFFFF\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"z_index_tablet\":4,\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false},\"z_index_mobile\":0,\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"border_color\":\"globals\\/colors?id=f01b239\"}},\"elements\":[{\"id\":\"5a58714b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":80.3490000000000037516656448133289813995361328125,\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":20,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"18bb12d6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-map-marker1-light\",\"library\":\"jkiticon\"},\"title_text\":\"\",\"description_text\":\"123 Wall St\\nMiami, FL 12345\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"none\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#EAEAEA\",\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\",\"description_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"secondary_color\":\"\",\"title_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"view\":\"framed\",\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#3F5A29\",\"title_color\":\"#00160E\",\"description_color\":\"#00160E\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"secondary_color\":\"#FFFFFF00\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Heebo\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"294dea9a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-phone-call-line\",\"library\":\"jkiticon\"},\"title_text\":\"\",\"description_text\":\"+1 505 555 5555\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"primary_color\":\"\",\"description_color\":\"globals\\/colors?id=primary\",\"title_typography_typography\":\"\",\"secondary_color\":\"\",\"title_color\":\"globals\\/colors?id=primary\",\"description_typography_typography\":\"globals\\/typography?id=text\"},\"view\":\"framed\",\"icon_padding\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"tel:+1 505 555 5555\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"primary_color\":\"#3F5A29\",\"secondary_color\":\"#FFFFFF00\",\"title_color\":\"#00160E\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Inter\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"description_color\":\"#00160E\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Heebo\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_border_border\":\"none\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#EAEAEA\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":\"\"},{\"id\":\"5e047152\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":19.650999999999999801048033987171947956085205078125,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":30,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":80},\"elements\":[{\"id\":\"976c2f8\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"jki jki-facebook-f\",\"library\":\"jkiticon\"},\"_id\":\"0fb8cc7\"},{\"social_icon\":{\"value\":\"fab fa-x-twitter\",\"library\":\"fa-brands\"},\"_id\":\"4be5bc7\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"147010a\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"df2ad14\"}],\"shape\":\"circle\",\"align\":\"right\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"hover_animation\":\"shrink\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=secondary\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"icon_secondary_color\":\"globals\\/colors?id=accent\",\"hover_primary_color\":\"globals\\/colors?id=accent\"},\"align_tablet\":\"right\",\"hover_primary_color\":\"#006943\",\"hover_secondary_color\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"65d61e79\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"z_index\":1,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":3,\"blur\":15,\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.06)\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"z_index_tablet\":4,\"z_index_mobile\":0,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"49c5f53f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"z_index_tablet\":5,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7fd427a5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"z_index_mobile\":999},\"elements\":[{\"id\":\"a5ad795\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EAEAEA\"},\"elements\":[{\"id\":\"4b6500b7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":219,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-2.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"align_mobile\":\"center\",\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":70}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2eb94bb5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":63.6580000000000012505552149377763271331787109375,\"align\":\"center\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":80,\"hide_mobile\":\"hidden-phone\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align_tablet\":\"flex-end\"},\"elements\":[{\"id\":\"14c9c516\",\"elType\":\"widget\",\"settings\":{\"sg_menu_choose\":\"main-menu\",\"sg_mobile_menu_logo\":{\"id\":107,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_mobile_menu_logo_size_imagesize_size\":\"full\",\"sg_mobile_menu_icon\":{\"value\":\"jki jki-bars-solid\",\"library\":\"jkiticon\"},\"st_menu_wrapper_height_responsive\":{\"unit\":\"px\",\"size\":74,\"sizes\":[]},\"st_menu_wrapper_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"},\"st_submenu_item_indicator_margin_responsive\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_submenu_panel_padding_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_panel_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_background_background_background\":\"classic\",\"st_submenu_panel_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_position_responsive_tablet\":\"left\",\"st_hamburger_menu_icon_background_background_background\":\"classic\",\"st_hamburger_menu_icon_background_background_color\":\"#FFFFFF00\",\"st_hamburger_menu_icon_border_border_border\":\"solid\",\"st_hamburger_menu_icon_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_hamburger_menu_close_background_background_background\":\"classic\",\"st_hamburger_menu_close_border_border_border\":\"solid\",\"st_hamburger_menu_close_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"st_menu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_menu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_color_responsive\":\"\",\"st_submenu_panel_background_background_color\":\"\",\"st_submenu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_submenu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_wrapper_mobile_color_tablet_responsive_tablet\":\"\",\"st_menu_item_text_normal_color_responsive_tablet\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_item_text_active_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_submenu_item_indicator_color_responsive_tablet\":\"\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_icon_color_hover_responsive_tablet\":\"\",\"st_hamburger_menu_close_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_close_color_hover_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_wrapper_background_background_color\":\"\",\"st_hamburger_menu_close_background_background_color\":\"globals\\/colors?id=secondary\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_border_border_color\":\"\",\"st_hamburger_menu_close_background_hover_background_color\":\"globals\\/colors?id=accent\"},\"st_submenu_panel_box_shadow_box_shadow_box_shadow_type\":\"yes\",\"st_submenu_panel_box_shadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_submenu_item_indicator_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_submenu_item_indicator_border_border_border\":\"solid\",\"st_submenu_item_indicator_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_submenu_panel_background_background_color\":\"#FFFFFF\",\"st_hamburger_menu_icon_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_icon_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_close_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_hamburger_menu_close_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_hamburger_menu_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_menu_item_text_normal_color_responsive_tablet\":\"#6EC1E4\",\"st_menu_item_text_hover_color_responsive_tablet\":\"#54595F\",\"st_menu_item_text_active_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_close_background_background_color\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"#54595F\",\"st_hamburger_menu_position_responsive_mobile\":\"left\",\"st_hamburger_menu_close_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_hamburger_menu_close_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"st_mobile_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"st_menu_item_text_hover_color_responsive\":\"#54595F\",\"st_menu_item_text_active_color_responsive\":\"#54595F\",\"st_mobile_menu_object_fit_responsive_tablet\":\"cover\",\"st_mobile_menu_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_hamburger_menu_close_background_hover_background_background\":\"classic\",\"sg_menu_alignment_responsive\":\"center\",\"sg_menu_alignment_responsive_tablet\":\"flex-end\",\"sg_menu_alignment_responsive_mobile\":\"flex-end\",\"sg_menu_sub_position\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_z_index_mobile\":9999},\"elements\":[],\"widgetType\":\"jkit_nav_menu\"}],\"isInner\":true},{\"id\":\"5ef5f227\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"234dd6d2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"align\":\"right\",\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=558fe58\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"hover_animation\":\"float\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"00bb017\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"z_index\":1,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":3,\"blur\":15,\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.06)\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"z_index_tablet\":4,\"z_index_mobile\":0,\"hide_desktop\":\"hidden-desktop\"},\"elements\":[{\"id\":\"05b35c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index_tablet\":5,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"817d99c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"f9871fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"b9b486a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-2.png\",\"id\":219,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9e2c526\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position_tablet\":\"center\",\"content_position_mobile\":\"center\",\"align_tablet\":\"flex-end\",\"align_mobile\":\"flex-end\"},\"elements\":[{\"id\":\"665fe6d\",\"elType\":\"widget\",\"settings\":{\"sg_menu_choose\":\"main-menu\",\"sg_mobile_menu_logo\":{\"id\":107,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Prestige-Luxury-Cleanings-LLC-logo-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_mobile_menu_logo_size_imagesize_size\":\"full\",\"sg_mobile_menu_icon\":{\"value\":\"jki jki-bars-solid\",\"library\":\"jkiticon\"},\"st_menu_wrapper_height_responsive\":{\"unit\":\"px\",\"size\":74,\"sizes\":[]},\"st_menu_wrapper_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator\":{\"value\":\"fas fa-chevron-down\",\"library\":\"fa-solid\"},\"st_submenu_item_indicator_margin_responsive\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_submenu_panel_padding_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_panel_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_background_background_background\":\"classic\",\"st_submenu_panel_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_position_responsive_tablet\":\"left\",\"st_hamburger_menu_icon_background_background_background\":\"classic\",\"st_hamburger_menu_icon_background_background_color\":\"#FFFFFF00\",\"st_hamburger_menu_icon_border_border_border\":\"solid\",\"st_hamburger_menu_icon_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_hamburger_menu_close_background_background_background\":\"classic\",\"st_hamburger_menu_close_border_border_border\":\"solid\",\"st_hamburger_menu_close_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"st_menu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_menu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_color_responsive\":\"\",\"st_submenu_panel_background_background_color\":\"\",\"st_submenu_item_text_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_submenu_item_text_hover_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_text_active_color_responsive\":\"globals\\/colors?id=accent\",\"st_submenu_item_typography_content_typography_typography\":\"globals\\/typography?id=eef9e43\",\"st_menu_wrapper_mobile_color_tablet_responsive_tablet\":\"\",\"st_menu_item_text_normal_color_responsive_tablet\":\"globals\\/colors?id=primary\",\"st_menu_item_text_hover_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_item_text_active_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_submenu_item_indicator_color_responsive_tablet\":\"\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_icon_color_hover_responsive_tablet\":\"\",\"st_hamburger_menu_close_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_close_color_hover_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_menu_wrapper_background_background_color\":\"\",\"st_hamburger_menu_close_background_background_color\":\"globals\\/colors?id=secondary\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"globals\\/colors?id=accent\",\"st_submenu_item_indicator_border_border_color\":\"\",\"st_hamburger_menu_close_background_hover_background_color\":\"globals\\/colors?id=accent\"},\"st_submenu_panel_box_shadow_box_shadow_box_shadow_type\":\"yes\",\"st_submenu_panel_box_shadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_submenu_item_indicator_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_submenu_item_indicator_border_border_border\":\"solid\",\"st_submenu_item_indicator_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_submenu_panel_background_background_color\":\"#FFFFFF\",\"st_hamburger_menu_icon_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_hamburger_menu_icon_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_close_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_hamburger_menu_close_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_hamburger_menu_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"st_menu_item_text_normal_color_responsive_tablet\":\"#6EC1E4\",\"st_menu_item_text_hover_color_responsive_tablet\":\"#54595F\",\"st_menu_item_text_active_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"#54595F\",\"st_hamburger_menu_close_background_background_color\":\"#54595F\",\"st_hamburger_menu_icon_color_responsive_mobile\":\"#54595F\",\"st_hamburger_menu_position_responsive_mobile\":\"left\",\"st_hamburger_menu_close_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_hamburger_menu_close_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"st_mobile_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":120,\"sizes\":[]},\"st_menu_item_text_hover_color_responsive\":\"#54595F\",\"st_menu_item_text_active_color_responsive\":\"#54595F\",\"st_mobile_menu_object_fit_responsive_tablet\":\"cover\",\"st_mobile_menu_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_hamburger_menu_close_background_hover_background_background\":\"classic\",\"sg_menu_alignment_responsive\":\"center\",\"sg_menu_alignment_responsive_tablet\":\"flex-end\",\"sg_menu_alignment_responsive_mobile\":\"flex-end\",\"sg_menu_sub_position\":\"left\",\"st_hamburger_menu_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width_tablet\":\"auto\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_offset_orientation_h\":\"end\"},\"elements\":[],\"widgetType\":\"jkit_nav_menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1647,279,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1648,279,'_elementor_css','a:6:{s:4:\"time\";i:1721837965;s:5:\"fonts\";a:1:{i:0;s:5:\"Inter\";}s:5:\"icons\";a:4:{i:0;s:8:\"jkiticon\";i:3;s:9:\"fa-brands\";i:7;s:8:\"fa-solid\";i:9;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1649,41,'_elementor_css','a:6:{s:4:\"time\";i:1721838063;s:5:\"fonts\";a:1:{i:0;s:5:\"Inter\";}s:5:\"icons\";a:4:{i:0;s:8:\"jkiticon\";i:3;s:9:\"fa-brands\";i:7;s:8:\"fa-solid\";i:9;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1650,280,'_elementor_edit_mode','builder'),(1651,280,'_elementor_template_type','wp-page'),(1652,280,'_elementor_version','3.23.2'),(1653,280,'_wp_page_template','default'),(1654,280,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1655,280,'_elementor_data','[{\"id\":\"35495243\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"Eldery male gardener using scissors for bushes\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"160\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0,\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_size_tablet\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"top center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00160E\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b\":\"#00000054\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_slideshow_gallery\":[{\"id\":154,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-02-5.jpg\"},{\"id\":155,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-03-3.jpg\"},{\"id\":156,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-04-3.jpg\"},{\"id\":157,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-01-5.jpg\"}]},\"elements\":[{\"id\":\"739a26d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":65,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=06a34e7\"}},\"elements\":[{\"id\":\"132d1a8e\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Complete For All\",\"sg_title_focused\":\" Landscape \",\"sg_title_after\":\" Service And Maintenance\",\"sg_title_html_tag\":\"h1\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=primary\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"7c49583a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"635cb25b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"23cf340e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37.85499999999999687361196265555918216705322265625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":48,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"1c4c950d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4768b6f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":62.14500000000000312638803734444081783294677734375,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"flex-start\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":52,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"34c0badb\",\"elType\":\"widget\",\"settings\":{\"sg_video_button_title\":\"Play Video\",\"sg_video_button_icon\":{\"value\":\"jki jki-play\",\"library\":\"jkiticon\"},\"sg_video_url\":\"#\",\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_width_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_line_height_responsive\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#FFD402\",\"st_button_normal_glow_color_responsive\":\"#00694361\",\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"_element_width\":\"auto\",\"__globals__\":{\"st_button_normal_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=accent\",\"st_border_normal_border_border_color\":\"\",\"st_button_hover_text_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_glow_color_responsive\":\"\"},\"st_button_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_button_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_width_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_line_height_responsive_mobile\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"st_border_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_border_normal_border_border_color\":\"#FFD027\",\"st_button_line_height_responsive_tablet\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"st_button_normal_background_background_color\":\"#006943\",\"st_button_hover_text_color_responsive\":\"#006943\",\"st_button_hover_background_background_color\":\"#FFD402\",\"sg_video_auto_play\":\"\",\"sg_video_mute\":\"\"},\"elements\":[],\"widgetType\":\"jkit_video_button\"},{\"id\":\"232ec8da\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Intro\",\"align\":\"right\",\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"hide_mobile\":\"hidden-mobile\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#00160E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49b348ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"edc2dbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.00200000000000244426701101474463939666748046875,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e2246bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Prestige Luxury Cleanings LLC\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"139cc45f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Landscaping And Garden Care Services\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dc78e71\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"597dc67d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"26cf3840\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b19bda0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":167,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"980\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a46c929\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c4d8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Public Liability Insurance\",\"_id\":\"a978734\"},{\"text\":\"Environmentally Friendly\",\"_id\":\"1cd10a1\"},{\"text\":\"On Time, Every Time\",\"_id\":\"c6767db\"},{\"text\":\"Beautiful Garden Designs\",\"_id\":\"d4743f4\"},{\"text\":\"Modern Machinery And Tool\",\"_id\":\"535c17d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"398321ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4c7c15d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.9129999999999967030817060731351375579833984375,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5683e90d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":162,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"860\",\"height\":\"980\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b6190b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":163,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"-59\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"250636f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"713aa588\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"51a71b71\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#00160E\",\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=primary\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=06a34e7\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"st_content_title_color_responsive\":\"#7F7F7F\",\"st_super_color_responsive\":\"#FFD402\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\",\"sg_setting_html_tag\":\"span\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5557874f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"73847855\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":174,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/garden-maintenance-performed-by-pro-gardener-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"b1058a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":224,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":478,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":325,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"69098afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"40\",\"bottom\":\"80\",\"left\":\"40\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"7cb7bf82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91cb5d9\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26358abf\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Have The Perfect Solution For Your Landscape Problems\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15a36cc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42c8d36c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7114454f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76f24ca8\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Variation Gardening\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"138cc39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28a78a06\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Expert Landscapers\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c5ac2bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38fdb183\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3ce0b95b\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Affordable Price\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-save-money-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4c80f133\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7451fb11\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Free Consultation\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-Consultancy-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e93f2c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"39a46e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6773b2a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"87647bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Providing Services For All Your Residential And Commercial Needs.\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3d4509\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30164d28\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e8639b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":142,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-services.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fa92c14\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2c434fb3\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"5abe2e18\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33425b9f\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Residential And Commercial Projects\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"472ed309\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"67cb221c\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e6d8a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":142,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-services.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd233da\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6535a16\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"937e2e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7aee\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Lawn Services\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"d9723d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"c908972\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37c1cce6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":143,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/driveway-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b3e60ba\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3b291bbf\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"20b91942\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5649f719\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Driveway Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6300b69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"256ddf68\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d41e618\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3735f0b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":144,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/deck-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"741128a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3691562\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3c8a0e6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5eb1b3b9\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Deck Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"25f37292\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"61c9ff8e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8781ee3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":145,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/weed-control.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd84c7d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"14f7965\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fb2459e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0582197\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Weed Control \",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"f7b0fa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0197d9e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f3de9c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":146,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/grass-feed.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"75ba950\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"23edbf4\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"ad70b3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1c4ac7\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Grass Feed\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6f592ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0043a3b\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"790dd775\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"360\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"160\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"140\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"background_overlay_color_b\":\"#000414\",\"background_overlay_image\":{\"id\":186,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/a-gardener-watering-plants-in-a-flowerbed-2RT8DWL-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]}},\"elements\":[{\"id\":\"a2ed5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7e37f762\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Landscaping\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a092069\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d5099\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need Someone To Take Care Your Garden & Lawn?\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=07ee36d\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1198756c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"66521a56\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":20,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":4},\"elements\":[{\"id\":\"1a89d099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.5090000000000003410605131648480892181396484375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"id\":191,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/happy-gardeners-with-plants-and-lawn-mower-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"space-between\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_color\":\"#FFFFFF00\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":9,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"46b821c1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":219,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":183,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"449971a9\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Make Appointment & Take Care Your Garden\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=secondary\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=93191b3\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_content_title_color_hover_responsive\":\"#FFFFFF\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#FFFFFF\",\"st_icon_color_responsive\":\"#00E5CC\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#00E5CC\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":false},{\"id\":\"13747b6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.4909999999999996589394868351519107818603515625,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a13f42e\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"178***1721830795182\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fde8487\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"59883b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1617542a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Process\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29c7aa96\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Complete Every Step Carefully\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ced0d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d62463d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18cf7834\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"41f79872\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-consult-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consultation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65e1b761\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"span\",\"title_color\":\"#FFD402\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#006943\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12cdbf13\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4175d29\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-pencil_art-light\",\"library\":\"jkiticon\"},\"title_text\":\"Design Installation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2adabf01\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b628\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"569b3221\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consturction \",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"67d6b2e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6fff79c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53c9a76e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"title_text\":\"Finished Work\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"555aace0\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d57540b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"71\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardening-background-with-garden-tolls-A9BGNJU.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"147831a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"5a53d120\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"20\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Years of Experience\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"488f4727\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"6b8f6eae\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"76666759\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f532f9e\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"2850\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Happy Customers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"265fd738\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5473dc22\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"64\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Expert Landscapers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b38731e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4945f2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"627cd42c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65e3182\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.56499999999999772626324556767940521240234375},\"elements\":[{\"id\":\"43108b53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Projects\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45328989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Project We Have Done\\n\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"f382082\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.49900000000000233058017329312860965728759765625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":40,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"55ecfb57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"67afcbfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.0330000000000012505552149377763271331787109375,\"_inline_size_tablet\":23,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4989aa04\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Projects\",\"align\":\"right\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"left\",\"hover_animation\":\"float\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"32515d84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"3f5753f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"21982cfb\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":196,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Cutting-Leaf.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Cutting Leaf\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"404dc561\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"58d29b54\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":197,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Home-Garden.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Home Garden\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"3bff1dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"3c24185a\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":195,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/build-backyard.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Build Backyard\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_image_height_responsive_tablet\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b3cb58d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_image\":{\"id\":201,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-moving-aerial-photo-Z8KDGJ9-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_color\":\"#0000007D\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"79705206\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"51c9a732\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73b2fe0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"What They Says About Us\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4876e632\",\"elType\":\"widget\",\"settings\":{\"sg_layout_testimonial_choose\":\"style-2\",\"sg_testimonials_image_size_imagesize_size\":\"medium\",\"sg_testimonials_list\":[{\"sg_testimonials_list_client_avatar\":{\"id\":\"75\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/3SUMAU.jpg\"},\"_id\":\"6e9b2e1\",\"sg_testimonials_list_client_name\":\"Regan Traynor\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"76\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/CASCKD8.jpg\"},\"sg_testimonials_list_client_name\":\"Maisha Dunn\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"d069a43\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"77\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/MKLVKTE.jpg\"},\"sg_testimonials_list_client_name\":\"Reis Leonard\",\"sg_testimonials_list_designation\":\"Businessman\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"05c24f5\"}],\"st_wrapper_alignment_responsive\":\"left\",\"st_client_name_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_description_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_client_name_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_client_designation_normal_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_client_designation_normal_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=d343bdf\",\"st_rating_color_responsive\":\"\",\"st_client_name_normal_color_responsive\":\"\",\"st_quote_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_layout_background_background_color\":\"\"},\"st_layout_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_layout_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_wrapper_fix_height\":\"\",\"sg_setting_autoplay\":\"yes\",\"sg_setting_autoplay_pause\":\"\",\"sg_setting_arrow\":\"\",\"sg_setting_arrow_position\":\"middle-edge\",\"sg_setting_dots\":\"\",\"sg_setting_quote\":\"yes\",\"sg_setting_rating\":\"\",\"st_layout_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_layout_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_slide_show_responsive\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"sg_setting_quote_icon\":{\"value\":\"jki jki-quote-light\",\"library\":\"jkiticon\"},\"sg_layout_image_position\":\"below\",\"st_layout_background_background_background\":\"classic\",\"st_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position\":\"\",\"st_quote_override_position_top_responsive\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"st_quote_override_position_left_responsive\":{\"unit\":\"px\",\"size\":442,\"sizes\":[]},\"st_client_name_normal_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_quote_normal_font_size_responsive\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"st_client_image_margin_responsive\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_rating_font_size_responsive\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"st_rating_margin_right_responsive\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_setting_slide_show_responsive_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"st_wrapper_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position_top_responsive_tablet\":{\"unit\":\"px\",\"size\":249,\"sizes\":[]},\"st_quote_override_position_top_responsive_mobile\":{\"unit\":\"px\",\"size\":193,\"sizes\":[]},\"st_quote_override_position_left_responsive_tablet\":{\"unit\":\"px\",\"size\":265,\"sizes\":[]},\"st_quote_override_position_left_responsive_mobile\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]},\"st_quote_normal_font_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"st_description_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_normal_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64afd05f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"746d276b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30338dfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f950be4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ca735b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5d6ca3ad\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_title_hover_color_responsive\":\"globals\\/colors?id=secondary\",\"st_readmore_hover_color_responsive\":\"globals\\/colors?id=secondary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#646974\",\"st_excerpt_color_responsive\":\"#646974\",\"st_title_normal_color_responsive\":\"#272B36\",\"st_thumbnail_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_title_hover_color_responsive\":\"#FA8D25\",\"st_readmore_normal_color_responsive\":\"#FA8D25\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":false}],\"isInner\":false}]'),(1656,280,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1657,280,'_elementor_css','a:6:{s:4:\"time\";i:1721835057;s:5:\"fonts\";a:1:{i:0;s:5:\"Inter\";}s:5:\"icons\";a:3:{i:0;s:0:\"\";i:1;s:8:\"jkiticon\";i:3;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1658,281,'_elementor_edit_mode','builder'),(1659,281,'_elementor_template_type','wp-page'),(1660,281,'_elementor_version','3.23.2'),(1661,281,'_wp_page_template','default'),(1662,281,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1663,281,'_elementor_data','[{\"id\":\"35495243\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"Eldery male gardener using scissors for bushes\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"160\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0,\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_size_tablet\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"top center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00160E\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b\":\"#00000054\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_slideshow_gallery\":[{\"id\":154,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-02-5.jpg\"},{\"id\":155,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-03-3.jpg\"},{\"id\":156,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-04-3.jpg\"},{\"id\":157,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-01-5.jpg\"}]},\"elements\":[{\"id\":\"739a26d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":65,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=06a34e7\"}},\"elements\":[{\"id\":\"132d1a8e\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Complete For All\",\"sg_title_focused\":\" Landscape \",\"sg_title_after\":\" Service And Maintenance\",\"sg_title_html_tag\":\"h1\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=primary\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"7c49583a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"635cb25b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"23cf340e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37.85499999999999687361196265555918216705322265625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":48,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"1c4c950d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4768b6f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":62.14500000000000312638803734444081783294677734375,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"flex-start\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":52,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"34c0badb\",\"elType\":\"widget\",\"settings\":{\"sg_video_button_title\":\"Play Video\",\"sg_video_button_icon\":{\"value\":\"jki jki-play\",\"library\":\"jkiticon\"},\"sg_video_url\":\"#\",\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_width_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_line_height_responsive\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#FFD402\",\"st_button_normal_glow_color_responsive\":\"#00694361\",\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"_element_width\":\"auto\",\"__globals__\":{\"st_button_normal_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=accent\",\"st_border_normal_border_border_color\":\"\",\"st_button_hover_text_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_glow_color_responsive\":\"\"},\"st_button_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_button_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_width_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_line_height_responsive_mobile\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"st_border_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_border_normal_border_border_color\":\"#FFD027\",\"st_button_line_height_responsive_tablet\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"st_button_normal_background_background_color\":\"#006943\",\"st_button_hover_text_color_responsive\":\"#006943\",\"st_button_hover_background_background_color\":\"#FFD402\",\"sg_video_auto_play\":\"\",\"sg_video_mute\":\"\"},\"elements\":[],\"widgetType\":\"jkit_video_button\"},{\"id\":\"232ec8da\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Intro\",\"align\":\"right\",\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"hide_mobile\":\"hidden-mobile\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#00160E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49b348ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"edc2dbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.00200000000000244426701101474463939666748046875,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e2246bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Prestige Luxury Cleanings LLC\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"139cc45f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Landscaping And Garden Care Services\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dc78e71\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"597dc67d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"26cf3840\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b19bda0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":167,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"980\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a46c929\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c4d8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Public Liability Insurance\",\"_id\":\"a978734\"},{\"text\":\"Environmentally Friendly\",\"_id\":\"1cd10a1\"},{\"text\":\"On Time, Every Time\",\"_id\":\"c6767db\"},{\"text\":\"Beautiful Garden Designs\",\"_id\":\"d4743f4\"},{\"text\":\"Modern Machinery And Tool\",\"_id\":\"535c17d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"398321ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4c7c15d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.9129999999999967030817060731351375579833984375,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5683e90d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":162,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"860\",\"height\":\"980\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b6190b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":163,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"-59\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"250636f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"713aa588\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"51a71b71\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#00160E\",\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=primary\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=06a34e7\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"st_content_title_color_responsive\":\"#7F7F7F\",\"st_super_color_responsive\":\"#FFD402\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\",\"sg_setting_html_tag\":\"span\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5557874f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"73847855\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":174,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/garden-maintenance-performed-by-pro-gardener-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"b1058a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":224,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":478,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":325,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"69098afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"40\",\"bottom\":\"80\",\"left\":\"40\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"7cb7bf82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91cb5d9\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26358abf\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Have The Perfect Solution For Your Landscape Problems\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15a36cc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42c8d36c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7114454f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76f24ca8\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Variation Gardening\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"138cc39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28a78a06\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Expert Landscapers\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c5ac2bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38fdb183\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3ce0b95b\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Affordable Price\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-save-money-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4c80f133\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7451fb11\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Free Consultation\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-Consultancy-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e93f2c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"39a46e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6773b2a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"87647bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Providing Services For All Your Residential And Commercial Needs.\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3d4509\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30164d28\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e8639b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":142,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-services.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fa92c14\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2c434fb3\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"5abe2e18\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33425b9f\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Residential And Commercial Projects\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"472ed309\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"67cb221c\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e6d8a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":142,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-services.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd233da\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6535a16\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"937e2e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7aee\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Lawn Services\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"d9723d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"c908972\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37c1cce6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":143,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/driveway-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b3e60ba\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3b291bbf\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"20b91942\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5649f719\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Driveway Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6300b69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"256ddf68\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d41e618\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3735f0b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":144,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/deck-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"741128a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3691562\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3c8a0e6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5eb1b3b9\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Deck Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"25f37292\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"61c9ff8e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8781ee3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":145,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/weed-control.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd84c7d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"14f7965\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fb2459e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0582197\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Weed Control \",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"f7b0fa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0197d9e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f3de9c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":146,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/grass-feed.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"75ba950\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"23edbf4\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"ad70b3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1c4ac7\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Grass Feed\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6f592ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0043a3b\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"790dd775\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"360\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"160\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"140\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"background_overlay_color_b\":\"#000414\",\"background_overlay_image\":{\"id\":186,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/a-gardener-watering-plants-in-a-flowerbed-2RT8DWL-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]}},\"elements\":[{\"id\":\"a2ed5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7e37f762\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Landscaping\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a092069\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d5099\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need Someone To Take Care Your Garden & Lawn?\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=07ee36d\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1198756c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"66521a56\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":20,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":4},\"elements\":[{\"id\":\"1a89d099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.5090000000000003410605131648480892181396484375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"id\":191,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/happy-gardeners-with-plants-and-lawn-mower-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"space-between\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_color\":\"#FFFFFF00\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":9,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"46b821c1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":219,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":183,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"449971a9\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Make Appointment & Take Care Your Garden\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=secondary\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=93191b3\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_content_title_color_hover_responsive\":\"#FFFFFF\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#FFFFFF\",\"st_icon_color_responsive\":\"#00E5CC\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#00E5CC\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":false},{\"id\":\"13747b6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.4909999999999996589394868351519107818603515625,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a13f42e\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"178***1721830795182\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fde8487\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"59883b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1617542a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Process\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29c7aa96\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Complete Every Step Carefully\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ced0d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d62463d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18cf7834\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"41f79872\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-consult-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consultation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65e1b761\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"span\",\"title_color\":\"#FFD402\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#006943\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12cdbf13\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4175d29\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-pencil_art-light\",\"library\":\"jkiticon\"},\"title_text\":\"Design Installation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2adabf01\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b628\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"569b3221\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consturction \",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"67d6b2e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6fff79c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53c9a76e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"title_text\":\"Finished Work\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"555aace0\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d57540b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"71\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardening-background-with-garden-tolls-A9BGNJU.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"147831a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"5a53d120\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"20\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Years of Experience\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"488f4727\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"6b8f6eae\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"76666759\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f532f9e\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"2850\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Happy Customers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"265fd738\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5473dc22\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"64\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Expert Landscapers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b38731e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4945f2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"627cd42c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65e3182\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.56499999999999772626324556767940521240234375},\"elements\":[{\"id\":\"43108b53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Projects\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45328989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Project We Have Done\\n\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"f382082\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.49900000000000233058017329312860965728759765625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":40,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"55ecfb57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"67afcbfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.0330000000000012505552149377763271331787109375,\"_inline_size_tablet\":23,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4989aa04\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Projects\",\"align\":\"right\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"left\",\"hover_animation\":\"float\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"32515d84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"3f5753f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"21982cfb\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":196,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Cutting-Leaf.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Cutting Leaf\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"404dc561\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"58d29b54\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":197,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Home-Garden.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Home Garden\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"3bff1dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"3c24185a\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":195,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/build-backyard.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Build Backyard\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_image_height_responsive_tablet\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b3cb58d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_image\":{\"id\":201,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-moving-aerial-photo-Z8KDGJ9-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_color\":\"#0000007D\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"79705206\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"51c9a732\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73b2fe0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"What They Says About Us\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4876e632\",\"elType\":\"widget\",\"settings\":{\"sg_layout_testimonial_choose\":\"style-2\",\"sg_testimonials_image_size_imagesize_size\":\"medium\",\"sg_testimonials_list\":[{\"sg_testimonials_list_client_avatar\":{\"id\":\"75\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/3SUMAU.jpg\"},\"_id\":\"6e9b2e1\",\"sg_testimonials_list_client_name\":\"Regan Traynor\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"76\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/CASCKD8.jpg\"},\"sg_testimonials_list_client_name\":\"Maisha Dunn\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"d069a43\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"77\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/MKLVKTE.jpg\"},\"sg_testimonials_list_client_name\":\"Reis Leonard\",\"sg_testimonials_list_designation\":\"Businessman\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"05c24f5\"}],\"st_wrapper_alignment_responsive\":\"left\",\"st_client_name_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_description_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_client_name_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_client_designation_normal_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_client_designation_normal_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=d343bdf\",\"st_rating_color_responsive\":\"\",\"st_client_name_normal_color_responsive\":\"\",\"st_quote_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_layout_background_background_color\":\"\"},\"st_layout_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_layout_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_wrapper_fix_height\":\"\",\"sg_setting_autoplay\":\"yes\",\"sg_setting_autoplay_pause\":\"\",\"sg_setting_arrow\":\"\",\"sg_setting_arrow_position\":\"middle-edge\",\"sg_setting_dots\":\"\",\"sg_setting_quote\":\"yes\",\"sg_setting_rating\":\"\",\"st_layout_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_layout_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_slide_show_responsive\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"sg_setting_quote_icon\":{\"value\":\"jki jki-quote-light\",\"library\":\"jkiticon\"},\"sg_layout_image_position\":\"below\",\"st_layout_background_background_background\":\"classic\",\"st_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position\":\"\",\"st_quote_override_position_top_responsive\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"st_quote_override_position_left_responsive\":{\"unit\":\"px\",\"size\":442,\"sizes\":[]},\"st_client_name_normal_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_quote_normal_font_size_responsive\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"st_client_image_margin_responsive\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_rating_font_size_responsive\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"st_rating_margin_right_responsive\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_setting_slide_show_responsive_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"st_wrapper_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position_top_responsive_tablet\":{\"unit\":\"px\",\"size\":249,\"sizes\":[]},\"st_quote_override_position_top_responsive_mobile\":{\"unit\":\"px\",\"size\":193,\"sizes\":[]},\"st_quote_override_position_left_responsive_tablet\":{\"unit\":\"px\",\"size\":265,\"sizes\":[]},\"st_quote_override_position_left_responsive_mobile\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]},\"st_quote_normal_font_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"st_description_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_normal_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64afd05f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"746d276b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30338dfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f950be4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ca735b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5d6ca3ad\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_title_hover_color_responsive\":\"globals\\/colors?id=secondary\",\"st_readmore_hover_color_responsive\":\"globals\\/colors?id=secondary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#646974\",\"st_excerpt_color_responsive\":\"#646974\",\"st_title_normal_color_responsive\":\"#272B36\",\"st_thumbnail_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_title_hover_color_responsive\":\"#FA8D25\",\"st_readmore_normal_color_responsive\":\"#FA8D25\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":false}],\"isInner\":false}]'),(1664,281,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1665,281,'_elementor_css','a:6:{s:4:\"time\";i:1721835057;s:5:\"fonts\";a:1:{i:0;s:5:\"Inter\";}s:5:\"icons\";a:3:{i:0;s:0:\"\";i:1;s:8:\"jkiticon\";i:3;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1666,282,'_elementor_edit_mode','builder'),(1667,282,'_elementor_template_type','wp-page'),(1668,282,'_elementor_version','3.23.2'),(1669,282,'_wp_page_template','default'),(1670,282,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'); INSERT INTO `victorq_postmeta` VALUES (1671,282,'_elementor_data','[{\"id\":\"35495243\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"Eldery male gardener using scissors for bushes\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"160\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0,\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_size_tablet\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"top center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00160E\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b\":\"#00000054\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_slideshow_gallery\":[{\"id\":154,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-02-5.jpg\"},{\"id\":155,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-03-3.jpg\"},{\"id\":156,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-04-3.jpg\"},{\"id\":157,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-01-5.jpg\"}]},\"elements\":[{\"id\":\"739a26d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":65,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=06a34e7\"}},\"elements\":[{\"id\":\"132d1a8e\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Complete For All\",\"sg_title_focused\":\" Landscape \",\"sg_title_after\":\" Service And Maintenance\",\"sg_title_html_tag\":\"h1\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=primary\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"7c49583a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"635cb25b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"23cf340e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37.85499999999999687361196265555918216705322265625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":48,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"1c4c950d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4768b6f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":62.14500000000000312638803734444081783294677734375,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"flex-start\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":52,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"34c0badb\",\"elType\":\"widget\",\"settings\":{\"sg_video_button_title\":\"Play Video\",\"sg_video_button_icon\":{\"value\":\"jki jki-play\",\"library\":\"jkiticon\"},\"sg_video_url\":\"#\",\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_width_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_line_height_responsive\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#FFD402\",\"st_button_normal_glow_color_responsive\":\"#00694361\",\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"_element_width\":\"auto\",\"__globals__\":{\"st_button_normal_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=accent\",\"st_border_normal_border_border_color\":\"\",\"st_button_hover_text_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_glow_color_responsive\":\"\"},\"st_button_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_button_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_width_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_line_height_responsive_mobile\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"st_border_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_border_normal_border_border_color\":\"#FFD027\",\"st_button_line_height_responsive_tablet\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"st_button_normal_background_background_color\":\"#006943\",\"st_button_hover_text_color_responsive\":\"#006943\",\"st_button_hover_background_background_color\":\"#FFD402\",\"sg_video_auto_play\":\"\",\"sg_video_mute\":\"\"},\"elements\":[],\"widgetType\":\"jkit_video_button\"},{\"id\":\"232ec8da\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Intro\",\"align\":\"right\",\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"hide_mobile\":\"hidden-mobile\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#00160E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49b348ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"edc2dbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.00200000000000244426701101474463939666748046875,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e2246bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Prestige Luxury Cleanings LLC\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"139cc45f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Landscaping And Garden Care Services\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dc78e71\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"597dc67d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"26cf3840\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b19bda0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":167,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"980\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a46c929\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c4d8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Public Liability Insurance\",\"_id\":\"a978734\"},{\"text\":\"Environmentally Friendly\",\"_id\":\"1cd10a1\"},{\"text\":\"On Time, Every Time\",\"_id\":\"c6767db\"},{\"text\":\"Beautiful Garden Designs\",\"_id\":\"d4743f4\"},{\"text\":\"Modern Machinery And Tool\",\"_id\":\"535c17d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"398321ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4c7c15d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.9129999999999967030817060731351375579833984375,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5683e90d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":162,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"860\",\"height\":\"980\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b6190b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":163,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"-59\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"250636f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"713aa588\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"51a71b71\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#00160E\",\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=primary\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=06a34e7\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"st_content_title_color_responsive\":\"#7F7F7F\",\"st_super_color_responsive\":\"#FFD402\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\",\"sg_setting_html_tag\":\"span\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5557874f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"73847855\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":174,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/garden-maintenance-performed-by-pro-gardener-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"b1058a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":224,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":478,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":325,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"69098afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"40\",\"bottom\":\"80\",\"left\":\"40\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"7cb7bf82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91cb5d9\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26358abf\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Have The Perfect Solution For Your Landscape Problems\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15a36cc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42c8d36c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7114454f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76f24ca8\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Variation Gardening\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"138cc39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28a78a06\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Expert Landscapers\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c5ac2bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38fdb183\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3ce0b95b\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Affordable Price\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-save-money-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4c80f133\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7451fb11\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Free Consultation\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-Consultancy-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e93f2c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"39a46e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6773b2a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"87647bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Providing Services For All Your Residential And Commercial Needs.\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3d4509\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30164d28\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e8639b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":142,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-services.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fa92c14\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2c434fb3\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"5abe2e18\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33425b9f\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Residential And Commercial Projects\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"472ed309\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"67cb221c\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e6d8a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":142,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-services.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd233da\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6535a16\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"937e2e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7aee\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Lawn Services\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"d9723d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"c908972\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37c1cce6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":143,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/driveway-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b3e60ba\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3b291bbf\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"20b91942\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5649f719\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Driveway Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6300b69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"256ddf68\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d41e618\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3735f0b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":144,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/deck-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"741128a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3691562\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3c8a0e6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5eb1b3b9\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Deck Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"25f37292\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"61c9ff8e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8781ee3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":145,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/weed-control.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd84c7d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"14f7965\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fb2459e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0582197\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Weed Control \",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"f7b0fa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0197d9e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f3de9c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":146,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/grass-feed.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"75ba950\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"23edbf4\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"ad70b3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1c4ac7\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Grass Feed\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6f592ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0043a3b\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"790dd775\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"360\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"160\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"140\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"background_overlay_color_b\":\"#000414\",\"background_overlay_image\":{\"id\":186,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/a-gardener-watering-plants-in-a-flowerbed-2RT8DWL-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]}},\"elements\":[{\"id\":\"a2ed5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7e37f762\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Landscaping\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a092069\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d5099\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need Someone To Take Care Your Garden & Lawn?\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=07ee36d\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1198756c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"66521a56\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":20,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":4},\"elements\":[{\"id\":\"1a89d099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.5090000000000003410605131648480892181396484375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"id\":191,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/happy-gardeners-with-plants-and-lawn-mower-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"space-between\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_color\":\"#FFFFFF00\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":9,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"46b821c1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":219,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":183,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"449971a9\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Make Appointment & Take Care Your Garden\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=secondary\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=93191b3\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_content_title_color_hover_responsive\":\"#FFFFFF\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#FFFFFF\",\"st_icon_color_responsive\":\"#00E5CC\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#00E5CC\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":false},{\"id\":\"13747b6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.4909999999999996589394868351519107818603515625,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a13f42e\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"178***1721830795182\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fde8487\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"59883b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1617542a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Process\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29c7aa96\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Complete Every Step Carefully\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ced0d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d62463d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18cf7834\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"41f79872\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-consult-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consultation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65e1b761\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"span\",\"title_color\":\"#FFD402\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#006943\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12cdbf13\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4175d29\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-pencil_art-light\",\"library\":\"jkiticon\"},\"title_text\":\"Design Installation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2adabf01\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b628\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"569b3221\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consturction \",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"67d6b2e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6fff79c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53c9a76e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"title_text\":\"Finished Work\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"555aace0\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d57540b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"71\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardening-background-with-garden-tolls-A9BGNJU.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"147831a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"5a53d120\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"20\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Years of Experience\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"488f4727\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"6b8f6eae\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"76666759\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f532f9e\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"2850\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Happy Customers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"265fd738\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5473dc22\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"64\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Expert Landscapers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b38731e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4945f2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"627cd42c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65e3182\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.56499999999999772626324556767940521240234375},\"elements\":[{\"id\":\"43108b53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Projects\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45328989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Project We Have Done\\n\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"f382082\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.49900000000000233058017329312860965728759765625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":40,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"55ecfb57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"67afcbfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.0330000000000012505552149377763271331787109375,\"_inline_size_tablet\":23,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4989aa04\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Projects\",\"align\":\"right\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"left\",\"hover_animation\":\"float\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"32515d84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"3f5753f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"21982cfb\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":196,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Cutting-Leaf.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Cutting Leaf\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"404dc561\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"58d29b54\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":197,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Home-Garden.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Home Garden\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"3bff1dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"3c24185a\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":195,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/build-backyard.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Build Backyard\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_image_height_responsive_tablet\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b3cb58d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_image\":{\"id\":201,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-moving-aerial-photo-Z8KDGJ9-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_color\":\"#0000007D\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"79705206\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"51c9a732\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73b2fe0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"What They Says About Us\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4876e632\",\"elType\":\"widget\",\"settings\":{\"sg_layout_testimonial_choose\":\"style-2\",\"sg_testimonials_image_size_imagesize_size\":\"medium\",\"sg_testimonials_list\":[{\"sg_testimonials_list_client_avatar\":{\"id\":\"75\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/3SUMAU.jpg\"},\"_id\":\"6e9b2e1\",\"sg_testimonials_list_client_name\":\"Regan Traynor\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"76\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/CASCKD8.jpg\"},\"sg_testimonials_list_client_name\":\"Maisha Dunn\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"d069a43\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"77\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/MKLVKTE.jpg\"},\"sg_testimonials_list_client_name\":\"Reis Leonard\",\"sg_testimonials_list_designation\":\"Businessman\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"05c24f5\"}],\"st_wrapper_alignment_responsive\":\"left\",\"st_client_name_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_description_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_client_name_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_client_designation_normal_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_client_designation_normal_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=d343bdf\",\"st_rating_color_responsive\":\"\",\"st_client_name_normal_color_responsive\":\"\",\"st_quote_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_layout_background_background_color\":\"\"},\"st_layout_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_layout_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_wrapper_fix_height\":\"\",\"sg_setting_autoplay\":\"yes\",\"sg_setting_autoplay_pause\":\"\",\"sg_setting_arrow\":\"\",\"sg_setting_arrow_position\":\"middle-edge\",\"sg_setting_dots\":\"\",\"sg_setting_quote\":\"yes\",\"sg_setting_rating\":\"\",\"st_layout_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_layout_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_slide_show_responsive\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"sg_setting_quote_icon\":{\"value\":\"jki jki-quote-light\",\"library\":\"jkiticon\"},\"sg_layout_image_position\":\"below\",\"st_layout_background_background_background\":\"classic\",\"st_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position\":\"\",\"st_quote_override_position_top_responsive\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"st_quote_override_position_left_responsive\":{\"unit\":\"px\",\"size\":442,\"sizes\":[]},\"st_client_name_normal_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_quote_normal_font_size_responsive\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"st_client_image_margin_responsive\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_rating_font_size_responsive\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"st_rating_margin_right_responsive\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_setting_slide_show_responsive_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"st_wrapper_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position_top_responsive_tablet\":{\"unit\":\"px\",\"size\":249,\"sizes\":[]},\"st_quote_override_position_top_responsive_mobile\":{\"unit\":\"px\",\"size\":193,\"sizes\":[]},\"st_quote_override_position_left_responsive_tablet\":{\"unit\":\"px\",\"size\":265,\"sizes\":[]},\"st_quote_override_position_left_responsive_mobile\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]},\"st_quote_normal_font_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"st_description_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_normal_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64afd05f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"746d276b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30338dfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f950be4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ca735b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5d6ca3ad\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_title_hover_color_responsive\":\"globals\\/colors?id=secondary\",\"st_readmore_hover_color_responsive\":\"globals\\/colors?id=secondary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#646974\",\"st_excerpt_color_responsive\":\"#646974\",\"st_title_normal_color_responsive\":\"#272B36\",\"st_thumbnail_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_title_hover_color_responsive\":\"#FA8D25\",\"st_readmore_normal_color_responsive\":\"#FA8D25\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":false}],\"isInner\":false}]'),(1672,282,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1673,282,'_elementor_css','a:6:{s:4:\"time\";i:1721835057;s:5:\"fonts\";a:1:{i:0;s:5:\"Inter\";}s:5:\"icons\";a:3:{i:0;s:0:\"\";i:1;s:8:\"jkiticon\";i:3;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1674,283,'_elementor_edit_mode','builder'),(1675,283,'_elementor_template_type','wp-page'),(1676,283,'_elementor_version','3.23.2'),(1677,283,'_wp_page_template','default'),(1678,283,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1679,283,'_elementor_data','[{\"id\":\"35495243\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"Eldery male gardener using scissors for bushes\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"160\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0,\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_size_tablet\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"top center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00160E\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b\":\"#00000054\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_slideshow_gallery\":[{\"id\":154,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-02-5.jpg\"},{\"id\":155,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-03-3.jpg\"},{\"id\":156,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-04-3.jpg\"},{\"id\":157,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-01-5.jpg\"}]},\"elements\":[{\"id\":\"739a26d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":65,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=06a34e7\"}},\"elements\":[{\"id\":\"132d1a8e\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Complete For All\",\"sg_title_focused\":\" Landscape \",\"sg_title_after\":\" Service And Maintenance\",\"sg_title_html_tag\":\"h1\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=primary\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"7c49583a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"635cb25b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"23cf340e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37.85499999999999687361196265555918216705322265625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":48,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"1c4c950d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4768b6f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":62.14500000000000312638803734444081783294677734375,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"flex-start\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":52,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"34c0badb\",\"elType\":\"widget\",\"settings\":{\"sg_video_button_title\":\"Play Video\",\"sg_video_button_icon\":{\"value\":\"jki jki-play\",\"library\":\"jkiticon\"},\"sg_video_url\":\"#\",\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_width_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_line_height_responsive\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#FFD402\",\"st_button_normal_glow_color_responsive\":\"#00694361\",\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"_element_width\":\"auto\",\"__globals__\":{\"st_button_normal_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=accent\",\"st_border_normal_border_border_color\":\"\",\"st_button_hover_text_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_glow_color_responsive\":\"\"},\"st_button_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_button_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_width_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_line_height_responsive_mobile\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"st_border_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_border_normal_border_border_color\":\"#FFD027\",\"st_button_line_height_responsive_tablet\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"st_button_normal_background_background_color\":\"#006943\",\"st_button_hover_text_color_responsive\":\"#006943\",\"st_button_hover_background_background_color\":\"#FFD402\",\"sg_video_auto_play\":\"\",\"sg_video_mute\":\"\"},\"elements\":[],\"widgetType\":\"jkit_video_button\"},{\"id\":\"232ec8da\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Intro\",\"align\":\"right\",\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"hide_mobile\":\"hidden-mobile\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#00160E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49b348ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"edc2dbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.00200000000000244426701101474463939666748046875,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e2246bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Prestige Luxury Cleanings LLC\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"139cc45f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Landscaping And Garden Care Services\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dc78e71\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"597dc67d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"26cf3840\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b19bda0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":167,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"980\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a46c929\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c4d8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Public Liability Insurance\",\"_id\":\"a978734\"},{\"text\":\"Environmentally Friendly\",\"_id\":\"1cd10a1\"},{\"text\":\"On Time, Every Time\",\"_id\":\"c6767db\"},{\"text\":\"Beautiful Garden Designs\",\"_id\":\"d4743f4\"},{\"text\":\"Modern Machinery And Tool\",\"_id\":\"535c17d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"398321ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4c7c15d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.9129999999999967030817060731351375579833984375,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5683e90d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":162,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"860\",\"height\":\"980\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b6190b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":163,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"-59\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"250636f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"713aa588\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"51a71b71\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#00160E\",\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=primary\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=06a34e7\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"st_content_title_color_responsive\":\"#7F7F7F\",\"st_super_color_responsive\":\"#FFD402\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\",\"sg_setting_html_tag\":\"span\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5557874f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"73847855\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":174,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/garden-maintenance-performed-by-pro-gardener-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"b1058a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":224,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":478,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":325,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"69098afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"40\",\"bottom\":\"80\",\"left\":\"40\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"7cb7bf82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91cb5d9\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26358abf\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Have The Perfect Solution For Your Landscape Problems\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15a36cc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42c8d36c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7114454f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76f24ca8\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Variation Gardening\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"138cc39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28a78a06\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Expert Landscapers\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c5ac2bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38fdb183\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3ce0b95b\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Affordable Price\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-save-money-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4c80f133\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7451fb11\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Free Consultation\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-Consultancy-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e93f2c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"39a46e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6773b2a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"87647bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Providing Services For All Your Residential And Commercial Needs.\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3d4509\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30164d28\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e8639b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":142,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-services.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fa92c14\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2c434fb3\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"5abe2e18\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33425b9f\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Residential And Commercial Projects\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"472ed309\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"67cb221c\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e6d8a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":142,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-services.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd233da\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6535a16\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"937e2e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7aee\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Lawn Services\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"d9723d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"c908972\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37c1cce6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":143,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/driveway-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b3e60ba\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3b291bbf\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"20b91942\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5649f719\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Driveway Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6300b69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"256ddf68\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d41e618\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3735f0b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":144,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/deck-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"741128a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3691562\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3c8a0e6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5eb1b3b9\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Deck Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"25f37292\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"61c9ff8e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8781ee3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":145,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/weed-control.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd84c7d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"14f7965\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fb2459e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0582197\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Weed Control \",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"f7b0fa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0197d9e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f3de9c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":146,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/grass-feed.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"75ba950\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"23edbf4\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"ad70b3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1c4ac7\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Grass Feed\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6f592ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0043a3b\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"790dd775\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"360\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"160\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"140\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"background_overlay_color_b\":\"#000414\",\"background_overlay_image\":{\"id\":186,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/a-gardener-watering-plants-in-a-flowerbed-2RT8DWL-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]}},\"elements\":[{\"id\":\"a2ed5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7e37f762\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Landscaping\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a092069\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d5099\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need Someone To Take Care Your Garden & Lawn?\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=07ee36d\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1198756c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"66521a56\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":20,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":4},\"elements\":[{\"id\":\"1a89d099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.5090000000000003410605131648480892181396484375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"id\":191,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/happy-gardeners-with-plants-and-lawn-mower-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"space-between\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_color\":\"#FFFFFF00\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":9,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"46b821c1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":219,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":183,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"449971a9\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Make Appointment & Take Care Your Garden\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=secondary\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=93191b3\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_content_title_color_hover_responsive\":\"#FFFFFF\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#FFFFFF\",\"st_icon_color_responsive\":\"#00E5CC\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#00E5CC\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":false},{\"id\":\"13747b6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.4909999999999996589394868351519107818603515625,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a13f42e\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"178***1721830795182\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fde8487\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"59883b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1617542a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Process\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29c7aa96\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Complete Every Step Carefully\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ced0d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d62463d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18cf7834\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"41f79872\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-consult-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consultation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65e1b761\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"span\",\"title_color\":\"#FFD402\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#006943\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12cdbf13\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4175d29\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-pencil_art-light\",\"library\":\"jkiticon\"},\"title_text\":\"Design Installation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2adabf01\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b628\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"569b3221\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consturction \",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"67d6b2e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6fff79c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53c9a76e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"title_text\":\"Finished Work\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"555aace0\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d57540b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"71\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardening-background-with-garden-tolls-A9BGNJU.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"147831a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"5a53d120\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"20\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Years of Experience\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"488f4727\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"6b8f6eae\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"76666759\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f532f9e\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"2850\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Happy Customers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"265fd738\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5473dc22\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"64\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Expert Landscapers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b38731e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4945f2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"627cd42c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65e3182\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.56499999999999772626324556767940521240234375},\"elements\":[{\"id\":\"43108b53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Projects\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45328989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Project We Have Done\\n\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"f382082\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.49900000000000233058017329312860965728759765625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":40,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"55ecfb57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"67afcbfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.0330000000000012505552149377763271331787109375,\"_inline_size_tablet\":23,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4989aa04\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Projects\",\"align\":\"right\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"left\",\"hover_animation\":\"float\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"32515d84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"3f5753f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"21982cfb\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":196,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Cutting-Leaf.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Cutting Leaf\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"404dc561\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"58d29b54\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":197,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Home-Garden.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Home Garden\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"3bff1dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"3c24185a\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":195,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/build-backyard.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Build Backyard\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_image_height_responsive_tablet\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b3cb58d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_image\":{\"id\":201,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-moving-aerial-photo-Z8KDGJ9-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_color\":\"#0000007D\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"79705206\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"51c9a732\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73b2fe0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"What They Says About Us\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4876e632\",\"elType\":\"widget\",\"settings\":{\"sg_layout_testimonial_choose\":\"style-2\",\"sg_testimonials_image_size_imagesize_size\":\"medium\",\"sg_testimonials_list\":[{\"sg_testimonials_list_client_avatar\":{\"id\":\"75\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/3SUMAU.jpg\"},\"_id\":\"6e9b2e1\",\"sg_testimonials_list_client_name\":\"Regan Traynor\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"76\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/CASCKD8.jpg\"},\"sg_testimonials_list_client_name\":\"Maisha Dunn\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"d069a43\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"77\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/MKLVKTE.jpg\"},\"sg_testimonials_list_client_name\":\"Reis Leonard\",\"sg_testimonials_list_designation\":\"Businessman\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"05c24f5\"}],\"st_wrapper_alignment_responsive\":\"left\",\"st_client_name_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_description_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_client_name_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_client_designation_normal_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_client_designation_normal_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=d343bdf\",\"st_rating_color_responsive\":\"\",\"st_client_name_normal_color_responsive\":\"\",\"st_quote_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_layout_background_background_color\":\"\"},\"st_layout_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_layout_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_wrapper_fix_height\":\"\",\"sg_setting_autoplay\":\"yes\",\"sg_setting_autoplay_pause\":\"\",\"sg_setting_arrow\":\"\",\"sg_setting_arrow_position\":\"middle-edge\",\"sg_setting_dots\":\"\",\"sg_setting_quote\":\"yes\",\"sg_setting_rating\":\"\",\"st_layout_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_layout_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_slide_show_responsive\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"sg_setting_quote_icon\":{\"value\":\"jki jki-quote-light\",\"library\":\"jkiticon\"},\"sg_layout_image_position\":\"below\",\"st_layout_background_background_background\":\"classic\",\"st_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position\":\"\",\"st_quote_override_position_top_responsive\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"st_quote_override_position_left_responsive\":{\"unit\":\"px\",\"size\":442,\"sizes\":[]},\"st_client_name_normal_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_quote_normal_font_size_responsive\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"st_client_image_margin_responsive\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_rating_font_size_responsive\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"st_rating_margin_right_responsive\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_setting_slide_show_responsive_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"st_wrapper_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position_top_responsive_tablet\":{\"unit\":\"px\",\"size\":249,\"sizes\":[]},\"st_quote_override_position_top_responsive_mobile\":{\"unit\":\"px\",\"size\":193,\"sizes\":[]},\"st_quote_override_position_left_responsive_tablet\":{\"unit\":\"px\",\"size\":265,\"sizes\":[]},\"st_quote_override_position_left_responsive_mobile\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]},\"st_quote_normal_font_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"st_description_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_normal_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64afd05f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"746d276b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30338dfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f950be4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ca735b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5d6ca3ad\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_title_hover_color_responsive\":\"globals\\/colors?id=secondary\",\"st_readmore_hover_color_responsive\":\"globals\\/colors?id=secondary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#646974\",\"st_excerpt_color_responsive\":\"#646974\",\"st_title_normal_color_responsive\":\"#272B36\",\"st_thumbnail_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_title_hover_color_responsive\":\"#FA8D25\",\"st_readmore_normal_color_responsive\":\"#FA8D25\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":false}],\"isInner\":false}]'),(1680,283,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1681,284,'_elementor_edit_mode','builder'),(1682,284,'_elementor_template_type','wp-page'),(1683,284,'_elementor_version','3.23.2'),(1684,284,'_wp_page_template','default'),(1685,284,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1686,284,'_elementor_data','[{\"id\":\"35495243\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"Eldery male gardener using scissors for bushes\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"160\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0,\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_size_tablet\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"top center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00160E\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b\":\"#00000054\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_slideshow_gallery\":[{\"id\":154,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-02-5.jpg\"},{\"id\":155,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-03-3.jpg\"},{\"id\":156,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-04-3.jpg\"},{\"id\":157,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-01-5.jpg\"}]},\"elements\":[{\"id\":\"739a26d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":65,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=06a34e7\"}},\"elements\":[{\"id\":\"132d1a8e\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Complete For All\",\"sg_title_focused\":\" Landscape \",\"sg_title_after\":\" Service And Maintenance\",\"sg_title_html_tag\":\"h1\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=primary\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"7c49583a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"635cb25b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"23cf340e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37.85499999999999687361196265555918216705322265625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":48,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"1c4c950d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4768b6f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":62.14500000000000312638803734444081783294677734375,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"flex-start\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":52,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"34c0badb\",\"elType\":\"widget\",\"settings\":{\"sg_video_button_title\":\"Play Video\",\"sg_video_button_icon\":{\"value\":\"jki jki-play\",\"library\":\"jkiticon\"},\"sg_video_url\":\"#\",\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_width_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_line_height_responsive\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#FFD402\",\"st_button_normal_glow_color_responsive\":\"#00694361\",\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"_element_width\":\"auto\",\"__globals__\":{\"st_button_normal_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=accent\",\"st_border_normal_border_border_color\":\"\",\"st_button_hover_text_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_glow_color_responsive\":\"\"},\"st_button_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_button_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_width_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_line_height_responsive_mobile\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"st_border_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_border_normal_border_border_color\":\"#FFD027\",\"st_button_line_height_responsive_tablet\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"st_button_normal_background_background_color\":\"#006943\",\"st_button_hover_text_color_responsive\":\"#006943\",\"st_button_hover_background_background_color\":\"#FFD402\",\"sg_video_auto_play\":\"\",\"sg_video_mute\":\"\"},\"elements\":[],\"widgetType\":\"jkit_video_button\"},{\"id\":\"232ec8da\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Intro\",\"align\":\"right\",\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"hide_mobile\":\"hidden-mobile\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#00160E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49b348ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"edc2dbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.00200000000000244426701101474463939666748046875,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e2246bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Prestige Luxury Cleanings LLC\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"139cc45f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Landscaping And Garden Care Services\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dc78e71\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"597dc67d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"26cf3840\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b19bda0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":167,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"980\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a46c929\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c4d8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Public Liability Insurance\",\"_id\":\"a978734\"},{\"text\":\"Environmentally Friendly\",\"_id\":\"1cd10a1\"},{\"text\":\"On Time, Every Time\",\"_id\":\"c6767db\"},{\"text\":\"Beautiful Garden Designs\",\"_id\":\"d4743f4\"},{\"text\":\"Modern Machinery And Tool\",\"_id\":\"535c17d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"398321ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4c7c15d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.9129999999999967030817060731351375579833984375,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5683e90d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":162,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"860\",\"height\":\"980\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b6190b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":163,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"-59\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"250636f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"713aa588\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"51a71b71\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#00160E\",\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=primary\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=06a34e7\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"st_content_title_color_responsive\":\"#7F7F7F\",\"st_super_color_responsive\":\"#FFD402\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\",\"sg_setting_html_tag\":\"span\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5557874f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"73847855\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":174,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/garden-maintenance-performed-by-pro-gardener-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"b1058a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":224,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":478,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":325,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"69098afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"40\",\"bottom\":\"80\",\"left\":\"40\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"7cb7bf82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91cb5d9\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26358abf\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Have The Perfect Solution For Your Landscape Problems\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15a36cc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42c8d36c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7114454f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76f24ca8\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Variation Gardening\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"138cc39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28a78a06\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Expert Landscapers\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c5ac2bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38fdb183\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3ce0b95b\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Affordable Price\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-save-money-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4c80f133\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7451fb11\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Free Consultation\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-Consultancy-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e93f2c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"39a46e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6773b2a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"87647bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Providing Services For All Your Residential And Commercial Needs.\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3d4509\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30164d28\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e8639b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":142,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-services.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fa92c14\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2c434fb3\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"5abe2e18\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33425b9f\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Residential And Commercial Projects\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"472ed309\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"67cb221c\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e6d8a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":142,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-services.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd233da\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6535a16\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"937e2e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7aee\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Lawn Services\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"d9723d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"c908972\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37c1cce6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":143,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/driveway-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b3e60ba\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3b291bbf\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"20b91942\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5649f719\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Driveway Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6300b69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"256ddf68\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d41e618\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3735f0b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":144,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/deck-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"741128a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3691562\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3c8a0e6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5eb1b3b9\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Deck Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"25f37292\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"61c9ff8e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8781ee3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":145,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/weed-control.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd84c7d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"14f7965\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fb2459e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0582197\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Weed Control \",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"f7b0fa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0197d9e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f3de9c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":146,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/grass-feed.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"75ba950\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"23edbf4\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"ad70b3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1c4ac7\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Grass Feed\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6f592ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0043a3b\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"790dd775\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"360\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"160\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"140\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"background_overlay_color_b\":\"#000414\",\"background_overlay_image\":{\"id\":186,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/a-gardener-watering-plants-in-a-flowerbed-2RT8DWL-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]}},\"elements\":[{\"id\":\"a2ed5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7e37f762\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Landscaping\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a092069\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d5099\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need Someone To Take Care Your Garden & Lawn?\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=07ee36d\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1198756c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"66521a56\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":20,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":4},\"elements\":[{\"id\":\"1a89d099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.5090000000000003410605131648480892181396484375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"id\":191,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/happy-gardeners-with-plants-and-lawn-mower-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"space-between\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_color\":\"#FFFFFF00\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":9,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"46b821c1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":219,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":183,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"449971a9\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Make Appointment & Take Care Your Garden\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=secondary\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=93191b3\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_content_title_color_hover_responsive\":\"#FFFFFF\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#FFFFFF\",\"st_icon_color_responsive\":\"#00E5CC\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#00E5CC\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":false},{\"id\":\"13747b6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.4909999999999996589394868351519107818603515625,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a13f42e\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"178***1721830795182\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fde8487\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"59883b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1617542a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Process\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29c7aa96\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Complete Every Step Carefully\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ced0d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d62463d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18cf7834\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"41f79872\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-consult-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consultation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65e1b761\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"span\",\"title_color\":\"#FFD402\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#006943\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12cdbf13\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4175d29\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-pencil_art-light\",\"library\":\"jkiticon\"},\"title_text\":\"Design Installation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2adabf01\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b628\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"569b3221\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consturction \",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"67d6b2e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6fff79c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53c9a76e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"title_text\":\"Finished Work\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"555aace0\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d57540b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"71\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardening-background-with-garden-tolls-A9BGNJU.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"147831a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"5a53d120\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"20\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Years of Experience\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"488f4727\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"6b8f6eae\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"76666759\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f532f9e\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"2850\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Happy Customers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"265fd738\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5473dc22\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"64\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Expert Landscapers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b38731e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4945f2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"627cd42c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65e3182\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.56499999999999772626324556767940521240234375},\"elements\":[{\"id\":\"43108b53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Projects\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45328989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Project We Have Done\\n\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"f382082\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.49900000000000233058017329312860965728759765625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":40,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"55ecfb57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"67afcbfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.0330000000000012505552149377763271331787109375,\"_inline_size_tablet\":23,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4989aa04\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Projects\",\"align\":\"right\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"left\",\"hover_animation\":\"float\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"32515d84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"3f5753f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"21982cfb\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":196,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Cutting-Leaf.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Cutting Leaf\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"404dc561\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"58d29b54\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":197,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Home-Garden.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Home Garden\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"3bff1dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"3c24185a\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":195,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/build-backyard.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Build Backyard\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_image_height_responsive_tablet\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b3cb58d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_image\":{\"id\":201,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-moving-aerial-photo-Z8KDGJ9-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_color\":\"#0000007D\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"79705206\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"51c9a732\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73b2fe0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"What They Says About Us\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4876e632\",\"elType\":\"widget\",\"settings\":{\"sg_layout_testimonial_choose\":\"style-2\",\"sg_testimonials_image_size_imagesize_size\":\"medium\",\"sg_testimonials_list\":[{\"sg_testimonials_list_client_avatar\":{\"id\":\"75\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/3SUMAU.jpg\"},\"_id\":\"6e9b2e1\",\"sg_testimonials_list_client_name\":\"Regan Traynor\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"76\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/CASCKD8.jpg\"},\"sg_testimonials_list_client_name\":\"Maisha Dunn\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"d069a43\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"77\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/MKLVKTE.jpg\"},\"sg_testimonials_list_client_name\":\"Reis Leonard\",\"sg_testimonials_list_designation\":\"Businessman\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"05c24f5\"}],\"st_wrapper_alignment_responsive\":\"left\",\"st_client_name_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_description_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_client_name_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_client_designation_normal_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_client_designation_normal_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=d343bdf\",\"st_rating_color_responsive\":\"\",\"st_client_name_normal_color_responsive\":\"\",\"st_quote_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_layout_background_background_color\":\"\"},\"st_layout_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_layout_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_wrapper_fix_height\":\"\",\"sg_setting_autoplay\":\"yes\",\"sg_setting_autoplay_pause\":\"\",\"sg_setting_arrow\":\"\",\"sg_setting_arrow_position\":\"middle-edge\",\"sg_setting_dots\":\"\",\"sg_setting_quote\":\"yes\",\"sg_setting_rating\":\"\",\"st_layout_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_layout_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_slide_show_responsive\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"sg_setting_quote_icon\":{\"value\":\"jki jki-quote-light\",\"library\":\"jkiticon\"},\"sg_layout_image_position\":\"below\",\"st_layout_background_background_background\":\"classic\",\"st_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position\":\"\",\"st_quote_override_position_top_responsive\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"st_quote_override_position_left_responsive\":{\"unit\":\"px\",\"size\":442,\"sizes\":[]},\"st_client_name_normal_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_quote_normal_font_size_responsive\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"st_client_image_margin_responsive\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_rating_font_size_responsive\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"st_rating_margin_right_responsive\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_setting_slide_show_responsive_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"st_wrapper_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position_top_responsive_tablet\":{\"unit\":\"px\",\"size\":249,\"sizes\":[]},\"st_quote_override_position_top_responsive_mobile\":{\"unit\":\"px\",\"size\":193,\"sizes\":[]},\"st_quote_override_position_left_responsive_tablet\":{\"unit\":\"px\",\"size\":265,\"sizes\":[]},\"st_quote_override_position_left_responsive_mobile\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]},\"st_quote_normal_font_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"st_description_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_normal_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64afd05f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"746d276b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30338dfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f950be4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ca735b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5d6ca3ad\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_title_hover_color_responsive\":\"globals\\/colors?id=secondary\",\"st_readmore_hover_color_responsive\":\"globals\\/colors?id=secondary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#646974\",\"st_excerpt_color_responsive\":\"#646974\",\"st_title_normal_color_responsive\":\"#272B36\",\"st_thumbnail_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_title_hover_color_responsive\":\"#FA8D25\",\"st_readmore_normal_color_responsive\":\"#FA8D25\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":false}],\"isInner\":false}]'),(1687,284,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1688,285,'_elementor_edit_mode','builder'),(1689,285,'_elementor_template_type','wp-page'),(1690,285,'_elementor_version','3.23.2'),(1691,285,'_wp_page_template','default'),(1692,285,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1693,285,'_elementor_data','[{\"id\":\"35495243\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"Eldery male gardener using scissors for bushes\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"160\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0,\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_size_tablet\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"top center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00160E\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b\":\"#00000054\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_slideshow_gallery\":[{\"id\":154,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-02-5.jpg\"},{\"id\":155,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-03-3.jpg\"},{\"id\":156,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-04-3.jpg\"},{\"id\":157,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-01-5.jpg\"}]},\"elements\":[{\"id\":\"739a26d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":65,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=06a34e7\"}},\"elements\":[{\"id\":\"132d1a8e\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Complete For All\",\"sg_title_focused\":\" Landscape \",\"sg_title_after\":\" Service And Maintenance\",\"sg_title_html_tag\":\"h1\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=primary\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"7c49583a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"635cb25b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"23cf340e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37.85499999999999687361196265555918216705322265625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":48,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"1c4c950d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4768b6f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":62.14500000000000312638803734444081783294677734375,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"flex-start\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":52,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"34c0badb\",\"elType\":\"widget\",\"settings\":{\"sg_video_button_title\":\"Play Video\",\"sg_video_button_icon\":{\"value\":\"jki jki-play\",\"library\":\"jkiticon\"},\"sg_video_url\":\"#\",\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_width_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_line_height_responsive\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#FFD402\",\"st_button_normal_glow_color_responsive\":\"#00694361\",\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"_element_width\":\"auto\",\"__globals__\":{\"st_button_normal_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=accent\",\"st_border_normal_border_border_color\":\"\",\"st_button_hover_text_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_glow_color_responsive\":\"\"},\"st_button_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_button_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_width_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_line_height_responsive_mobile\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"st_border_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_border_normal_border_border_color\":\"#FFD027\",\"st_button_line_height_responsive_tablet\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"st_button_normal_background_background_color\":\"#006943\",\"st_button_hover_text_color_responsive\":\"#006943\",\"st_button_hover_background_background_color\":\"#FFD402\",\"sg_video_auto_play\":\"\",\"sg_video_mute\":\"\"},\"elements\":[],\"widgetType\":\"jkit_video_button\"},{\"id\":\"232ec8da\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Intro\",\"align\":\"right\",\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"hide_mobile\":\"hidden-mobile\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#00160E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49b348ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"edc2dbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.00200000000000244426701101474463939666748046875,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e2246bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Prestige Luxury Cleanings LLC\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"139cc45f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Landscaping And Garden Care Services\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dc78e71\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"597dc67d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"26cf3840\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b19bda0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":167,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"980\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a46c929\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c4d8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Public Liability Insurance\",\"_id\":\"a978734\"},{\"text\":\"Environmentally Friendly\",\"_id\":\"1cd10a1\"},{\"text\":\"On Time, Every Time\",\"_id\":\"c6767db\"},{\"text\":\"Beautiful Garden Designs\",\"_id\":\"d4743f4\"},{\"text\":\"Modern Machinery And Tool\",\"_id\":\"535c17d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"398321ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4c7c15d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.9129999999999967030817060731351375579833984375,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5683e90d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":162,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"860\",\"height\":\"980\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b6190b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":163,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"-59\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"250636f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"713aa588\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"51a71b71\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#00160E\",\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=primary\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=06a34e7\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"st_content_title_color_responsive\":\"#7F7F7F\",\"st_super_color_responsive\":\"#FFD402\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\",\"sg_setting_html_tag\":\"span\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5557874f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"73847855\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":174,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/garden-maintenance-performed-by-pro-gardener-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"b1058a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":224,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":478,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":325,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"69098afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"40\",\"bottom\":\"80\",\"left\":\"40\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"7cb7bf82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91cb5d9\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26358abf\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Have The Perfect Solution For Your Landscape Problems\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15a36cc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42c8d36c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7114454f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76f24ca8\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Variation Gardening\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"138cc39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28a78a06\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Expert Landscapers\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c5ac2bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38fdb183\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3ce0b95b\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Affordable Price\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-save-money-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4c80f133\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7451fb11\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Free Consultation\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-Consultancy-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e93f2c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"39a46e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6773b2a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"87647bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Providing Services For All Your Residential And Commercial Needs.\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3d4509\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30164d28\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e8639b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":142,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-services.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fa92c14\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2c434fb3\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"5abe2e18\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33425b9f\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Residential And Commercial Projects\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"472ed309\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"67cb221c\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e6d8a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":142,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-services.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd233da\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6535a16\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"937e2e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7aee\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Lawn Services\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"d9723d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"c908972\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37c1cce6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":143,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/driveway-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b3e60ba\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3b291bbf\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"20b91942\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5649f719\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Driveway Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6300b69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"256ddf68\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d41e618\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3735f0b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":144,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/deck-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"741128a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3691562\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3c8a0e6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5eb1b3b9\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Deck Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"25f37292\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"61c9ff8e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8781ee3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":145,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/weed-control.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd84c7d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"14f7965\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fb2459e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0582197\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Weed Control \",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"f7b0fa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0197d9e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f3de9c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":146,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/grass-feed.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"75ba950\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"23edbf4\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"ad70b3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1c4ac7\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Grass Feed\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6f592ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0043a3b\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"790dd775\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"360\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"160\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"140\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"background_overlay_color_b\":\"#000414\",\"background_overlay_image\":{\"id\":186,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/a-gardener-watering-plants-in-a-flowerbed-2RT8DWL-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]}},\"elements\":[{\"id\":\"a2ed5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7e37f762\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Landscaping\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a092069\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d5099\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need Someone To Take Care Your Garden & Lawn?\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=07ee36d\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1198756c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"66521a56\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":20,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":4},\"elements\":[{\"id\":\"1a89d099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.5090000000000003410605131648480892181396484375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"id\":191,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/happy-gardeners-with-plants-and-lawn-mower-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"space-between\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_color\":\"#FFFFFF00\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":9,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"46b821c1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":219,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":183,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"449971a9\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Make Appointment & Take Care Your Garden\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=secondary\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=93191b3\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_content_title_color_hover_responsive\":\"#FFFFFF\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#FFFFFF\",\"st_icon_color_responsive\":\"#00E5CC\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#00E5CC\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":false},{\"id\":\"13747b6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.4909999999999996589394868351519107818603515625,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a13f42e\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"178***1721830795182\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fde8487\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"59883b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1617542a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Process\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29c7aa96\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Complete Every Step Carefully\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ced0d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d62463d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18cf7834\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"41f79872\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-consult-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consultation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65e1b761\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"span\",\"title_color\":\"#FFD402\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#006943\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12cdbf13\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4175d29\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-pencil_art-light\",\"library\":\"jkiticon\"},\"title_text\":\"Design Installation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2adabf01\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b628\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"569b3221\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consturction \",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"67d6b2e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6fff79c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53c9a76e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"title_text\":\"Finished Work\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"555aace0\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d57540b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"71\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardening-background-with-garden-tolls-A9BGNJU.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"147831a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"5a53d120\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"20\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Years of Experience\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"488f4727\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"6b8f6eae\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"76666759\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f532f9e\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"2850\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Happy Customers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"265fd738\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5473dc22\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"64\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Expert Landscapers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b38731e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4945f2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"627cd42c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65e3182\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.56499999999999772626324556767940521240234375},\"elements\":[{\"id\":\"43108b53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Projects\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45328989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Project We Have Done\\n\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"f382082\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.49900000000000233058017329312860965728759765625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":40,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"55ecfb57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"67afcbfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.0330000000000012505552149377763271331787109375,\"_inline_size_tablet\":23,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4989aa04\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Projects\",\"align\":\"right\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"left\",\"hover_animation\":\"float\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"32515d84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"3f5753f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"21982cfb\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":196,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Cutting-Leaf.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Cutting Leaf\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"404dc561\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"58d29b54\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":197,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Home-Garden.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Home Garden\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"3bff1dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"3c24185a\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":195,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/build-backyard.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Build Backyard\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_image_height_responsive_tablet\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b3cb58d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_image\":{\"id\":201,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-moving-aerial-photo-Z8KDGJ9-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_color\":\"#0000007D\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"79705206\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"51c9a732\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73b2fe0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"What They Says About Us\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4876e632\",\"elType\":\"widget\",\"settings\":{\"sg_layout_testimonial_choose\":\"style-2\",\"sg_testimonials_image_size_imagesize_size\":\"medium\",\"sg_testimonials_list\":[{\"sg_testimonials_list_client_avatar\":{\"id\":\"75\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/3SUMAU.jpg\"},\"_id\":\"6e9b2e1\",\"sg_testimonials_list_client_name\":\"Regan Traynor\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"76\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/CASCKD8.jpg\"},\"sg_testimonials_list_client_name\":\"Maisha Dunn\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"d069a43\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"77\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/MKLVKTE.jpg\"},\"sg_testimonials_list_client_name\":\"Reis Leonard\",\"sg_testimonials_list_designation\":\"Businessman\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"05c24f5\"}],\"st_wrapper_alignment_responsive\":\"left\",\"st_client_name_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_description_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_client_name_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_client_designation_normal_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_client_designation_normal_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=d343bdf\",\"st_rating_color_responsive\":\"\",\"st_client_name_normal_color_responsive\":\"\",\"st_quote_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_layout_background_background_color\":\"\"},\"st_layout_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_layout_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_wrapper_fix_height\":\"\",\"sg_setting_autoplay\":\"yes\",\"sg_setting_autoplay_pause\":\"\",\"sg_setting_arrow\":\"\",\"sg_setting_arrow_position\":\"middle-edge\",\"sg_setting_dots\":\"\",\"sg_setting_quote\":\"yes\",\"sg_setting_rating\":\"\",\"st_layout_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_layout_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_slide_show_responsive\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"sg_setting_quote_icon\":{\"value\":\"jki jki-quote-light\",\"library\":\"jkiticon\"},\"sg_layout_image_position\":\"below\",\"st_layout_background_background_background\":\"classic\",\"st_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position\":\"\",\"st_quote_override_position_top_responsive\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"st_quote_override_position_left_responsive\":{\"unit\":\"px\",\"size\":442,\"sizes\":[]},\"st_client_name_normal_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_quote_normal_font_size_responsive\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"st_client_image_margin_responsive\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_rating_font_size_responsive\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"st_rating_margin_right_responsive\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_setting_slide_show_responsive_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"st_wrapper_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position_top_responsive_tablet\":{\"unit\":\"px\",\"size\":249,\"sizes\":[]},\"st_quote_override_position_top_responsive_mobile\":{\"unit\":\"px\",\"size\":193,\"sizes\":[]},\"st_quote_override_position_left_responsive_tablet\":{\"unit\":\"px\",\"size\":265,\"sizes\":[]},\"st_quote_override_position_left_responsive_mobile\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]},\"st_quote_normal_font_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"st_description_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_normal_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64afd05f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"746d276b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30338dfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f950be4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ca735b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5d6ca3ad\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_title_hover_color_responsive\":\"globals\\/colors?id=secondary\",\"st_readmore_hover_color_responsive\":\"globals\\/colors?id=secondary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#646974\",\"st_excerpt_color_responsive\":\"#646974\",\"st_title_normal_color_responsive\":\"#272B36\",\"st_thumbnail_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_title_hover_color_responsive\":\"#FA8D25\",\"st_readmore_normal_color_responsive\":\"#FA8D25\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":false}],\"isInner\":false}]'),(1694,285,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1696,286,'_elementor_edit_mode','builder'),(1697,286,'_elementor_template_type','wp-page'),(1698,286,'_elementor_version','3.23.2'),(1699,286,'_wp_page_template','default'),(1700,286,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1701,286,'_elementor_data','[{\"id\":\"35495243\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"Eldery male gardener using scissors for bushes\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"160\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0,\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_size_tablet\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"top center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00160E\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b\":\"#00000054\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_slideshow_gallery\":[{\"id\":154,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-02-5.jpg\"},{\"id\":155,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-03-3.jpg\"},{\"id\":156,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-04-3.jpg\"},{\"id\":157,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-01-5.jpg\"}]},\"elements\":[{\"id\":\"739a26d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":65,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=06a34e7\"}},\"elements\":[{\"id\":\"132d1a8e\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Complete For All\",\"sg_title_focused\":\" Landscape \",\"sg_title_after\":\" Service And Maintenance\",\"sg_title_html_tag\":\"h1\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=primary\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"7c49583a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"635cb25b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"23cf340e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37.85499999999999687361196265555918216705322265625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":48,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"1c4c950d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4768b6f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":62.14500000000000312638803734444081783294677734375,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"flex-start\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":52,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"34c0badb\",\"elType\":\"widget\",\"settings\":{\"sg_video_button_title\":\"Play Video\",\"sg_video_button_icon\":{\"value\":\"jki jki-play\",\"library\":\"jkiticon\"},\"sg_video_url\":\"#\",\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_width_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_line_height_responsive\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#FFD402\",\"st_button_normal_glow_color_responsive\":\"#00694361\",\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"_element_width\":\"auto\",\"__globals__\":{\"st_button_normal_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=accent\",\"st_border_normal_border_border_color\":\"\",\"st_button_hover_text_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_glow_color_responsive\":\"\"},\"st_button_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_button_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_width_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_line_height_responsive_mobile\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"st_border_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_border_normal_border_border_color\":\"#FFD027\",\"st_button_line_height_responsive_tablet\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"st_button_normal_background_background_color\":\"#006943\",\"st_button_hover_text_color_responsive\":\"#006943\",\"st_button_hover_background_background_color\":\"#FFD402\",\"sg_video_auto_play\":\"\",\"sg_video_mute\":\"\"},\"elements\":[],\"widgetType\":\"jkit_video_button\"},{\"id\":\"232ec8da\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Intro\",\"align\":\"right\",\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"hide_mobile\":\"hidden-mobile\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#00160E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49b348ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"edc2dbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.00200000000000244426701101474463939666748046875,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e2246bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Prestige Luxury Cleanings LLC\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"139cc45f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Landscaping And Garden Care Services\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dc78e71\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"597dc67d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"26cf3840\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b19bda0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":167,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"980\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a46c929\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c4d8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Public Liability Insurance\",\"_id\":\"a978734\"},{\"text\":\"Environmentally Friendly\",\"_id\":\"1cd10a1\"},{\"text\":\"On Time, Every Time\",\"_id\":\"c6767db\"},{\"text\":\"Beautiful Garden Designs\",\"_id\":\"d4743f4\"},{\"text\":\"Modern Machinery And Tool\",\"_id\":\"535c17d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"398321ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4c7c15d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.9129999999999967030817060731351375579833984375,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5683e90d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":162,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"860\",\"height\":\"980\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b6190b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":163,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"-59\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"250636f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"713aa588\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"51a71b71\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#00160E\",\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=primary\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=06a34e7\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"st_content_title_color_responsive\":\"#7F7F7F\",\"st_super_color_responsive\":\"#FFD402\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\",\"sg_setting_html_tag\":\"span\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5557874f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"73847855\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":174,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/garden-maintenance-performed-by-pro-gardener-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"b1058a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":224,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":478,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":325,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"69098afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"40\",\"bottom\":\"80\",\"left\":\"40\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"7cb7bf82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91cb5d9\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26358abf\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Have The Perfect Solution For Your Landscape Problems\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15a36cc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42c8d36c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7114454f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76f24ca8\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Variation Gardening\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"138cc39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28a78a06\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Expert Landscapers\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c5ac2bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38fdb183\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3ce0b95b\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Affordable Price\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-save-money-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4c80f133\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7451fb11\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Free Consultation\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-Consultancy-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e93f2c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"39a46e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6773b2a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"87647bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Providing Services For All Your Residential And Commercial Needs.\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3d4509\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30164d28\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e8639b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":142,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-services.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fa92c14\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2c434fb3\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"5abe2e18\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33425b9f\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Residential And Commercial Projects\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"472ed309\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"67cb221c\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e6d8a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":142,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-services.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd233da\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6535a16\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"937e2e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7aee\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Lawn Services\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"d9723d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"c908972\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37c1cce6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":143,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/driveway-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b3e60ba\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3b291bbf\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"20b91942\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5649f719\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Driveway Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6300b69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"256ddf68\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d41e618\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3735f0b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":144,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/deck-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"741128a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3691562\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3c8a0e6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5eb1b3b9\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Deck Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"25f37292\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"61c9ff8e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8781ee3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":145,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/weed-control.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd84c7d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"14f7965\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fb2459e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0582197\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Weed Control \",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"f7b0fa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0197d9e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f3de9c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":146,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/grass-feed.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"75ba950\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"23edbf4\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"ad70b3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1c4ac7\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Grass Feed\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6f592ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0043a3b\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"790dd775\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"360\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"160\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"140\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"background_overlay_color_b\":\"#000414\",\"background_overlay_image\":{\"id\":186,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/a-gardener-watering-plants-in-a-flowerbed-2RT8DWL-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]}},\"elements\":[{\"id\":\"a2ed5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7e37f762\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Landscaping\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a092069\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d5099\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need Someone To Take Care Your Garden & Lawn?\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=07ee36d\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1198756c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"66521a56\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":20,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":4},\"elements\":[{\"id\":\"1a89d099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.5090000000000003410605131648480892181396484375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"id\":191,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/happy-gardeners-with-plants-and-lawn-mower-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"space-between\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_color\":\"#FFFFFF00\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":9,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"46b821c1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":219,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":183,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"449971a9\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Make Appointment & Take Care Your Garden\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=secondary\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=93191b3\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_content_title_color_hover_responsive\":\"#FFFFFF\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#FFFFFF\",\"st_icon_color_responsive\":\"#00E5CC\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#00E5CC\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":false},{\"id\":\"13747b6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.4909999999999996589394868351519107818603515625,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a13f42e\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"178***1721830795182\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fde8487\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"59883b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1617542a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Process\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29c7aa96\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Complete Every Step Carefully\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ced0d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d62463d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18cf7834\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"41f79872\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-consult-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consultation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65e1b761\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"span\",\"title_color\":\"#FFD402\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#006943\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12cdbf13\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4175d29\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-pencil_art-light\",\"library\":\"jkiticon\"},\"title_text\":\"Design Installation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2adabf01\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b628\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"569b3221\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consturction \",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"67d6b2e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6fff79c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53c9a76e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"title_text\":\"Finished Work\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"555aace0\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d57540b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"71\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardening-background-with-garden-tolls-A9BGNJU.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"147831a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"5a53d120\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"20\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Years of Experience\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"488f4727\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"6b8f6eae\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"76666759\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f532f9e\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"2850\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Happy Customers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"265fd738\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5473dc22\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"64\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Expert Landscapers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b38731e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4945f2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"627cd42c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65e3182\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.56499999999999772626324556767940521240234375},\"elements\":[{\"id\":\"43108b53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Projects\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45328989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Project We Have Done\\n\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"f382082\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.49900000000000233058017329312860965728759765625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":40,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"55ecfb57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"67afcbfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.0330000000000012505552149377763271331787109375,\"_inline_size_tablet\":23,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4989aa04\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Projects\",\"align\":\"right\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"left\",\"hover_animation\":\"float\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"32515d84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"3f5753f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"21982cfb\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":196,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Cutting-Leaf.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Cutting Leaf\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"404dc561\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"58d29b54\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":197,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Home-Garden.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Home Garden\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"3bff1dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"3c24185a\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":195,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/build-backyard.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Build Backyard\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_image_height_responsive_tablet\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b3cb58d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_image\":{\"id\":201,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-moving-aerial-photo-Z8KDGJ9-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_color\":\"#0000007D\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"79705206\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"51c9a732\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73b2fe0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"What They Says About Us\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4876e632\",\"elType\":\"widget\",\"settings\":{\"sg_layout_testimonial_choose\":\"style-2\",\"sg_testimonials_image_size_imagesize_size\":\"medium\",\"sg_testimonials_list\":[{\"sg_testimonials_list_client_avatar\":{\"id\":\"75\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/3SUMAU.jpg\"},\"_id\":\"6e9b2e1\",\"sg_testimonials_list_client_name\":\"Regan Traynor\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"76\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/CASCKD8.jpg\"},\"sg_testimonials_list_client_name\":\"Maisha Dunn\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"d069a43\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"77\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/MKLVKTE.jpg\"},\"sg_testimonials_list_client_name\":\"Reis Leonard\",\"sg_testimonials_list_designation\":\"Businessman\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"05c24f5\"}],\"st_wrapper_alignment_responsive\":\"left\",\"st_client_name_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_description_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_client_name_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_client_designation_normal_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_client_designation_normal_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=d343bdf\",\"st_rating_color_responsive\":\"\",\"st_client_name_normal_color_responsive\":\"\",\"st_quote_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_layout_background_background_color\":\"\"},\"st_layout_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_layout_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_wrapper_fix_height\":\"\",\"sg_setting_autoplay\":\"yes\",\"sg_setting_autoplay_pause\":\"\",\"sg_setting_arrow\":\"\",\"sg_setting_arrow_position\":\"middle-edge\",\"sg_setting_dots\":\"\",\"sg_setting_quote\":\"yes\",\"sg_setting_rating\":\"\",\"st_layout_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_layout_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_slide_show_responsive\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"sg_setting_quote_icon\":{\"value\":\"jki jki-quote-light\",\"library\":\"jkiticon\"},\"sg_layout_image_position\":\"below\",\"st_layout_background_background_background\":\"classic\",\"st_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position\":\"\",\"st_quote_override_position_top_responsive\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"st_quote_override_position_left_responsive\":{\"unit\":\"px\",\"size\":442,\"sizes\":[]},\"st_client_name_normal_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_quote_normal_font_size_responsive\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"st_client_image_margin_responsive\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_rating_font_size_responsive\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"st_rating_margin_right_responsive\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_setting_slide_show_responsive_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"st_wrapper_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position_top_responsive_tablet\":{\"unit\":\"px\",\"size\":249,\"sizes\":[]},\"st_quote_override_position_top_responsive_mobile\":{\"unit\":\"px\",\"size\":193,\"sizes\":[]},\"st_quote_override_position_left_responsive_tablet\":{\"unit\":\"px\",\"size\":265,\"sizes\":[]},\"st_quote_override_position_left_responsive_mobile\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]},\"st_quote_normal_font_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"st_description_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_normal_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64afd05f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"746d276b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30338dfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f950be4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ca735b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5d6ca3ad\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_title_hover_color_responsive\":\"globals\\/colors?id=secondary\",\"st_readmore_hover_color_responsive\":\"globals\\/colors?id=secondary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#646974\",\"st_excerpt_color_responsive\":\"#646974\",\"st_title_normal_color_responsive\":\"#272B36\",\"st_thumbnail_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_title_hover_color_responsive\":\"#FA8D25\",\"st_readmore_normal_color_responsive\":\"#FA8D25\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":false}],\"isInner\":false}]'),(1702,286,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1703,286,'_elementor_css','a:6:{s:4:\"time\";i:1721838410;s:5:\"fonts\";a:1:{i:0;s:5:\"Inter\";}s:5:\"icons\";a:3:{i:0;s:0:\"\";i:1;s:8:\"jkiticon\";i:3;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1704,287,'_elementor_edit_mode','builder'),(1705,287,'_elementor_template_type','wp-page'),(1706,287,'_elementor_version','3.23.2'),(1707,287,'_wp_page_template','default'),(1708,287,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1709,287,'_elementor_data','[{\"id\":\"35495243\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"Eldery male gardener using scissors for bushes\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"160\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0,\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_size_tablet\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"top center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00160E\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b\":\"#00000054\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_slideshow_gallery\":[{\"id\":154,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-02-5.jpg\"},{\"id\":155,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-03-3.jpg\"},{\"id\":156,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-04-3.jpg\"},{\"id\":157,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-01-5.jpg\"}]},\"elements\":[{\"id\":\"739a26d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":65,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=06a34e7\"}},\"elements\":[{\"id\":\"132d1a8e\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Complete For All\",\"sg_title_focused\":\" Landscape \",\"sg_title_after\":\" Service And Maintenance\",\"sg_title_html_tag\":\"h1\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=primary\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"7c49583a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"635cb25b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"23cf340e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37.85499999999999687361196265555918216705322265625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":48,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"1c4c950d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4768b6f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":62.14500000000000312638803734444081783294677734375,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"flex-start\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":52,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"34c0badb\",\"elType\":\"widget\",\"settings\":{\"sg_video_button_title\":\"Play Video\",\"sg_video_button_icon\":{\"value\":\"jki jki-play\",\"library\":\"jkiticon\"},\"sg_video_url\":\"#\",\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_width_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_line_height_responsive\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#FFD402\",\"st_button_normal_glow_color_responsive\":\"#00694361\",\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"_element_width\":\"auto\",\"__globals__\":{\"st_button_normal_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=accent\",\"st_border_normal_border_border_color\":\"\",\"st_button_hover_text_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_glow_color_responsive\":\"\"},\"st_button_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_button_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_width_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_line_height_responsive_mobile\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"st_border_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_border_normal_border_border_color\":\"#FFD027\",\"st_button_line_height_responsive_tablet\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"st_button_normal_background_background_color\":\"#006943\",\"st_button_hover_text_color_responsive\":\"#006943\",\"st_button_hover_background_background_color\":\"#FFD402\",\"sg_video_auto_play\":\"\",\"sg_video_mute\":\"\"},\"elements\":[],\"widgetType\":\"jkit_video_button\"},{\"id\":\"232ec8da\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Intro\",\"align\":\"right\",\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"hide_mobile\":\"hidden-mobile\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#00160E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49b348ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"edc2dbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.00200000000000244426701101474463939666748046875,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e2246bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Prestige Luxury Cleanings LLC\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"139cc45f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Landscaping And Garden Care Services\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dc78e71\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"597dc67d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"26cf3840\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b19bda0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":167,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"980\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a46c929\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c4d8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Public Liability Insurance\",\"_id\":\"a978734\"},{\"text\":\"Environmentally Friendly\",\"_id\":\"1cd10a1\"},{\"text\":\"On Time, Every Time\",\"_id\":\"c6767db\"},{\"text\":\"Beautiful Garden Designs\",\"_id\":\"d4743f4\"},{\"text\":\"Modern Machinery And Tool\",\"_id\":\"535c17d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"398321ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4c7c15d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.9129999999999967030817060731351375579833984375,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5683e90d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":162,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"860\",\"height\":\"980\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b6190b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":163,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"-59\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"250636f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"713aa588\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"51a71b71\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#00160E\",\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=primary\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=06a34e7\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"st_content_title_color_responsive\":\"#7F7F7F\",\"st_super_color_responsive\":\"#FFD402\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\",\"sg_setting_html_tag\":\"span\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5557874f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"73847855\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":174,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/garden-maintenance-performed-by-pro-gardener-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"b1058a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":224,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":478,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":325,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"69098afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"40\",\"bottom\":\"80\",\"left\":\"40\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"7cb7bf82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91cb5d9\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26358abf\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Have The Perfect Solution For Your Landscape Problems\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15a36cc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42c8d36c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7114454f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76f24ca8\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Variation Gardening\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"138cc39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28a78a06\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Expert Landscapers\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c5ac2bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38fdb183\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3ce0b95b\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Affordable Price\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-save-money-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4c80f133\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7451fb11\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Free Consultation\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-Consultancy-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e93f2c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"39a46e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6773b2a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"87647bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Providing Services For All Your Residential And Commercial Needs.\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3d4509\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30164d28\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e8639b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":142,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-services.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fa92c14\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2c434fb3\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"5abe2e18\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33425b9f\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Residential And Commercial Projects\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"472ed309\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"67cb221c\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e6d8a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":142,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-services.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd233da\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6535a16\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"937e2e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7aee\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Lawn Services\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"d9723d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"c908972\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37c1cce6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":143,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/driveway-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b3e60ba\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3b291bbf\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"20b91942\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5649f719\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Driveway Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6300b69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"256ddf68\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d41e618\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3735f0b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":144,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/deck-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"741128a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3691562\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3c8a0e6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5eb1b3b9\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Deck Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"25f37292\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"61c9ff8e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8781ee3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":145,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/weed-control.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd84c7d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"14f7965\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fb2459e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0582197\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Weed Control \",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"f7b0fa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0197d9e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f3de9c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":146,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/grass-feed.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"75ba950\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"23edbf4\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"ad70b3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1c4ac7\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Grass Feed\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6f592ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0043a3b\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"790dd775\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"360\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"160\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"140\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"background_overlay_color_b\":\"#000414\",\"background_overlay_image\":{\"id\":186,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/a-gardener-watering-plants-in-a-flowerbed-2RT8DWL-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]}},\"elements\":[{\"id\":\"a2ed5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7e37f762\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Landscaping\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a092069\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d5099\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need Someone To Take Care Your Garden & Lawn?\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=07ee36d\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1198756c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"66521a56\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":20,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":4},\"elements\":[{\"id\":\"1a89d099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.5090000000000003410605131648480892181396484375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"id\":191,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/happy-gardeners-with-plants-and-lawn-mower-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"space-between\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_color\":\"#FFFFFF00\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":9,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"46b821c1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":219,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":183,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"449971a9\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Make Appointment & Take Care Your Garden\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=secondary\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=93191b3\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_content_title_color_hover_responsive\":\"#FFFFFF\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#FFFFFF\",\"st_icon_color_responsive\":\"#00E5CC\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#00E5CC\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":false},{\"id\":\"13747b6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.4909999999999996589394868351519107818603515625,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a13f42e\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"178***1721830795182\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fde8487\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"59883b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1617542a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Process\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29c7aa96\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Complete Every Step Carefully\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ced0d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d62463d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18cf7834\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"41f79872\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-consult-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consultation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65e1b761\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"span\",\"title_color\":\"#FFD402\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#006943\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12cdbf13\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4175d29\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-pencil_art-light\",\"library\":\"jkiticon\"},\"title_text\":\"Design Installation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2adabf01\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b628\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"569b3221\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consturction \",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"67d6b2e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6fff79c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53c9a76e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"title_text\":\"Finished Work\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"555aace0\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d57540b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"71\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardening-background-with-garden-tolls-A9BGNJU.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"147831a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"5a53d120\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"20\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Years of Experience\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"488f4727\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"6b8f6eae\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"76666759\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f532f9e\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"2850\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Happy Customers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"265fd738\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5473dc22\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"64\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Expert Landscapers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b38731e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4945f2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"627cd42c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65e3182\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.56499999999999772626324556767940521240234375},\"elements\":[{\"id\":\"43108b53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Projects\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45328989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Project We Have Done\\n\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"f382082\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.49900000000000233058017329312860965728759765625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":40,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"55ecfb57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"67afcbfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.0330000000000012505552149377763271331787109375,\"_inline_size_tablet\":23,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4989aa04\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Projects\",\"align\":\"right\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"left\",\"hover_animation\":\"float\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"32515d84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"3f5753f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"21982cfb\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":196,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Cutting-Leaf.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Cutting Leaf\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"404dc561\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"58d29b54\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":197,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Home-Garden.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Home Garden\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"3bff1dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"3c24185a\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":195,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/build-backyard.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Build Backyard\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_image_height_responsive_tablet\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b3cb58d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_image\":{\"id\":201,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-moving-aerial-photo-Z8KDGJ9-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_color\":\"#0000007D\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"79705206\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"51c9a732\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73b2fe0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"What They Says About Us\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4876e632\",\"elType\":\"widget\",\"settings\":{\"sg_layout_testimonial_choose\":\"style-2\",\"sg_testimonials_image_size_imagesize_size\":\"medium\",\"sg_testimonials_list\":[{\"sg_testimonials_list_client_avatar\":{\"id\":\"75\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/3SUMAU.jpg\"},\"_id\":\"6e9b2e1\",\"sg_testimonials_list_client_name\":\"Regan Traynor\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"76\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/CASCKD8.jpg\"},\"sg_testimonials_list_client_name\":\"Maisha Dunn\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"d069a43\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"77\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/MKLVKTE.jpg\"},\"sg_testimonials_list_client_name\":\"Reis Leonard\",\"sg_testimonials_list_designation\":\"Businessman\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"05c24f5\"}],\"st_wrapper_alignment_responsive\":\"left\",\"st_client_name_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_description_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_client_name_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_client_designation_normal_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_client_designation_normal_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=d343bdf\",\"st_rating_color_responsive\":\"\",\"st_client_name_normal_color_responsive\":\"\",\"st_quote_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_layout_background_background_color\":\"\"},\"st_layout_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_layout_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_wrapper_fix_height\":\"\",\"sg_setting_autoplay\":\"yes\",\"sg_setting_autoplay_pause\":\"\",\"sg_setting_arrow\":\"\",\"sg_setting_arrow_position\":\"middle-edge\",\"sg_setting_dots\":\"\",\"sg_setting_quote\":\"yes\",\"sg_setting_rating\":\"\",\"st_layout_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_layout_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_slide_show_responsive\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"sg_setting_quote_icon\":{\"value\":\"jki jki-quote-light\",\"library\":\"jkiticon\"},\"sg_layout_image_position\":\"below\",\"st_layout_background_background_background\":\"classic\",\"st_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position\":\"\",\"st_quote_override_position_top_responsive\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"st_quote_override_position_left_responsive\":{\"unit\":\"px\",\"size\":442,\"sizes\":[]},\"st_client_name_normal_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_quote_normal_font_size_responsive\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"st_client_image_margin_responsive\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_rating_font_size_responsive\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"st_rating_margin_right_responsive\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_setting_slide_show_responsive_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"st_wrapper_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position_top_responsive_tablet\":{\"unit\":\"px\",\"size\":249,\"sizes\":[]},\"st_quote_override_position_top_responsive_mobile\":{\"unit\":\"px\",\"size\":193,\"sizes\":[]},\"st_quote_override_position_left_responsive_tablet\":{\"unit\":\"px\",\"size\":265,\"sizes\":[]},\"st_quote_override_position_left_responsive_mobile\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]},\"st_quote_normal_font_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"st_description_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_normal_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64afd05f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"746d276b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30338dfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f950be4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ca735b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5d6ca3ad\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_title_hover_color_responsive\":\"globals\\/colors?id=secondary\",\"st_readmore_hover_color_responsive\":\"globals\\/colors?id=secondary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#646974\",\"st_excerpt_color_responsive\":\"#646974\",\"st_title_normal_color_responsive\":\"#272B36\",\"st_thumbnail_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_title_hover_color_responsive\":\"#FA8D25\",\"st_readmore_normal_color_responsive\":\"#FA8D25\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":false}],\"isInner\":false}]'),(1710,287,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1711,287,'_elementor_css','a:6:{s:4:\"time\";i:1721838410;s:5:\"fonts\";a:1:{i:0;s:5:\"Inter\";}s:5:\"icons\";a:3:{i:0;s:0:\"\";i:1;s:8:\"jkiticon\";i:3;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1712,288,'_elementor_edit_mode','builder'),(1713,288,'_elementor_template_type','wp-page'),(1714,288,'_elementor_version','3.23.2'),(1715,288,'_wp_page_template','default'),(1716,288,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'); INSERT INTO `victorq_postmeta` VALUES (1717,288,'_elementor_data','[{\"id\":\"35495243\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"Eldery male gardener using scissors for bushes\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"160\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0,\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_size_tablet\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"top center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00160E\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b\":\"#00000054\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_slideshow_gallery\":[{\"id\":154,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-02-5.jpg\"},{\"id\":155,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-03-3.jpg\"},{\"id\":156,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-04-3.jpg\"},{\"id\":157,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-01-5.jpg\"}]},\"elements\":[{\"id\":\"739a26d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":65,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=06a34e7\"}},\"elements\":[{\"id\":\"132d1a8e\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Complete For All\",\"sg_title_focused\":\" Landscape \",\"sg_title_after\":\" Service And Maintenance\",\"sg_title_html_tag\":\"h1\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=primary\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"7c49583a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"635cb25b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"23cf340e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37.85499999999999687361196265555918216705322265625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":48,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"1c4c950d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4768b6f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":62.14500000000000312638803734444081783294677734375,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"flex-start\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":52,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"34c0badb\",\"elType\":\"widget\",\"settings\":{\"sg_video_button_title\":\"Play Video\",\"sg_video_button_icon\":{\"value\":\"jki jki-play\",\"library\":\"jkiticon\"},\"sg_video_url\":\"#\",\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_width_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_line_height_responsive\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#FFD402\",\"st_button_normal_glow_color_responsive\":\"#00694361\",\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"_element_width\":\"auto\",\"__globals__\":{\"st_button_normal_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=accent\",\"st_border_normal_border_border_color\":\"\",\"st_button_hover_text_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_glow_color_responsive\":\"\"},\"st_button_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_button_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_width_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_line_height_responsive_mobile\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"st_border_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_border_normal_border_border_color\":\"#FFD027\",\"st_button_line_height_responsive_tablet\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"st_button_normal_background_background_color\":\"#006943\",\"st_button_hover_text_color_responsive\":\"#006943\",\"st_button_hover_background_background_color\":\"#FFD402\",\"sg_video_auto_play\":\"\",\"sg_video_mute\":\"\"},\"elements\":[],\"widgetType\":\"jkit_video_button\"},{\"id\":\"232ec8da\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Intro\",\"align\":\"right\",\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"hide_mobile\":\"hidden-mobile\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#00160E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49b348ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"edc2dbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.00200000000000244426701101474463939666748046875,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e2246bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Prestige Luxury Cleanings LLC\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"139cc45f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Landscaping And Garden Care Services\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dc78e71\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"597dc67d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"26cf3840\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b19bda0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":167,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"980\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a46c929\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c4d8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Public Liability Insurance\",\"_id\":\"a978734\"},{\"text\":\"Environmentally Friendly\",\"_id\":\"1cd10a1\"},{\"text\":\"On Time, Every Time\",\"_id\":\"c6767db\"},{\"text\":\"Beautiful Garden Designs\",\"_id\":\"d4743f4\"},{\"text\":\"Modern Machinery And Tool\",\"_id\":\"535c17d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"398321ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4c7c15d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.9129999999999967030817060731351375579833984375,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5683e90d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":162,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"860\",\"height\":\"980\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b6190b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":163,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"-59\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"250636f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"713aa588\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"51a71b71\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#00160E\",\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=primary\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=06a34e7\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"st_content_title_color_responsive\":\"#7F7F7F\",\"st_super_color_responsive\":\"#FFD402\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\",\"sg_setting_html_tag\":\"span\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5557874f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"73847855\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":174,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/garden-maintenance-performed-by-pro-gardener-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"b1058a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":224,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":478,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":325,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"69098afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"40\",\"bottom\":\"80\",\"left\":\"40\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"7cb7bf82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91cb5d9\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26358abf\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Have The Perfect Solution For Your Landscape Problems\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15a36cc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42c8d36c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7114454f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76f24ca8\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Variation Gardening\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"138cc39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28a78a06\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Expert Landscapers\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c5ac2bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38fdb183\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3ce0b95b\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Affordable Price\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-save-money-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4c80f133\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7451fb11\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Free Consultation\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-Consultancy-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e93f2c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"39a46e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6773b2a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"87647bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Providing Services For All Your Residential And Commercial Needs.\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3d4509\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30164d28\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e8639b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":142,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-services.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fa92c14\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2c434fb3\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"5abe2e18\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33425b9f\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Residential And Commercial Projects\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"472ed309\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"67cb221c\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e6d8a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":142,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-services.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd233da\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6535a16\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"937e2e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7aee\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Lawn Services\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"d9723d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"c908972\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37c1cce6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":143,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/driveway-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b3e60ba\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3b291bbf\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"20b91942\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5649f719\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Driveway Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6300b69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"256ddf68\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d41e618\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3735f0b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":144,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/deck-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"741128a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3691562\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3c8a0e6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5eb1b3b9\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Deck Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"25f37292\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"61c9ff8e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8781ee3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":145,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/weed-control.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd84c7d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"14f7965\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fb2459e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0582197\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Weed Control \",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"f7b0fa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0197d9e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f3de9c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":146,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/grass-feed.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"75ba950\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"23edbf4\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"ad70b3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1c4ac7\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Grass Feed\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6f592ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0043a3b\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"790dd775\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"360\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"160\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"140\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"background_overlay_color_b\":\"#000414\",\"background_overlay_image\":{\"id\":186,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/a-gardener-watering-plants-in-a-flowerbed-2RT8DWL-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]}},\"elements\":[{\"id\":\"a2ed5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7e37f762\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Landscaping\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a092069\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d5099\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need Someone To Take Care Your Garden & Lawn?\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=07ee36d\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1198756c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"66521a56\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":20,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":4},\"elements\":[{\"id\":\"1a89d099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.5090000000000003410605131648480892181396484375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"id\":191,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/happy-gardeners-with-plants-and-lawn-mower-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"space-between\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_color\":\"#FFFFFF00\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":9,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"46b821c1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":219,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":183,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"449971a9\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Make Appointment & Take Care Your Garden\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=secondary\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=93191b3\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_content_title_color_hover_responsive\":\"#FFFFFF\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#FFFFFF\",\"st_icon_color_responsive\":\"#00E5CC\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#00E5CC\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":false},{\"id\":\"13747b6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.4909999999999996589394868351519107818603515625,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1a13f42e\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"178***1721830795182\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fde8487\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"59883b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1617542a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Process\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29c7aa96\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Complete Every Step Carefully\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ced0d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d62463d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18cf7834\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"41f79872\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-consult-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consultation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65e1b761\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"span\",\"title_color\":\"#FFD402\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#006943\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12cdbf13\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4175d29\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-pencil_art-light\",\"library\":\"jkiticon\"},\"title_text\":\"Design Installation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2adabf01\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b628\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"569b3221\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consturction \",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"67d6b2e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6fff79c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53c9a76e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"title_text\":\"Finished Work\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"555aace0\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d57540b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"71\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardening-background-with-garden-tolls-A9BGNJU.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"147831a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"5a53d120\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"20\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Years of Experience\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"488f4727\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"6b8f6eae\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"76666759\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f532f9e\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"2850\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Happy Customers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"265fd738\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5473dc22\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"64\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Expert Landscapers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b38731e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4945f2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"627cd42c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65e3182\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.56499999999999772626324556767940521240234375},\"elements\":[{\"id\":\"43108b53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Projects\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45328989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Project We Have Done\\n\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"f382082\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.49900000000000233058017329312860965728759765625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":40,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"55ecfb57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"67afcbfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.0330000000000012505552149377763271331787109375,\"_inline_size_tablet\":23,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4989aa04\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Projects\",\"align\":\"right\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"left\",\"hover_animation\":\"float\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"32515d84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"3f5753f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"21982cfb\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":196,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Cutting-Leaf.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Cutting Leaf\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"404dc561\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"58d29b54\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":197,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Home-Garden.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Home Garden\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"3bff1dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"3c24185a\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":195,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/build-backyard.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Build Backyard\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_image_height_responsive_tablet\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b3cb58d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_image\":{\"id\":201,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-moving-aerial-photo-Z8KDGJ9-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_color\":\"#0000007D\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"79705206\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"51c9a732\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73b2fe0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"What They Says About Us\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4876e632\",\"elType\":\"widget\",\"settings\":{\"sg_layout_testimonial_choose\":\"style-2\",\"sg_testimonials_image_size_imagesize_size\":\"medium\",\"sg_testimonials_list\":[{\"sg_testimonials_list_client_avatar\":{\"id\":\"75\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/3SUMAU.jpg\"},\"_id\":\"6e9b2e1\",\"sg_testimonials_list_client_name\":\"Regan Traynor\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"76\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/CASCKD8.jpg\"},\"sg_testimonials_list_client_name\":\"Maisha Dunn\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"d069a43\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"77\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/MKLVKTE.jpg\"},\"sg_testimonials_list_client_name\":\"Reis Leonard\",\"sg_testimonials_list_designation\":\"Businessman\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"05c24f5\"}],\"st_wrapper_alignment_responsive\":\"left\",\"st_client_name_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_description_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_client_name_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_client_designation_normal_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_client_designation_normal_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=d343bdf\",\"st_rating_color_responsive\":\"\",\"st_client_name_normal_color_responsive\":\"\",\"st_quote_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_layout_background_background_color\":\"\"},\"st_layout_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_layout_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_wrapper_fix_height\":\"\",\"sg_setting_autoplay\":\"yes\",\"sg_setting_autoplay_pause\":\"\",\"sg_setting_arrow\":\"\",\"sg_setting_arrow_position\":\"middle-edge\",\"sg_setting_dots\":\"\",\"sg_setting_quote\":\"yes\",\"sg_setting_rating\":\"\",\"st_layout_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_layout_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_slide_show_responsive\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"sg_setting_quote_icon\":{\"value\":\"jki jki-quote-light\",\"library\":\"jkiticon\"},\"sg_layout_image_position\":\"below\",\"st_layout_background_background_background\":\"classic\",\"st_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position\":\"\",\"st_quote_override_position_top_responsive\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"st_quote_override_position_left_responsive\":{\"unit\":\"px\",\"size\":442,\"sizes\":[]},\"st_client_name_normal_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_quote_normal_font_size_responsive\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"st_client_image_margin_responsive\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_rating_font_size_responsive\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"st_rating_margin_right_responsive\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_setting_slide_show_responsive_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"st_wrapper_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position_top_responsive_tablet\":{\"unit\":\"px\",\"size\":249,\"sizes\":[]},\"st_quote_override_position_top_responsive_mobile\":{\"unit\":\"px\",\"size\":193,\"sizes\":[]},\"st_quote_override_position_left_responsive_tablet\":{\"unit\":\"px\",\"size\":265,\"sizes\":[]},\"st_quote_override_position_left_responsive_mobile\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]},\"st_quote_normal_font_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"st_description_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_normal_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64afd05f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"746d276b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30338dfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f950be4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ca735b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5d6ca3ad\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_title_hover_color_responsive\":\"globals\\/colors?id=secondary\",\"st_readmore_hover_color_responsive\":\"globals\\/colors?id=secondary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#646974\",\"st_excerpt_color_responsive\":\"#646974\",\"st_title_normal_color_responsive\":\"#272B36\",\"st_thumbnail_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_title_hover_color_responsive\":\"#FA8D25\",\"st_readmore_normal_color_responsive\":\"#FA8D25\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":false}],\"isInner\":false}]'),(1718,288,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1719,288,'_elementor_css','a:6:{s:4:\"time\";i:1721838410;s:5:\"fonts\";a:1:{i:0;s:5:\"Inter\";}s:5:\"icons\";a:3:{i:0;s:0:\"\";i:1;s:8:\"jkiticon\";i:3;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1720,289,'_elementor_edit_mode','builder'),(1721,289,'_elementor_template_type','wp-page'),(1722,289,'_elementor_version','3.23.2'),(1723,289,'_wp_page_template','default'),(1724,289,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1725,289,'_elementor_data','[{\"id\":\"35495243\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"Eldery male gardener using scissors for bushes\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"160\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0,\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_size_tablet\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"top center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00160E\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b\":\"#00000054\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_slideshow_gallery\":[{\"id\":154,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-02-5.jpg\"},{\"id\":155,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-03-3.jpg\"},{\"id\":156,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-04-3.jpg\"},{\"id\":157,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-01-5.jpg\"}]},\"elements\":[{\"id\":\"739a26d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":65,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=06a34e7\"}},\"elements\":[{\"id\":\"132d1a8e\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Complete For All\",\"sg_title_focused\":\" Landscape \",\"sg_title_after\":\" Service And Maintenance\",\"sg_title_html_tag\":\"h1\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=primary\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"7c49583a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"635cb25b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"23cf340e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37.85499999999999687361196265555918216705322265625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":48,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"1c4c950d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4768b6f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":62.14500000000000312638803734444081783294677734375,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"flex-start\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":52,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"34c0badb\",\"elType\":\"widget\",\"settings\":{\"sg_video_button_title\":\"Play Video\",\"sg_video_button_icon\":{\"value\":\"jki jki-play\",\"library\":\"jkiticon\"},\"sg_video_url\":\"#\",\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_width_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_line_height_responsive\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#FFD402\",\"st_button_normal_glow_color_responsive\":\"#00694361\",\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"_element_width\":\"auto\",\"__globals__\":{\"st_button_normal_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=accent\",\"st_border_normal_border_border_color\":\"\",\"st_button_hover_text_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_glow_color_responsive\":\"\"},\"st_button_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_button_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_width_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_line_height_responsive_mobile\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"st_border_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_border_normal_border_border_color\":\"#FFD027\",\"st_button_line_height_responsive_tablet\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"st_button_normal_background_background_color\":\"#006943\",\"st_button_hover_text_color_responsive\":\"#006943\",\"st_button_hover_background_background_color\":\"#FFD402\",\"sg_video_auto_play\":\"\",\"sg_video_mute\":\"\"},\"elements\":[],\"widgetType\":\"jkit_video_button\"},{\"id\":\"232ec8da\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Intro\",\"align\":\"right\",\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"hide_mobile\":\"hidden-mobile\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#00160E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49b348ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"edc2dbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.00200000000000244426701101474463939666748046875,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e2246bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Prestige Luxury Cleanings LLC\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"139cc45f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Landscaping And Garden Care Services\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dc78e71\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"597dc67d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"26cf3840\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b19bda0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":167,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"980\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a46c929\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c4d8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Public Liability Insurance\",\"_id\":\"a978734\"},{\"text\":\"Environmentally Friendly\",\"_id\":\"1cd10a1\"},{\"text\":\"On Time, Every Time\",\"_id\":\"c6767db\"},{\"text\":\"Beautiful Garden Designs\",\"_id\":\"d4743f4\"},{\"text\":\"Modern Machinery And Tool\",\"_id\":\"535c17d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"398321ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4c7c15d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.9129999999999967030817060731351375579833984375,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5683e90d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":162,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"860\",\"height\":\"980\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b6190b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":163,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"-59\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"250636f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"713aa588\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"51a71b71\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#00160E\",\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=primary\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=06a34e7\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"st_content_title_color_responsive\":\"#7F7F7F\",\"st_super_color_responsive\":\"#FFD402\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\",\"sg_setting_html_tag\":\"span\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5557874f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"73847855\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":174,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/garden-maintenance-performed-by-pro-gardener-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"b1058a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":224,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":478,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":325,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"69098afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"40\",\"bottom\":\"80\",\"left\":\"40\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"7cb7bf82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91cb5d9\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26358abf\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Have The Perfect Solution For Your Landscape Problems\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15a36cc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42c8d36c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7114454f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76f24ca8\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Variation Gardening\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"138cc39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28a78a06\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Expert Landscapers\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c5ac2bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38fdb183\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3ce0b95b\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Affordable Price\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-save-money-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4c80f133\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7451fb11\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Free Consultation\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-Consultancy-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e93f2c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"39a46e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6773b2a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"87647bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Providing Services For All Your Residential And Commercial Needs.\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3d4509\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30164d28\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e8639b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":142,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-services.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fa92c14\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2c434fb3\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"5abe2e18\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33425b9f\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Residential And Commercial Projects\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"472ed309\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"67cb221c\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e6d8a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":142,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-services.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd233da\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6535a16\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"937e2e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7aee\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Lawn Services\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"d9723d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"c908972\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37c1cce6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":143,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/driveway-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b3e60ba\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3b291bbf\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"20b91942\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5649f719\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Driveway Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6300b69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"256ddf68\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d41e618\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3735f0b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":144,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/deck-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"741128a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3691562\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3c8a0e6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5eb1b3b9\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Deck Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"25f37292\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"61c9ff8e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8781ee3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":145,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/weed-control.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd84c7d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"14f7965\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fb2459e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0582197\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Weed Control \",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"f7b0fa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0197d9e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f3de9c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":146,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/grass-feed.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"75ba950\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"23edbf4\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"ad70b3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1c4ac7\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Grass Feed\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6f592ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0043a3b\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"790dd775\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"360\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"160\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"140\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"background_overlay_color_b\":\"#000414\",\"background_overlay_image\":{\"id\":186,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/a-gardener-watering-plants-in-a-flowerbed-2RT8DWL-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]}},\"elements\":[{\"id\":\"a2ed5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7e37f762\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Landscaping\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a092069\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d5099\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need Someone To Take Care Your Garden & Lawn?\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=07ee36d\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1198756c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"66521a56\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":20,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":4},\"elements\":[{\"id\":\"1a89d099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.5090000000000003410605131648480892181396484375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"id\":191,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/happy-gardeners-with-plants-and-lawn-mower-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"space-between\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_color\":\"#FFFFFF00\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":9,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"46b821c1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":219,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":183,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"449971a9\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Make Appointment & Take Care Your Garden\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=secondary\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=93191b3\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_content_title_color_hover_responsive\":\"#FFFFFF\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#FFFFFF\",\"st_icon_color_responsive\":\"#00E5CC\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#00E5CC\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":false},{\"id\":\"13747b6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.4909999999999996589394868351519107818603515625,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1a13f42e\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"178***1721830795182\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fde8487\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"59883b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1617542a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Process\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29c7aa96\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Complete Every Step Carefully\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ced0d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d62463d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18cf7834\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"41f79872\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-consult-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consultation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65e1b761\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"span\",\"title_color\":\"#FFD402\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#006943\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12cdbf13\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4175d29\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-pencil_art-light\",\"library\":\"jkiticon\"},\"title_text\":\"Design Installation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2adabf01\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b628\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"569b3221\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consturction \",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"67d6b2e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6fff79c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53c9a76e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"title_text\":\"Finished Work\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"555aace0\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d57540b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"71\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardening-background-with-garden-tolls-A9BGNJU.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"147831a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"5a53d120\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"20\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Years of Experience\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"488f4727\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"6b8f6eae\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"76666759\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f532f9e\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"2850\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Happy Customers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"265fd738\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5473dc22\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"64\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Expert Landscapers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b38731e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4945f2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"627cd42c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65e3182\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.56499999999999772626324556767940521240234375},\"elements\":[{\"id\":\"43108b53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Projects\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45328989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Project We Have Done\\n\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"f382082\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.49900000000000233058017329312860965728759765625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":40,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"55ecfb57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"67afcbfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.0330000000000012505552149377763271331787109375,\"_inline_size_tablet\":23,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4989aa04\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Projects\",\"align\":\"right\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"left\",\"hover_animation\":\"float\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"32515d84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"3f5753f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"21982cfb\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":196,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Cutting-Leaf.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Cutting Leaf\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"404dc561\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"58d29b54\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":197,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Home-Garden.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Home Garden\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"3bff1dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"3c24185a\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":195,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/build-backyard.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Build Backyard\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_image_height_responsive_tablet\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b3cb58d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_image\":{\"id\":201,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-moving-aerial-photo-Z8KDGJ9-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_color\":\"#0000007D\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"79705206\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"51c9a732\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73b2fe0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"What They Says About Us\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4876e632\",\"elType\":\"widget\",\"settings\":{\"sg_layout_testimonial_choose\":\"style-2\",\"sg_testimonials_image_size_imagesize_size\":\"medium\",\"sg_testimonials_list\":[{\"sg_testimonials_list_client_avatar\":{\"id\":\"75\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/3SUMAU.jpg\"},\"_id\":\"6e9b2e1\",\"sg_testimonials_list_client_name\":\"Regan Traynor\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"76\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/CASCKD8.jpg\"},\"sg_testimonials_list_client_name\":\"Maisha Dunn\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"d069a43\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"77\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/MKLVKTE.jpg\"},\"sg_testimonials_list_client_name\":\"Reis Leonard\",\"sg_testimonials_list_designation\":\"Businessman\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"05c24f5\"}],\"st_wrapper_alignment_responsive\":\"left\",\"st_client_name_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_description_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_client_name_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_client_designation_normal_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_client_designation_normal_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=d343bdf\",\"st_rating_color_responsive\":\"\",\"st_client_name_normal_color_responsive\":\"\",\"st_quote_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_layout_background_background_color\":\"\"},\"st_layout_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_layout_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_wrapper_fix_height\":\"\",\"sg_setting_autoplay\":\"yes\",\"sg_setting_autoplay_pause\":\"\",\"sg_setting_arrow\":\"\",\"sg_setting_arrow_position\":\"middle-edge\",\"sg_setting_dots\":\"\",\"sg_setting_quote\":\"yes\",\"sg_setting_rating\":\"\",\"st_layout_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_layout_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_slide_show_responsive\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"sg_setting_quote_icon\":{\"value\":\"jki jki-quote-light\",\"library\":\"jkiticon\"},\"sg_layout_image_position\":\"below\",\"st_layout_background_background_background\":\"classic\",\"st_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position\":\"\",\"st_quote_override_position_top_responsive\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"st_quote_override_position_left_responsive\":{\"unit\":\"px\",\"size\":442,\"sizes\":[]},\"st_client_name_normal_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_quote_normal_font_size_responsive\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"st_client_image_margin_responsive\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_rating_font_size_responsive\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"st_rating_margin_right_responsive\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_setting_slide_show_responsive_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"st_wrapper_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position_top_responsive_tablet\":{\"unit\":\"px\",\"size\":249,\"sizes\":[]},\"st_quote_override_position_top_responsive_mobile\":{\"unit\":\"px\",\"size\":193,\"sizes\":[]},\"st_quote_override_position_left_responsive_tablet\":{\"unit\":\"px\",\"size\":265,\"sizes\":[]},\"st_quote_override_position_left_responsive_mobile\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]},\"st_quote_normal_font_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"st_description_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_normal_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64afd05f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"746d276b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30338dfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f950be4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ca735b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5d6ca3ad\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_title_hover_color_responsive\":\"globals\\/colors?id=secondary\",\"st_readmore_hover_color_responsive\":\"globals\\/colors?id=secondary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#646974\",\"st_excerpt_color_responsive\":\"#646974\",\"st_title_normal_color_responsive\":\"#272B36\",\"st_thumbnail_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_title_hover_color_responsive\":\"#FA8D25\",\"st_readmore_normal_color_responsive\":\"#FA8D25\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":false}],\"isInner\":false}]'),(1726,289,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1727,290,'_elementor_edit_mode','builder'),(1728,290,'_elementor_template_type','wp-page'),(1729,290,'_elementor_version','3.23.2'),(1730,290,'_wp_page_template','default'),(1731,290,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1732,290,'_elementor_data','[{\"id\":\"35495243\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"Eldery male gardener using scissors for bushes\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"160\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0,\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_size_tablet\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"top center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00160E\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b\":\"#00000054\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_slideshow_gallery\":[{\"id\":154,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-02-5.jpg\"},{\"id\":155,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-03-3.jpg\"},{\"id\":156,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-04-3.jpg\"},{\"id\":157,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-01-5.jpg\"}]},\"elements\":[{\"id\":\"739a26d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":65,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=06a34e7\"}},\"elements\":[{\"id\":\"132d1a8e\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Complete For All\",\"sg_title_focused\":\" Landscape \",\"sg_title_after\":\" Service And Maintenance\",\"sg_title_html_tag\":\"h1\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=primary\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"7c49583a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"635cb25b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"23cf340e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37.85499999999999687361196265555918216705322265625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":48,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"1c4c950d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4768b6f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":62.14500000000000312638803734444081783294677734375,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"flex-start\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":52,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"34c0badb\",\"elType\":\"widget\",\"settings\":{\"sg_video_button_title\":\"Play Video\",\"sg_video_button_icon\":{\"value\":\"jki jki-play\",\"library\":\"jkiticon\"},\"sg_video_url\":\"#\",\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_width_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_line_height_responsive\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#FFD402\",\"st_button_normal_glow_color_responsive\":\"#00694361\",\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"_element_width\":\"auto\",\"__globals__\":{\"st_button_normal_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=accent\",\"st_border_normal_border_border_color\":\"\",\"st_button_hover_text_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_glow_color_responsive\":\"\"},\"st_button_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_button_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_width_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_line_height_responsive_mobile\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"st_border_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_border_normal_border_border_color\":\"#FFD027\",\"st_button_line_height_responsive_tablet\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"st_button_normal_background_background_color\":\"#006943\",\"st_button_hover_text_color_responsive\":\"#006943\",\"st_button_hover_background_background_color\":\"#FFD402\",\"sg_video_auto_play\":\"\",\"sg_video_mute\":\"\"},\"elements\":[],\"widgetType\":\"jkit_video_button\"},{\"id\":\"232ec8da\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Intro\",\"align\":\"right\",\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"hide_mobile\":\"hidden-mobile\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#00160E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49b348ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"edc2dbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.00200000000000244426701101474463939666748046875,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e2246bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Prestige Luxury Cleanings LLC\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"139cc45f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Landscaping And Garden Care Services\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dc78e71\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"597dc67d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"26cf3840\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b19bda0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":167,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"980\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a46c929\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c4d8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Public Liability Insurance\",\"_id\":\"a978734\"},{\"text\":\"Environmentally Friendly\",\"_id\":\"1cd10a1\"},{\"text\":\"On Time, Every Time\",\"_id\":\"c6767db\"},{\"text\":\"Beautiful Garden Designs\",\"_id\":\"d4743f4\"},{\"text\":\"Modern Machinery And Tool\",\"_id\":\"535c17d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"398321ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4c7c15d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.9129999999999967030817060731351375579833984375,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5683e90d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":162,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"860\",\"height\":\"980\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b6190b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":163,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"-59\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"250636f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"713aa588\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"51a71b71\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#00160E\",\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=primary\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=06a34e7\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"st_content_title_color_responsive\":\"#7F7F7F\",\"st_super_color_responsive\":\"#FFD402\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\",\"sg_setting_html_tag\":\"span\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5557874f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"73847855\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":174,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/garden-maintenance-performed-by-pro-gardener-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"b1058a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":224,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":478,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":325,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"69098afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"40\",\"bottom\":\"80\",\"left\":\"40\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"7cb7bf82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91cb5d9\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26358abf\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Have The Perfect Solution For Your Landscape Problems\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15a36cc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42c8d36c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7114454f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76f24ca8\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Variation Gardening\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"138cc39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28a78a06\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Expert Landscapers\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c5ac2bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38fdb183\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3ce0b95b\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Affordable Price\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-save-money-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4c80f133\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7451fb11\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Free Consultation\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-Consultancy-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e93f2c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"39a46e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6773b2a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"87647bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Providing Services For All Your Residential And Commercial Needs.\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3d4509\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30164d28\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e8639b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":142,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-services.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fa92c14\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2c434fb3\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"5abe2e18\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33425b9f\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Residential And Commercial Projects\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"472ed309\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"67cb221c\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6e6d8a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":142,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-services.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd233da\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6535a16\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"937e2e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7aee\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Lawn Services\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"d9723d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"c908972\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37c1cce6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":143,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/driveway-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b3e60ba\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3b291bbf\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"20b91942\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5649f719\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Driveway Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6300b69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"256ddf68\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d41e618\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3735f0b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":144,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/deck-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"741128a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3691562\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3c8a0e6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5eb1b3b9\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Deck Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"25f37292\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"61c9ff8e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8781ee3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":145,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/weed-control.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd84c7d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"14f7965\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fb2459e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0582197\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Weed Control \",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"f7b0fa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0197d9e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f3de9c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":146,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/grass-feed.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"75ba950\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"23edbf4\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"ad70b3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1c4ac7\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Grass Feed\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6f592ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0043a3b\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"790dd775\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"360\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"160\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"140\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"background_overlay_color_b\":\"#000414\",\"background_overlay_image\":{\"id\":186,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/a-gardener-watering-plants-in-a-flowerbed-2RT8DWL-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]}},\"elements\":[{\"id\":\"a2ed5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7e37f762\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Landscaping\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a092069\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d5099\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need Someone To Take Care Your Garden & Lawn?\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=07ee36d\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1198756c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"66521a56\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":20,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":4},\"elements\":[{\"id\":\"1a89d099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.5090000000000003410605131648480892181396484375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"id\":191,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/happy-gardeners-with-plants-and-lawn-mower-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"space-between\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_color\":\"#FFFFFF00\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":9,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"46b821c1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":219,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":183,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"449971a9\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Make Appointment & Take Care Your Garden\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=secondary\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=93191b3\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_content_title_color_hover_responsive\":\"#FFFFFF\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#FFFFFF\",\"st_icon_color_responsive\":\"#00E5CC\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#00E5CC\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":false},{\"id\":\"13747b6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.4909999999999996589394868351519107818603515625,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1a13f42e\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"178***1721830795182\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fde8487\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"59883b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1617542a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Process\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29c7aa96\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Complete Every Step Carefully\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ced0d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d62463d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18cf7834\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"41f79872\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-consult-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consultation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65e1b761\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"span\",\"title_color\":\"#FFD402\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#006943\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12cdbf13\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4175d29\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-pencil_art-light\",\"library\":\"jkiticon\"},\"title_text\":\"Design Installation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2adabf01\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b628\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"569b3221\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consturction \",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"67d6b2e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6fff79c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53c9a76e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"title_text\":\"Finished Work\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"555aace0\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d57540b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"71\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardening-background-with-garden-tolls-A9BGNJU.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"147831a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"5a53d120\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"20\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Years of Experience\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"488f4727\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"6b8f6eae\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"76666759\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f532f9e\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"2850\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Happy Customers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"265fd738\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5473dc22\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"64\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Expert Landscapers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b38731e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4945f2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"627cd42c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65e3182\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.56499999999999772626324556767940521240234375},\"elements\":[{\"id\":\"43108b53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Projects\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45328989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Project We Have Done\\n\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"f382082\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.49900000000000233058017329312860965728759765625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":40,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"55ecfb57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"67afcbfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.0330000000000012505552149377763271331787109375,\"_inline_size_tablet\":23,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4989aa04\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Projects\",\"align\":\"right\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"left\",\"hover_animation\":\"float\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"32515d84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"3f5753f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"21982cfb\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":196,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Cutting-Leaf.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Cutting Leaf\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"404dc561\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"58d29b54\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":197,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Home-Garden.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Home Garden\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"3bff1dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"3c24185a\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":195,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/build-backyard.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Build Backyard\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_image_height_responsive_tablet\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b3cb58d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_image\":{\"id\":201,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-moving-aerial-photo-Z8KDGJ9-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_color\":\"#0000007D\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"79705206\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"51c9a732\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73b2fe0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"What They Says About Us\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4876e632\",\"elType\":\"widget\",\"settings\":{\"sg_layout_testimonial_choose\":\"style-2\",\"sg_testimonials_image_size_imagesize_size\":\"medium\",\"sg_testimonials_list\":[{\"sg_testimonials_list_client_avatar\":{\"id\":\"75\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/3SUMAU.jpg\"},\"_id\":\"6e9b2e1\",\"sg_testimonials_list_client_name\":\"Regan Traynor\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"76\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/CASCKD8.jpg\"},\"sg_testimonials_list_client_name\":\"Maisha Dunn\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"d069a43\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"77\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/MKLVKTE.jpg\"},\"sg_testimonials_list_client_name\":\"Reis Leonard\",\"sg_testimonials_list_designation\":\"Businessman\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"05c24f5\"}],\"st_wrapper_alignment_responsive\":\"left\",\"st_client_name_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_description_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_client_name_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_client_designation_normal_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_client_designation_normal_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=d343bdf\",\"st_rating_color_responsive\":\"\",\"st_client_name_normal_color_responsive\":\"\",\"st_quote_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_layout_background_background_color\":\"\"},\"st_layout_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_layout_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_wrapper_fix_height\":\"\",\"sg_setting_autoplay\":\"yes\",\"sg_setting_autoplay_pause\":\"\",\"sg_setting_arrow\":\"\",\"sg_setting_arrow_position\":\"middle-edge\",\"sg_setting_dots\":\"\",\"sg_setting_quote\":\"yes\",\"sg_setting_rating\":\"\",\"st_layout_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_layout_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_slide_show_responsive\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"sg_setting_quote_icon\":{\"value\":\"jki jki-quote-light\",\"library\":\"jkiticon\"},\"sg_layout_image_position\":\"below\",\"st_layout_background_background_background\":\"classic\",\"st_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position\":\"\",\"st_quote_override_position_top_responsive\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"st_quote_override_position_left_responsive\":{\"unit\":\"px\",\"size\":442,\"sizes\":[]},\"st_client_name_normal_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_quote_normal_font_size_responsive\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"st_client_image_margin_responsive\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_rating_font_size_responsive\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"st_rating_margin_right_responsive\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_setting_slide_show_responsive_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"st_wrapper_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position_top_responsive_tablet\":{\"unit\":\"px\",\"size\":249,\"sizes\":[]},\"st_quote_override_position_top_responsive_mobile\":{\"unit\":\"px\",\"size\":193,\"sizes\":[]},\"st_quote_override_position_left_responsive_tablet\":{\"unit\":\"px\",\"size\":265,\"sizes\":[]},\"st_quote_override_position_left_responsive_mobile\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]},\"st_quote_normal_font_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"st_description_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_normal_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64afd05f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"746d276b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30338dfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f950be4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ca735b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5d6ca3ad\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_title_hover_color_responsive\":\"globals\\/colors?id=secondary\",\"st_readmore_hover_color_responsive\":\"globals\\/colors?id=secondary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#646974\",\"st_excerpt_color_responsive\":\"#646974\",\"st_title_normal_color_responsive\":\"#272B36\",\"st_thumbnail_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_title_hover_color_responsive\":\"#FA8D25\",\"st_readmore_normal_color_responsive\":\"#FA8D25\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":false}],\"isInner\":false}]'),(1733,290,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1734,291,'_elementor_edit_mode','builder'),(1735,291,'_elementor_template_type','wp-page'),(1736,291,'_elementor_version','3.23.2'),(1737,291,'_wp_page_template','default'),(1738,291,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1739,291,'_elementor_data','[{\"id\":\"35495243\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"Eldery male gardener using scissors for bushes\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"160\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0,\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_size_tablet\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"top center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00160E\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b\":\"#00000054\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_slideshow_gallery\":[{\"id\":154,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-02-5.jpg\"},{\"id\":155,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-03-3.jpg\"},{\"id\":156,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-04-3.jpg\"},{\"id\":157,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-01-5.jpg\"}]},\"elements\":[{\"id\":\"739a26d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":65,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=06a34e7\"}},\"elements\":[{\"id\":\"132d1a8e\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Complete For All\",\"sg_title_focused\":\" Landscape \",\"sg_title_after\":\" Service And Maintenance\",\"sg_title_html_tag\":\"h1\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=primary\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"7c49583a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"635cb25b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"23cf340e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37.85499999999999687361196265555918216705322265625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":48,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"1c4c950d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4768b6f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":62.14500000000000312638803734444081783294677734375,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"flex-start\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":52,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"34c0badb\",\"elType\":\"widget\",\"settings\":{\"sg_video_button_title\":\"Play Video\",\"sg_video_button_icon\":{\"value\":\"jki jki-play\",\"library\":\"jkiticon\"},\"sg_video_url\":\"#\",\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_width_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_line_height_responsive\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#FFD402\",\"st_button_normal_glow_color_responsive\":\"#00694361\",\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"_element_width\":\"auto\",\"__globals__\":{\"st_button_normal_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=accent\",\"st_border_normal_border_border_color\":\"\",\"st_button_hover_text_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_glow_color_responsive\":\"\"},\"st_button_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_button_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_width_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_line_height_responsive_mobile\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"st_border_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_border_normal_border_border_color\":\"#FFD027\",\"st_button_line_height_responsive_tablet\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"st_button_normal_background_background_color\":\"#006943\",\"st_button_hover_text_color_responsive\":\"#006943\",\"st_button_hover_background_background_color\":\"#FFD402\",\"sg_video_auto_play\":\"\",\"sg_video_mute\":\"\"},\"elements\":[],\"widgetType\":\"jkit_video_button\"},{\"id\":\"232ec8da\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Intro\",\"align\":\"right\",\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"hide_mobile\":\"hidden-mobile\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#00160E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49b348ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"edc2dbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.00200000000000244426701101474463939666748046875,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e2246bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Prestige Luxury Cleanings LLC\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"139cc45f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Landscaping And Garden Care Services\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dc78e71\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"597dc67d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"26cf3840\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b19bda0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":167,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"980\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a46c929\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c4d8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Public Liability Insurance\",\"_id\":\"a978734\"},{\"text\":\"Environmentally Friendly\",\"_id\":\"1cd10a1\"},{\"text\":\"On Time, Every Time\",\"_id\":\"c6767db\"},{\"text\":\"Beautiful Garden Designs\",\"_id\":\"d4743f4\"},{\"text\":\"Modern Machinery And Tool\",\"_id\":\"535c17d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"398321ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4c7c15d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.9129999999999967030817060731351375579833984375,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5683e90d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":162,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"860\",\"height\":\"980\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b6190b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":163,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"-59\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"250636f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"713aa588\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"51a71b71\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#00160E\",\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=primary\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=06a34e7\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"st_content_title_color_responsive\":\"#7F7F7F\",\"st_super_color_responsive\":\"#FFD402\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\",\"sg_setting_html_tag\":\"span\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5557874f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"73847855\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":174,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/garden-maintenance-performed-by-pro-gardener-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"b1058a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":224,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":478,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":325,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"69098afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"40\",\"bottom\":\"80\",\"left\":\"40\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"7cb7bf82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91cb5d9\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26358abf\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Have The Perfect Solution For Your Landscape Problems\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15a36cc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42c8d36c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7114454f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76f24ca8\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Variation Gardening\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"138cc39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28a78a06\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Expert Landscapers\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c5ac2bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38fdb183\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3ce0b95b\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Affordable Price\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-save-money-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4c80f133\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7451fb11\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Free Consultation\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-Consultancy-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e93f2c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"39a46e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6773b2a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"87647bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Providing Services For All Your Residential And Commercial Needs.\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3d4509\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30164d28\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e6d8a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":142,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-services.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd233da\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6535a16\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"937e2e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7aee\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Lawn Services\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"d9723d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"c908972\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37c1cce6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":143,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/driveway-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b3e60ba\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3b291bbf\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"20b91942\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5649f719\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Driveway Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6300b69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"256ddf68\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3735f0b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":144,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/deck-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"741128a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3691562\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3c8a0e6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5eb1b3b9\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Deck Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"25f37292\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"61c9ff8e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d41e618\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"8781ee3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":145,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/weed-control.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd84c7d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"14f7965\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fb2459e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0582197\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Weed Control \",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"f7b0fa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0197d9e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f3de9c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":146,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/grass-feed.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"75ba950\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"23edbf4\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"ad70b3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1c4ac7\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Grass Feed\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6f592ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0043a3b\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"790dd775\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"360\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"160\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"140\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"background_overlay_color_b\":\"#000414\",\"background_overlay_image\":{\"id\":186,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/a-gardener-watering-plants-in-a-flowerbed-2RT8DWL-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]}},\"elements\":[{\"id\":\"a2ed5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7e37f762\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Landscaping\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a092069\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d5099\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need Someone To Take Care Your Garden & Lawn?\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=07ee36d\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1198756c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"66521a56\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":20,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":4},\"elements\":[{\"id\":\"1a89d099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.5090000000000003410605131648480892181396484375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"id\":191,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/happy-gardeners-with-plants-and-lawn-mower-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"space-between\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_color\":\"#FFFFFF00\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":9,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"46b821c1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":219,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":183,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"449971a9\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Make Appointment & Take Care Your Garden\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=secondary\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=93191b3\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_content_title_color_hover_responsive\":\"#FFFFFF\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#FFFFFF\",\"st_icon_color_responsive\":\"#00E5CC\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#00E5CC\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":false},{\"id\":\"13747b6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.4909999999999996589394868351519107818603515625,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1a13f42e\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"178***1721830795182\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fde8487\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"59883b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1617542a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Process\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29c7aa96\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Complete Every Step Carefully\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ced0d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d62463d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18cf7834\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"41f79872\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-consult-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consultation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65e1b761\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"span\",\"title_color\":\"#FFD402\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#006943\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12cdbf13\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4175d29\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-pencil_art-light\",\"library\":\"jkiticon\"},\"title_text\":\"Design Installation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2adabf01\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b628\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"569b3221\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consturction \",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"67d6b2e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6fff79c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53c9a76e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"title_text\":\"Finished Work\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"555aace0\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d57540b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"71\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardening-background-with-garden-tolls-A9BGNJU.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"147831a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"5a53d120\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"20\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Years of Experience\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"488f4727\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"6b8f6eae\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"76666759\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f532f9e\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"2850\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Happy Customers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"265fd738\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5473dc22\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"64\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Expert Landscapers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b38731e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4945f2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"627cd42c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65e3182\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.56499999999999772626324556767940521240234375},\"elements\":[{\"id\":\"43108b53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Projects\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45328989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Project We Have Done\\n\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"f382082\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.49900000000000233058017329312860965728759765625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":40,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"55ecfb57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"67afcbfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.0330000000000012505552149377763271331787109375,\"_inline_size_tablet\":23,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4989aa04\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Projects\",\"align\":\"right\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"left\",\"hover_animation\":\"float\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"32515d84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"3f5753f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"21982cfb\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":196,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Cutting-Leaf.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Cutting Leaf\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"404dc561\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"58d29b54\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":197,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Home-Garden.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Home Garden\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"3bff1dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"3c24185a\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":195,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/build-backyard.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Build Backyard\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_image_height_responsive_tablet\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b3cb58d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_image\":{\"id\":201,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-moving-aerial-photo-Z8KDGJ9-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_color\":\"#0000007D\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"79705206\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"51c9a732\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73b2fe0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"What They Says About Us\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4876e632\",\"elType\":\"widget\",\"settings\":{\"sg_layout_testimonial_choose\":\"style-2\",\"sg_testimonials_image_size_imagesize_size\":\"medium\",\"sg_testimonials_list\":[{\"sg_testimonials_list_client_avatar\":{\"id\":\"75\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/3SUMAU.jpg\"},\"_id\":\"6e9b2e1\",\"sg_testimonials_list_client_name\":\"Regan Traynor\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"76\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/CASCKD8.jpg\"},\"sg_testimonials_list_client_name\":\"Maisha Dunn\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"d069a43\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"77\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/MKLVKTE.jpg\"},\"sg_testimonials_list_client_name\":\"Reis Leonard\",\"sg_testimonials_list_designation\":\"Businessman\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"05c24f5\"}],\"st_wrapper_alignment_responsive\":\"left\",\"st_client_name_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_description_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_client_name_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_client_designation_normal_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_client_designation_normal_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=d343bdf\",\"st_rating_color_responsive\":\"\",\"st_client_name_normal_color_responsive\":\"\",\"st_quote_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_layout_background_background_color\":\"\"},\"st_layout_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_layout_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_wrapper_fix_height\":\"\",\"sg_setting_autoplay\":\"yes\",\"sg_setting_autoplay_pause\":\"\",\"sg_setting_arrow\":\"\",\"sg_setting_arrow_position\":\"middle-edge\",\"sg_setting_dots\":\"\",\"sg_setting_quote\":\"yes\",\"sg_setting_rating\":\"\",\"st_layout_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_layout_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_slide_show_responsive\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"sg_setting_quote_icon\":{\"value\":\"jki jki-quote-light\",\"library\":\"jkiticon\"},\"sg_layout_image_position\":\"below\",\"st_layout_background_background_background\":\"classic\",\"st_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position\":\"\",\"st_quote_override_position_top_responsive\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"st_quote_override_position_left_responsive\":{\"unit\":\"px\",\"size\":442,\"sizes\":[]},\"st_client_name_normal_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_quote_normal_font_size_responsive\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"st_client_image_margin_responsive\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_rating_font_size_responsive\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"st_rating_margin_right_responsive\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_setting_slide_show_responsive_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"st_wrapper_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position_top_responsive_tablet\":{\"unit\":\"px\",\"size\":249,\"sizes\":[]},\"st_quote_override_position_top_responsive_mobile\":{\"unit\":\"px\",\"size\":193,\"sizes\":[]},\"st_quote_override_position_left_responsive_tablet\":{\"unit\":\"px\",\"size\":265,\"sizes\":[]},\"st_quote_override_position_left_responsive_mobile\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]},\"st_quote_normal_font_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"st_description_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_normal_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64afd05f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"746d276b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30338dfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f950be4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ca735b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5d6ca3ad\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_title_hover_color_responsive\":\"globals\\/colors?id=secondary\",\"st_readmore_hover_color_responsive\":\"globals\\/colors?id=secondary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#646974\",\"st_excerpt_color_responsive\":\"#646974\",\"st_title_normal_color_responsive\":\"#272B36\",\"st_thumbnail_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_title_hover_color_responsive\":\"#FA8D25\",\"st_readmore_normal_color_responsive\":\"#FA8D25\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":false}],\"isInner\":false}]'),(1740,291,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1742,292,'_elementor_template_type','page'),(1743,292,'_edit_last','1'),(1744,292,'_wp_page_template','default'),(1745,292,'_edit_lock','1721847915:1'),(1746,292,'_elementor_edit_mode','builder'),(1747,292,'_elementor_version','3.23.2'),(1748,294,'_elementor_template_type','page'),(1749,294,'_wp_page_template','default'),(1750,294,'_elementor_edit_mode','builder'),(1751,294,'_elementor_version','3.23.2'),(1752,292,'_elementor_data','[{\"id\":\"3f4e4cb\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"15240ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":142,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-services.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_position_tablet\":\"center center\",\"background_gradient_position_mobile\":\"center center\",\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_position_tablet\":\"center center\",\"background_hover_gradient_position_mobile\":\"center center\",\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_position_tablet\":\"center center\",\"background_overlay_gradient_position_mobile\":\"center center\",\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_position_tablet\":\"center center\",\"background_overlay_hover_gradient_position_mobile\":\"center center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"382a80a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"178f967\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFFCC\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_position_tablet\":\"center center\",\"background_gradient_position_mobile\":\"center center\",\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_position_tablet\":\"center center\",\"background_hover_gradient_position_mobile\":\"center center\",\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_position_tablet\":\"center center\",\"background_overlay_gradient_position_mobile\":\"center center\",\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_position_tablet\":\"center center\",\"background_overlay_hover_gradient_position_mobile\":\"center center\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"707966b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_position_tablet\":\"center center\",\"background_gradient_position_mobile\":\"center center\",\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_position_tablet\":\"center center\",\"background_hover_gradient_position_mobile\":\"center center\",\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_position_tablet\":\"center center\",\"background_overlay_gradient_position_mobile\":\"center center\",\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_position_tablet\":\"center center\",\"background_overlay_hover_gradient_position_mobile\":\"center center\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"017f08c\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Lawn Services\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"st_general_alignment_responsive\":\"center\",\"st_title_typography_content_typography_typography\":\"custom\",\"st_title_typography_content_typography_font_family\":\"Inter\",\"st_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_title_typography_content_typography_font_weight\":\"500\",\"st_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"st_title_color_responsive\":\"#00160E\",\"st_description_typography_content_typography_typography\":\"custom\",\"st_description_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"c7420aa\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"Book Now\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_text_decoration\":\"none\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_color_responsive\":\"#3F5A29\",\"st_button_normal_background_background_color\":\"#FFD402\",\"st_button_hover_color_responsive\":\"#FFD402\",\"st_button_hover_background_background_color\":\"#3F5A29\",\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1753,295,'_elementor_template_type','page'),(1754,295,'_wp_page_template','default'),(1755,295,'_elementor_edit_mode','builder'),(1756,295,'_elementor_version','3.23.2'),(1757,295,'_elementor_data','[{\"id\":\"3f4e4cb\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"15240ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":142,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-services.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_position_tablet\":\"center center\",\"background_gradient_position_mobile\":\"center center\",\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_position_tablet\":\"center center\",\"background_hover_gradient_position_mobile\":\"center center\",\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_position_tablet\":\"center center\",\"background_overlay_gradient_position_mobile\":\"center center\",\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_position_tablet\":\"center center\",\"background_overlay_hover_gradient_position_mobile\":\"center center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"382a80a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"178f967\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_position_tablet\":\"center center\",\"background_gradient_position_mobile\":\"center center\",\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_position_tablet\":\"center center\",\"background_hover_gradient_position_mobile\":\"center center\",\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_position_tablet\":\"center center\",\"background_overlay_gradient_position_mobile\":\"center center\",\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_position_tablet\":\"center center\",\"background_overlay_hover_gradient_position_mobile\":\"center center\"},\"elements\":[{\"id\":\"707966b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_position_tablet\":\"center center\",\"background_gradient_position_mobile\":\"center center\",\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_position_tablet\":\"center center\",\"background_hover_gradient_position_mobile\":\"center center\",\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_position_tablet\":\"center center\",\"background_overlay_gradient_position_mobile\":\"center center\",\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_position_tablet\":\"center center\",\"background_overlay_hover_gradient_position_mobile\":\"center center\"},\"elements\":[{\"id\":\"017f08c\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Lawn Services\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"st_general_alignment_responsive\":\"center\",\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"c7420aa\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1758,292,'_elementor_page_assets','a:0:{}'),(1759,296,'_elementor_template_type','page'),(1760,296,'_wp_page_template','default'),(1761,296,'_elementor_edit_mode','builder'),(1762,296,'_elementor_version','3.23.2'),(1763,296,'_elementor_data','[{\"id\":\"3f4e4cb\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"15240ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":142,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-services.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_position_tablet\":\"center center\",\"background_gradient_position_mobile\":\"center center\",\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_position_tablet\":\"center center\",\"background_hover_gradient_position_mobile\":\"center center\",\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_position_tablet\":\"center center\",\"background_overlay_gradient_position_mobile\":\"center center\",\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_position_tablet\":\"center center\",\"background_overlay_hover_gradient_position_mobile\":\"center center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"382a80a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"178f967\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_position_tablet\":\"center center\",\"background_gradient_position_mobile\":\"center center\",\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_position_tablet\":\"center center\",\"background_hover_gradient_position_mobile\":\"center center\",\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_position_tablet\":\"center center\",\"background_overlay_gradient_position_mobile\":\"center center\",\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_position_tablet\":\"center center\",\"background_overlay_hover_gradient_position_mobile\":\"center center\"},\"elements\":[{\"id\":\"707966b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_position_tablet\":\"center center\",\"background_gradient_position_mobile\":\"center center\",\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_position_tablet\":\"center center\",\"background_hover_gradient_position_mobile\":\"center center\",\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_position_tablet\":\"center center\",\"background_overlay_gradient_position_mobile\":\"center center\",\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_position_tablet\":\"center center\",\"background_overlay_hover_gradient_position_mobile\":\"center center\"},\"elements\":[{\"id\":\"017f08c\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Lawn Services\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"st_general_alignment_responsive\":\"center\",\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"c7420aa\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"Book Now\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_text_decoration\":\"none\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_color_responsive\":\"#3F5A29\",\"st_button_normal_background_background_color\":\"#FFD402\",\"st_button_hover_color_responsive\":\"#FFD402\",\"st_button_hover_background_background_color\":\"#3F5A29\",\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1764,296,'_elementor_page_assets','a:0:{}'),(1765,297,'_elementor_template_type','page'),(1766,297,'_edit_lock','1721847798:1'),(1767,297,'_edit_last','1'),(1768,297,'_wp_page_template','default'),(1769,297,'_elementor_edit_mode','builder'),(1770,297,'_elementor_version','3.23.2'),(1771,299,'_elementor_template_type','page'),(1772,300,'_elementor_template_type','page'),(1773,299,'_edit_last','1'),(1774,299,'_wp_page_template','default'),(1775,299,'_edit_lock','1721847805:1'),(1776,300,'_edit_last','1'),(1777,300,'_edit_lock','1721847810:1'),(1778,300,'_wp_page_template','default'),(1779,299,'_elementor_edit_mode','builder'),(1780,299,'_elementor_version','3.23.2'),(1781,300,'_elementor_edit_mode','builder'),(1782,300,'_elementor_version','3.23.2'),(1783,303,'_elementor_template_type','page'),(1784,303,'_edit_last','1'),(1785,303,'_wp_page_template','default'),(1786,303,'_edit_lock','1721847817:1'),(1787,305,'_elementor_template_type','page'),(1788,305,'_wp_page_template','default'),(1789,305,'_elementor_edit_mode','builder'),(1790,305,'_elementor_version','3.23.2'),(1791,297,'_elementor_data','[{\"id\":\"0c6040f\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"25c989a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":143,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/driveway-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_position_tablet\":\"center center\",\"background_gradient_position_mobile\":\"center center\",\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_position_tablet\":\"center center\",\"background_hover_gradient_position_mobile\":\"center center\",\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_position_tablet\":\"center center\",\"background_overlay_gradient_position_mobile\":\"center center\",\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_position_tablet\":\"center center\",\"background_overlay_hover_gradient_position_mobile\":\"center center\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"60cbe77\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ac1953d\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFFCC\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_position_tablet\":\"center center\",\"background_gradient_position_mobile\":\"center center\",\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_position_tablet\":\"center center\",\"background_hover_gradient_position_mobile\":\"center center\",\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_position_tablet\":\"center center\",\"background_overlay_gradient_position_mobile\":\"center center\",\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_position_tablet\":\"center center\",\"background_overlay_hover_gradient_position_mobile\":\"center center\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"3303cff\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_position_tablet\":\"center center\",\"background_gradient_position_mobile\":\"center center\",\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_position_tablet\":\"center center\",\"background_hover_gradient_position_mobile\":\"center center\",\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_position_tablet\":\"center center\",\"background_overlay_gradient_position_mobile\":\"center center\",\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_position_tablet\":\"center center\",\"background_overlay_hover_gradient_position_mobile\":\"center center\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"73a143d\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Driveway Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"st_general_alignment_responsive\":\"center\",\"st_title_typography_content_typography_typography\":\"custom\",\"st_title_typography_content_typography_font_family\":\"Inter\",\"st_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_title_typography_content_typography_font_weight\":\"500\",\"st_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"st_title_color_responsive\":\"#00160E\",\"st_description_typography_content_typography_typography\":\"custom\",\"st_description_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"c0f0964\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"Book Now\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_text_decoration\":\"none\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_color_responsive\":\"#3F5A29\",\"st_button_normal_background_background_color\":\"#FFD402\",\"st_button_hover_color_responsive\":\"#FFD402\",\"st_button_hover_background_background_color\":\"#3F5A29\",\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1792,306,'_elementor_template_type','page'),(1793,306,'_wp_page_template','default'),(1794,306,'_elementor_edit_mode','builder'),(1795,306,'_elementor_version','3.23.2'),(1796,306,'_elementor_data','[{\"id\":\"0c6040f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"25c989a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":143,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/driveway-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_position_tablet\":\"center center\",\"background_gradient_position_mobile\":\"center center\",\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_position_tablet\":\"center center\",\"background_hover_gradient_position_mobile\":\"center center\",\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_position_tablet\":\"center center\",\"background_overlay_gradient_position_mobile\":\"center center\",\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_position_tablet\":\"center center\",\"background_overlay_hover_gradient_position_mobile\":\"center center\"},\"elements\":[{\"id\":\"60cbe77\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ac1953d\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_position_tablet\":\"center center\",\"background_gradient_position_mobile\":\"center center\",\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_position_tablet\":\"center center\",\"background_hover_gradient_position_mobile\":\"center center\",\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_position_tablet\":\"center center\",\"background_overlay_gradient_position_mobile\":\"center center\",\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_position_tablet\":\"center center\",\"background_overlay_hover_gradient_position_mobile\":\"center center\"},\"elements\":[{\"id\":\"3303cff\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_position_tablet\":\"center center\",\"background_gradient_position_mobile\":\"center center\",\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_position_tablet\":\"center center\",\"background_hover_gradient_position_mobile\":\"center center\",\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_position_tablet\":\"center center\",\"background_overlay_gradient_position_mobile\":\"center center\",\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_position_tablet\":\"center center\",\"background_overlay_hover_gradient_position_mobile\":\"center center\"},\"elements\":[{\"id\":\"73a143d\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Driveway Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"st_general_alignment_responsive\":\"center\",\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"c0f0964\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"Book Now\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_text_decoration\":\"none\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_color_responsive\":\"#3F5A29\",\"st_button_normal_background_background_color\":\"#FFD402\",\"st_button_hover_color_responsive\":\"#FFD402\",\"st_button_hover_background_background_color\":\"#3F5A29\",\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1797,297,'_elementor_page_assets','a:0:{}'),(1798,307,'_elementor_template_type','page'),(1799,307,'_wp_page_template','default'),(1800,307,'_elementor_edit_mode','builder'),(1801,307,'_elementor_version','3.23.2'),(1802,299,'_elementor_data','[{\"id\":\"4a4ccc2\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"6345ae9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":144,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/deck-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_position_tablet\":\"center center\",\"background_gradient_position_mobile\":\"center center\",\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_position_tablet\":\"center center\",\"background_hover_gradient_position_mobile\":\"center center\",\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_position_tablet\":\"center center\",\"background_overlay_gradient_position_mobile\":\"center center\",\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_position_tablet\":\"center center\",\"background_overlay_hover_gradient_position_mobile\":\"center center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"d00729a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"c668e2e\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFFCC\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_position_tablet\":\"center center\",\"background_gradient_position_mobile\":\"center center\",\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_position_tablet\":\"center center\",\"background_hover_gradient_position_mobile\":\"center center\",\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_position_tablet\":\"center center\",\"background_overlay_gradient_position_mobile\":\"center center\",\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_position_tablet\":\"center center\",\"background_overlay_hover_gradient_position_mobile\":\"center center\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"619480e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_position_tablet\":\"center center\",\"background_gradient_position_mobile\":\"center center\",\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_position_tablet\":\"center center\",\"background_hover_gradient_position_mobile\":\"center center\",\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_position_tablet\":\"center center\",\"background_overlay_gradient_position_mobile\":\"center center\",\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_position_tablet\":\"center center\",\"background_overlay_hover_gradient_position_mobile\":\"center center\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"55a2e5e\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Deck Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"st_general_alignment_responsive\":\"center\",\"st_title_typography_content_typography_typography\":\"custom\",\"st_title_typography_content_typography_font_family\":\"Inter\",\"st_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_title_typography_content_typography_font_weight\":\"500\",\"st_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"st_title_color_responsive\":\"#00160E\",\"st_description_typography_content_typography_typography\":\"custom\",\"st_description_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"8bc0638\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"Book Now\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_text_decoration\":\"none\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_color_responsive\":\"#3F5A29\",\"st_button_normal_background_background_color\":\"#FFD402\",\"st_button_hover_color_responsive\":\"#FFD402\",\"st_button_hover_background_background_color\":\"#3F5A29\",\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1803,308,'_elementor_template_type','page'),(1804,308,'_wp_page_template','default'),(1805,308,'_elementor_edit_mode','builder'),(1806,308,'_elementor_version','3.23.2'),(1807,308,'_elementor_data','[{\"id\":\"4a4ccc2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6345ae9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":144,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/deck-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_position_tablet\":\"center center\",\"background_gradient_position_mobile\":\"center center\",\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_position_tablet\":\"center center\",\"background_hover_gradient_position_mobile\":\"center center\",\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_position_tablet\":\"center center\",\"background_overlay_gradient_position_mobile\":\"center center\",\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_position_tablet\":\"center center\",\"background_overlay_hover_gradient_position_mobile\":\"center center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d00729a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"c668e2e\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_position_tablet\":\"center center\",\"background_gradient_position_mobile\":\"center center\",\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_position_tablet\":\"center center\",\"background_hover_gradient_position_mobile\":\"center center\",\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_position_tablet\":\"center center\",\"background_overlay_gradient_position_mobile\":\"center center\",\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_position_tablet\":\"center center\",\"background_overlay_hover_gradient_position_mobile\":\"center center\"},\"elements\":[{\"id\":\"619480e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_position_tablet\":\"center center\",\"background_gradient_position_mobile\":\"center center\",\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_position_tablet\":\"center center\",\"background_hover_gradient_position_mobile\":\"center center\",\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_position_tablet\":\"center center\",\"background_overlay_gradient_position_mobile\":\"center center\",\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_position_tablet\":\"center center\",\"background_overlay_hover_gradient_position_mobile\":\"center center\"},\"elements\":[{\"id\":\"55a2e5e\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Deck Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"st_general_alignment_responsive\":\"center\",\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"8bc0638\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"Book Now\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_text_decoration\":\"none\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_color_responsive\":\"#3F5A29\",\"st_button_normal_background_background_color\":\"#FFD402\",\"st_button_hover_color_responsive\":\"#FFD402\",\"st_button_hover_background_background_color\":\"#3F5A29\",\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1808,299,'_elementor_page_assets','a:0:{}'),(1809,309,'_elementor_template_type','page'),(1810,309,'_wp_page_template','default'),(1811,309,'_elementor_edit_mode','builder'),(1812,309,'_elementor_version','3.23.2'),(1813,300,'_elementor_data','[{\"id\":\"519f33d\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"bedff80\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":145,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/weed-control.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_position_tablet\":\"center center\",\"background_gradient_position_mobile\":\"center center\",\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_position_tablet\":\"center center\",\"background_hover_gradient_position_mobile\":\"center center\",\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_position_tablet\":\"center center\",\"background_overlay_gradient_position_mobile\":\"center center\",\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_position_tablet\":\"center center\",\"background_overlay_hover_gradient_position_mobile\":\"center center\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"8966c1b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0212ec6\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFFCC\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_position_tablet\":\"center center\",\"background_gradient_position_mobile\":\"center center\",\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_position_tablet\":\"center center\",\"background_hover_gradient_position_mobile\":\"center center\",\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_position_tablet\":\"center center\",\"background_overlay_gradient_position_mobile\":\"center center\",\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_position_tablet\":\"center center\",\"background_overlay_hover_gradient_position_mobile\":\"center center\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"698f89c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_position_tablet\":\"center center\",\"background_gradient_position_mobile\":\"center center\",\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_position_tablet\":\"center center\",\"background_hover_gradient_position_mobile\":\"center center\",\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_position_tablet\":\"center center\",\"background_overlay_gradient_position_mobile\":\"center center\",\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_position_tablet\":\"center center\",\"background_overlay_hover_gradient_position_mobile\":\"center center\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"41a0505\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Weed Control \",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"st_general_alignment_responsive\":\"center\",\"st_title_typography_content_typography_typography\":\"custom\",\"st_title_typography_content_typography_font_family\":\"Inter\",\"st_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_title_typography_content_typography_font_weight\":\"500\",\"st_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"st_title_color_responsive\":\"#00160E\",\"st_description_typography_content_typography_typography\":\"custom\",\"st_description_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"83b3844\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"Book Now\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_text_decoration\":\"none\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_color_responsive\":\"#3F5A29\",\"st_button_normal_background_background_color\":\"#FFD402\",\"st_button_hover_color_responsive\":\"#FFD402\",\"st_button_hover_background_background_color\":\"#3F5A29\",\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1814,310,'_elementor_template_type','page'),(1815,310,'_wp_page_template','default'),(1816,310,'_elementor_edit_mode','builder'),(1817,310,'_elementor_version','3.23.2'),(1818,310,'_elementor_data','[{\"id\":\"519f33d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bedff80\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":145,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/weed-control.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_position_tablet\":\"center center\",\"background_gradient_position_mobile\":\"center center\",\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_position_tablet\":\"center center\",\"background_hover_gradient_position_mobile\":\"center center\",\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_position_tablet\":\"center center\",\"background_overlay_gradient_position_mobile\":\"center center\",\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_position_tablet\":\"center center\",\"background_overlay_hover_gradient_position_mobile\":\"center center\"},\"elements\":[{\"id\":\"8966c1b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0212ec6\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_position_tablet\":\"center center\",\"background_gradient_position_mobile\":\"center center\",\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_position_tablet\":\"center center\",\"background_hover_gradient_position_mobile\":\"center center\",\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_position_tablet\":\"center center\",\"background_overlay_gradient_position_mobile\":\"center center\",\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_position_tablet\":\"center center\",\"background_overlay_hover_gradient_position_mobile\":\"center center\"},\"elements\":[{\"id\":\"698f89c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_position_tablet\":\"center center\",\"background_gradient_position_mobile\":\"center center\",\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_position_tablet\":\"center center\",\"background_hover_gradient_position_mobile\":\"center center\",\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_position_tablet\":\"center center\",\"background_overlay_gradient_position_mobile\":\"center center\",\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_position_tablet\":\"center center\",\"background_overlay_hover_gradient_position_mobile\":\"center center\"},\"elements\":[{\"id\":\"41a0505\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Weed Control \",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"st_general_alignment_responsive\":\"center\",\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"83b3844\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"Book Now\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_text_decoration\":\"none\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_color_responsive\":\"#3F5A29\",\"st_button_normal_background_background_color\":\"#FFD402\",\"st_button_hover_color_responsive\":\"#FFD402\",\"st_button_hover_background_background_color\":\"#3F5A29\",\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1819,300,'_elementor_page_assets','a:0:{}'),(1820,303,'_elementor_edit_mode','builder'),(1821,303,'_elementor_version','3.23.2'),(1822,311,'_elementor_template_type','page'),(1823,311,'_wp_page_template','default'),(1824,311,'_elementor_edit_mode','builder'),(1825,311,'_elementor_version','3.23.2'),(1826,303,'_elementor_data','[{\"id\":\"a48dc8e\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"b9923b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":146,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/grass-feed.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_position_tablet\":\"center center\",\"background_gradient_position_mobile\":\"center center\",\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_position_tablet\":\"center center\",\"background_hover_gradient_position_mobile\":\"center center\",\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_position_tablet\":\"center center\",\"background_overlay_gradient_position_mobile\":\"center center\",\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_position_tablet\":\"center center\",\"background_overlay_hover_gradient_position_mobile\":\"center center\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"782d0c3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8408628\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFFCC\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_position_tablet\":\"center center\",\"background_gradient_position_mobile\":\"center center\",\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_position_tablet\":\"center center\",\"background_hover_gradient_position_mobile\":\"center center\",\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_position_tablet\":\"center center\",\"background_overlay_gradient_position_mobile\":\"center center\",\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_position_tablet\":\"center center\",\"background_overlay_hover_gradient_position_mobile\":\"center center\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"7c4cfd0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_position_tablet\":\"center center\",\"background_gradient_position_mobile\":\"center center\",\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_position_tablet\":\"center center\",\"background_hover_gradient_position_mobile\":\"center center\",\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_position_tablet\":\"center center\",\"background_overlay_gradient_position_mobile\":\"center center\",\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_position_tablet\":\"center center\",\"background_overlay_hover_gradient_position_mobile\":\"center center\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"149c89d\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Grass Feed\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"st_general_alignment_responsive\":\"center\",\"st_title_typography_content_typography_typography\":\"custom\",\"st_title_typography_content_typography_font_family\":\"Inter\",\"st_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_title_typography_content_typography_font_weight\":\"500\",\"st_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"st_title_color_responsive\":\"#00160E\",\"st_description_typography_content_typography_typography\":\"custom\",\"st_description_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"f782f86\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"Book Now\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_text_decoration\":\"none\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_color_responsive\":\"#3F5A29\",\"st_button_normal_background_background_color\":\"#FFD402\",\"st_button_hover_color_responsive\":\"#FFD402\",\"st_button_hover_background_background_color\":\"#3F5A29\",\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1827,312,'_elementor_template_type','page'),(1828,312,'_wp_page_template','default'),(1829,312,'_elementor_edit_mode','builder'),(1830,312,'_elementor_version','3.23.2'),(1831,312,'_elementor_data','[{\"id\":\"a48dc8e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"b9923b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":146,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/grass-feed.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_position_tablet\":\"center center\",\"background_gradient_position_mobile\":\"center center\",\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_position_tablet\":\"center center\",\"background_hover_gradient_position_mobile\":\"center center\",\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_position_tablet\":\"center center\",\"background_overlay_gradient_position_mobile\":\"center center\",\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_position_tablet\":\"center center\",\"background_overlay_hover_gradient_position_mobile\":\"center center\"},\"elements\":[{\"id\":\"782d0c3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8408628\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_position_tablet\":\"center center\",\"background_gradient_position_mobile\":\"center center\",\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_position_tablet\":\"center center\",\"background_hover_gradient_position_mobile\":\"center center\",\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_position_tablet\":\"center center\",\"background_overlay_gradient_position_mobile\":\"center center\",\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_position_tablet\":\"center center\",\"background_overlay_hover_gradient_position_mobile\":\"center center\"},\"elements\":[{\"id\":\"7c4cfd0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_position_tablet\":\"center center\",\"background_gradient_position_mobile\":\"center center\",\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_position_tablet\":\"center center\",\"background_hover_gradient_position_mobile\":\"center center\",\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_position_tablet\":\"center center\",\"background_overlay_gradient_position_mobile\":\"center center\",\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_position_tablet\":\"center center\",\"background_overlay_hover_gradient_position_mobile\":\"center center\"},\"elements\":[{\"id\":\"149c89d\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Grass Feed\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"st_general_alignment_responsive\":\"center\",\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"f782f86\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"Book Now\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_text_decoration\":\"none\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_color_responsive\":\"#3F5A29\",\"st_button_normal_background_background_color\":\"#FFD402\",\"st_button_hover_color_responsive\":\"#FFD402\",\"st_button_hover_background_background_color\":\"#3F5A29\",\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1832,303,'_elementor_page_assets','a:0:{}'),(1833,313,'_elementor_edit_mode','builder'),(1834,313,'_elementor_template_type','wp-page'),(1835,313,'_elementor_version','3.23.2'),(1836,313,'_wp_page_template','default'),(1837,313,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1838,313,'_elementor_data','[{\"id\":\"35495243\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"Eldery male gardener using scissors for bushes\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"160\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0,\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_size_tablet\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"top center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00160E\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b\":\"#00000054\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_slideshow_gallery\":[{\"id\":154,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-02-5.jpg\"},{\"id\":155,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-03-3.jpg\"},{\"id\":156,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-04-3.jpg\"},{\"id\":157,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-01-5.jpg\"}]},\"elements\":[{\"id\":\"739a26d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":65,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=06a34e7\"}},\"elements\":[{\"id\":\"132d1a8e\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Complete For All\",\"sg_title_focused\":\" Landscape \",\"sg_title_after\":\" Service And Maintenance\",\"sg_title_html_tag\":\"h1\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=primary\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"7c49583a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"635cb25b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"23cf340e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37.85499999999999687361196265555918216705322265625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":48,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"1c4c950d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4768b6f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":62.14500000000000312638803734444081783294677734375,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"flex-start\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":52,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"34c0badb\",\"elType\":\"widget\",\"settings\":{\"sg_video_button_title\":\"Play Video\",\"sg_video_button_icon\":{\"value\":\"jki jki-play\",\"library\":\"jkiticon\"},\"sg_video_url\":\"#\",\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_width_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_line_height_responsive\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#FFD402\",\"st_button_normal_glow_color_responsive\":\"#00694361\",\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"_element_width\":\"auto\",\"__globals__\":{\"st_button_normal_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=accent\",\"st_border_normal_border_border_color\":\"\",\"st_button_hover_text_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_glow_color_responsive\":\"\"},\"st_button_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_button_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_width_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_line_height_responsive_mobile\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"st_border_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_border_normal_border_border_color\":\"#FFD027\",\"st_button_line_height_responsive_tablet\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"st_button_normal_background_background_color\":\"#006943\",\"st_button_hover_text_color_responsive\":\"#006943\",\"st_button_hover_background_background_color\":\"#FFD402\",\"sg_video_auto_play\":\"\",\"sg_video_mute\":\"\"},\"elements\":[],\"widgetType\":\"jkit_video_button\"},{\"id\":\"232ec8da\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Intro\",\"align\":\"right\",\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"hide_mobile\":\"hidden-mobile\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#00160E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49b348ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"edc2dbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.00200000000000244426701101474463939666748046875,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e2246bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Prestige Luxury Cleanings LLC\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"139cc45f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Landscaping And Garden Care Services\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dc78e71\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"597dc67d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"26cf3840\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b19bda0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":167,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"980\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a46c929\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c4d8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Public Liability Insurance\",\"_id\":\"a978734\"},{\"text\":\"Environmentally Friendly\",\"_id\":\"1cd10a1\"},{\"text\":\"On Time, Every Time\",\"_id\":\"c6767db\"},{\"text\":\"Beautiful Garden Designs\",\"_id\":\"d4743f4\"},{\"text\":\"Modern Machinery And Tool\",\"_id\":\"535c17d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"398321ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4c7c15d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.9129999999999967030817060731351375579833984375,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5683e90d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":162,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"860\",\"height\":\"980\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b6190b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":163,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"-59\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"250636f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"713aa588\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"51a71b71\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#00160E\",\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=primary\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=06a34e7\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"st_content_title_color_responsive\":\"#7F7F7F\",\"st_super_color_responsive\":\"#FFD402\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\",\"sg_setting_html_tag\":\"span\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5557874f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"73847855\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":174,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/garden-maintenance-performed-by-pro-gardener-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"b1058a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":224,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":478,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":325,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"69098afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"40\",\"bottom\":\"80\",\"left\":\"40\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"7cb7bf82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91cb5d9\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26358abf\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Have The Perfect Solution For Your Landscape Problems\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15a36cc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42c8d36c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7114454f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76f24ca8\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Variation Gardening\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"138cc39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28a78a06\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Expert Landscapers\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c5ac2bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38fdb183\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3ce0b95b\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Affordable Price\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-save-money-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4c80f133\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7451fb11\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Free Consultation\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-Consultancy-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e93f2c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"39a46e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6773b2a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"87647bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Providing Services For All Your Residential And Commercial Needs.\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3d4509\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30164d28\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e6d8a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":142,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-services.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd233da\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6535a16\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"937e2e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7aee\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Lawn Services\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"d9723d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"c908972\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37c1cce6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":143,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/driveway-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b3e60ba\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3b291bbf\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"20b91942\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5649f719\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Driveway Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6300b69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"256ddf68\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3735f0b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":144,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/deck-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"741128a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3691562\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3c8a0e6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5eb1b3b9\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Deck Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"25f37292\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"61c9ff8e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d41e618\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"8781ee3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":145,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/weed-control.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd84c7d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"14f7965\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fb2459e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0582197\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Weed Control \",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"f7b0fa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0197d9e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f3de9c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":146,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/grass-feed.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"75ba950\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"23edbf4\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"ad70b3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1c4ac7\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Grass Feed\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6f592ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0043a3b\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"790dd775\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"360\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"160\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"140\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"background_overlay_color_b\":\"#000414\",\"background_overlay_image\":{\"id\":186,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/a-gardener-watering-plants-in-a-flowerbed-2RT8DWL-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]}},\"elements\":[{\"id\":\"a2ed5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7e37f762\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Landscaping\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a092069\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d5099\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need Someone To Take Care Your Garden & Lawn?\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=07ee36d\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1198756c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"66521a56\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":20,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":4},\"elements\":[{\"id\":\"1a89d099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.5090000000000003410605131648480892181396484375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"id\":191,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/happy-gardeners-with-plants-and-lawn-mower-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"space-between\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_color\":\"#FFFFFF00\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":9,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"46b821c1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":219,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":183,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"449971a9\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Make Appointment & Take Care Your Garden\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=secondary\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=93191b3\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_content_title_color_hover_responsive\":\"#FFFFFF\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#FFFFFF\",\"st_icon_color_responsive\":\"#00E5CC\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#00E5CC\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":false},{\"id\":\"13747b6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.4909999999999996589394868351519107818603515625,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1a13f42e\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"178***1721830795182\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fde8487\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"59883b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1617542a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Process\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29c7aa96\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Complete Every Step Carefully\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ced0d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d62463d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18cf7834\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"41f79872\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-consult-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consultation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65e1b761\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"span\",\"title_color\":\"#FFD402\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#006943\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12cdbf13\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4175d29\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-pencil_art-light\",\"library\":\"jkiticon\"},\"title_text\":\"Design Installation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2adabf01\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b628\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"569b3221\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consturction \",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"67d6b2e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6fff79c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53c9a76e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"title_text\":\"Finished Work\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"555aace0\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d57540b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"71\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardening-background-with-garden-tolls-A9BGNJU.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"147831a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"5a53d120\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"20\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Years of Experience\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"488f4727\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"6b8f6eae\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"76666759\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f532f9e\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"2850\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Happy Customers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"265fd738\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5473dc22\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"64\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Expert Landscapers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b38731e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4945f2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"627cd42c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65e3182\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.56499999999999772626324556767940521240234375},\"elements\":[{\"id\":\"43108b53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Projects\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45328989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Project We Have Done\\n\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"f382082\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.49900000000000233058017329312860965728759765625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":40,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"55ecfb57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"67afcbfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.0330000000000012505552149377763271331787109375,\"_inline_size_tablet\":23,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4989aa04\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Projects\",\"align\":\"right\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"left\",\"hover_animation\":\"float\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"32515d84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"3f5753f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"21982cfb\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":196,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Cutting-Leaf.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Cutting Leaf\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"404dc561\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"58d29b54\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":197,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Home-Garden.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Home Garden\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"3bff1dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"3c24185a\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":195,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/build-backyard.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Build Backyard\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_image_height_responsive_tablet\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b3cb58d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_image\":{\"id\":201,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-moving-aerial-photo-Z8KDGJ9-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_color\":\"#0000007D\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"79705206\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"51c9a732\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73b2fe0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"What They Says About Us\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4876e632\",\"elType\":\"widget\",\"settings\":{\"sg_layout_testimonial_choose\":\"style-2\",\"sg_testimonials_image_size_imagesize_size\":\"medium\",\"sg_testimonials_list\":[{\"sg_testimonials_list_client_avatar\":{\"id\":\"75\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/3SUMAU.jpg\"},\"_id\":\"6e9b2e1\",\"sg_testimonials_list_client_name\":\"Regan Traynor\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"76\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/CASCKD8.jpg\"},\"sg_testimonials_list_client_name\":\"Maisha Dunn\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"d069a43\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"77\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/MKLVKTE.jpg\"},\"sg_testimonials_list_client_name\":\"Reis Leonard\",\"sg_testimonials_list_designation\":\"Businessman\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"05c24f5\"}],\"st_wrapper_alignment_responsive\":\"left\",\"st_client_name_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_description_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_client_name_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_client_designation_normal_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_client_designation_normal_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=d343bdf\",\"st_rating_color_responsive\":\"\",\"st_client_name_normal_color_responsive\":\"\",\"st_quote_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_layout_background_background_color\":\"\"},\"st_layout_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_layout_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_wrapper_fix_height\":\"\",\"sg_setting_autoplay\":\"yes\",\"sg_setting_autoplay_pause\":\"\",\"sg_setting_arrow\":\"\",\"sg_setting_arrow_position\":\"middle-edge\",\"sg_setting_dots\":\"\",\"sg_setting_quote\":\"yes\",\"sg_setting_rating\":\"\",\"st_layout_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_layout_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_slide_show_responsive\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"sg_setting_quote_icon\":{\"value\":\"jki jki-quote-light\",\"library\":\"jkiticon\"},\"sg_layout_image_position\":\"below\",\"st_layout_background_background_background\":\"classic\",\"st_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position\":\"\",\"st_quote_override_position_top_responsive\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"st_quote_override_position_left_responsive\":{\"unit\":\"px\",\"size\":442,\"sizes\":[]},\"st_client_name_normal_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_quote_normal_font_size_responsive\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"st_client_image_margin_responsive\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_rating_font_size_responsive\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"st_rating_margin_right_responsive\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_setting_slide_show_responsive_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"st_wrapper_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position_top_responsive_tablet\":{\"unit\":\"px\",\"size\":249,\"sizes\":[]},\"st_quote_override_position_top_responsive_mobile\":{\"unit\":\"px\",\"size\":193,\"sizes\":[]},\"st_quote_override_position_left_responsive_tablet\":{\"unit\":\"px\",\"size\":265,\"sizes\":[]},\"st_quote_override_position_left_responsive_mobile\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]},\"st_quote_normal_font_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"st_description_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_normal_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64afd05f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"746d276b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30338dfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f950be4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ca735b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5d6ca3ad\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_title_hover_color_responsive\":\"globals\\/colors?id=secondary\",\"st_readmore_hover_color_responsive\":\"globals\\/colors?id=secondary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#646974\",\"st_excerpt_color_responsive\":\"#646974\",\"st_title_normal_color_responsive\":\"#272B36\",\"st_thumbnail_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_title_hover_color_responsive\":\"#FA8D25\",\"st_readmore_normal_color_responsive\":\"#FA8D25\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":false}],\"isInner\":false}]'),(1839,313,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1840,313,'_elementor_css','a:6:{s:4:\"time\";i:1721838699;s:5:\"fonts\";a:1:{i:0;s:5:\"Inter\";}s:5:\"icons\";a:3:{i:0;s:0:\"\";i:1;s:8:\"jkiticon\";i:3;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1841,314,'_elementor_edit_mode','builder'),(1842,314,'_elementor_template_type','wp-page'),(1843,314,'_elementor_version','3.23.2'),(1844,314,'_wp_page_template','default'),(1845,314,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'); INSERT INTO `victorq_postmeta` VALUES (1846,314,'_elementor_data','[{\"id\":\"35495243\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"Eldery male gardener using scissors for bushes\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"160\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0,\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_size_tablet\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"top center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00160E\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b\":\"#00000054\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_slideshow_gallery\":[{\"id\":154,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-02-5.jpg\"},{\"id\":155,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-03-3.jpg\"},{\"id\":156,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-04-3.jpg\"},{\"id\":157,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-01-5.jpg\"}]},\"elements\":[{\"id\":\"739a26d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":65,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=06a34e7\"}},\"elements\":[{\"id\":\"132d1a8e\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Complete For All\",\"sg_title_focused\":\" Landscape \",\"sg_title_after\":\" Service And Maintenance\",\"sg_title_html_tag\":\"h1\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=primary\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"7c49583a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"635cb25b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"23cf340e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37.85499999999999687361196265555918216705322265625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":48,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"1c4c950d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4768b6f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":62.14500000000000312638803734444081783294677734375,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"flex-start\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":52,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"34c0badb\",\"elType\":\"widget\",\"settings\":{\"sg_video_button_title\":\"Play Video\",\"sg_video_button_icon\":{\"value\":\"jki jki-play\",\"library\":\"jkiticon\"},\"sg_video_url\":\"#\",\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_width_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_line_height_responsive\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#FFD402\",\"st_button_normal_glow_color_responsive\":\"#00694361\",\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"_element_width\":\"auto\",\"__globals__\":{\"st_button_normal_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=accent\",\"st_border_normal_border_border_color\":\"\",\"st_button_hover_text_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_glow_color_responsive\":\"\"},\"st_button_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_button_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_width_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_line_height_responsive_mobile\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"st_border_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_border_normal_border_border_color\":\"#FFD027\",\"st_button_line_height_responsive_tablet\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"st_button_normal_background_background_color\":\"#006943\",\"st_button_hover_text_color_responsive\":\"#006943\",\"st_button_hover_background_background_color\":\"#FFD402\",\"sg_video_auto_play\":\"\",\"sg_video_mute\":\"\"},\"elements\":[],\"widgetType\":\"jkit_video_button\"},{\"id\":\"232ec8da\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Intro\",\"align\":\"right\",\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"hide_mobile\":\"hidden-mobile\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#00160E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49b348ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"edc2dbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.00200000000000244426701101474463939666748046875,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e2246bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Prestige Luxury Cleanings LLC\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"139cc45f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Landscaping And Garden Care Services\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dc78e71\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"597dc67d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"26cf3840\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b19bda0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":167,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"980\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a46c929\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c4d8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Public Liability Insurance\",\"_id\":\"a978734\"},{\"text\":\"Environmentally Friendly\",\"_id\":\"1cd10a1\"},{\"text\":\"On Time, Every Time\",\"_id\":\"c6767db\"},{\"text\":\"Beautiful Garden Designs\",\"_id\":\"d4743f4\"},{\"text\":\"Modern Machinery And Tool\",\"_id\":\"535c17d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"398321ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4c7c15d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.9129999999999967030817060731351375579833984375,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5683e90d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":162,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"860\",\"height\":\"980\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b6190b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":163,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"-59\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"250636f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"713aa588\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"51a71b71\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#00160E\",\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=primary\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=06a34e7\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"st_content_title_color_responsive\":\"#7F7F7F\",\"st_super_color_responsive\":\"#FFD402\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\",\"sg_setting_html_tag\":\"span\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5557874f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"73847855\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":174,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/garden-maintenance-performed-by-pro-gardener-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"b1058a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":224,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":478,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":325,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"69098afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"40\",\"bottom\":\"80\",\"left\":\"40\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"7cb7bf82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91cb5d9\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26358abf\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Have The Perfect Solution For Your Landscape Problems\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15a36cc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42c8d36c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7114454f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76f24ca8\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Variation Gardening\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"138cc39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28a78a06\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Expert Landscapers\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c5ac2bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38fdb183\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3ce0b95b\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Affordable Price\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-save-money-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4c80f133\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7451fb11\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Free Consultation\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-Consultancy-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e93f2c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"39a46e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6773b2a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"87647bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Providing Services For All Your Residential And Commercial Needs.\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3d4509\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30164d28\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e6d8a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":142,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-services.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd233da\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6535a16\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"937e2e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7aee\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Lawn Services\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"d9723d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"c908972\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37c1cce6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":143,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/driveway-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b3e60ba\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3b291bbf\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"20b91942\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5649f719\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Driveway Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6300b69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"256ddf68\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3735f0b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":144,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/deck-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"741128a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3691562\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3c8a0e6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5eb1b3b9\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Deck Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"25f37292\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"61c9ff8e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d41e618\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"8781ee3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":145,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/weed-control.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd84c7d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"14f7965\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fb2459e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0582197\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Weed Control \",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"f7b0fa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0197d9e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f3de9c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":146,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/grass-feed.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"75ba950\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"23edbf4\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"ad70b3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1c4ac7\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Grass Feed\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6f592ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0043a3b\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"790dd775\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"360\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"160\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"140\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"background_overlay_color_b\":\"#000414\",\"background_overlay_image\":{\"id\":186,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/a-gardener-watering-plants-in-a-flowerbed-2RT8DWL-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]}},\"elements\":[{\"id\":\"a2ed5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7e37f762\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Landscaping\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a092069\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d5099\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need Someone To Take Care Your Garden & Lawn?\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=07ee36d\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1198756c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"66521a56\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":20,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":4},\"elements\":[{\"id\":\"1a89d099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.5090000000000003410605131648480892181396484375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"id\":191,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/happy-gardeners-with-plants-and-lawn-mower-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"space-between\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_color\":\"#FFFFFF00\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":9,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"46b821c1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":219,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":183,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"449971a9\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Make Appointment & Take Care Your Garden\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=secondary\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=93191b3\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_content_title_color_hover_responsive\":\"#FFFFFF\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#FFFFFF\",\"st_icon_color_responsive\":\"#00E5CC\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#00E5CC\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":false},{\"id\":\"13747b6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.4909999999999996589394868351519107818603515625,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1a13f42e\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"178***1721830795182\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fde8487\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"59883b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1617542a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Process\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29c7aa96\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Complete Every Step Carefully\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ced0d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d62463d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18cf7834\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"41f79872\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-consult-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consultation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65e1b761\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"span\",\"title_color\":\"#FFD402\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#006943\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12cdbf13\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4175d29\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-pencil_art-light\",\"library\":\"jkiticon\"},\"title_text\":\"Design Installation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2adabf01\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b628\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"569b3221\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consturction \",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"67d6b2e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6fff79c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53c9a76e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"title_text\":\"Finished Work\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"555aace0\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d57540b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"71\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardening-background-with-garden-tolls-A9BGNJU.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"147831a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"5a53d120\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"20\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Years of Experience\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"488f4727\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"6b8f6eae\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"76666759\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f532f9e\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"2850\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Happy Customers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"265fd738\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5473dc22\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"64\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Expert Landscapers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b38731e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4945f2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"627cd42c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65e3182\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.56499999999999772626324556767940521240234375},\"elements\":[{\"id\":\"43108b53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Projects\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45328989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Project We Have Done\\n\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"f382082\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.49900000000000233058017329312860965728759765625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":40,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"55ecfb57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"67afcbfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.0330000000000012505552149377763271331787109375,\"_inline_size_tablet\":23,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4989aa04\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Projects\",\"align\":\"right\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"left\",\"hover_animation\":\"float\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"32515d84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"3f5753f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"21982cfb\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":196,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Cutting-Leaf.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Cutting Leaf\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"404dc561\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"58d29b54\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":197,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Home-Garden.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Home Garden\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"3bff1dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"3c24185a\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":195,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/build-backyard.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Build Backyard\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_image_height_responsive_tablet\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b3cb58d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_image\":{\"id\":201,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-moving-aerial-photo-Z8KDGJ9-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_color\":\"#0000007D\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"79705206\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"51c9a732\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73b2fe0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"What They Says About Us\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4876e632\",\"elType\":\"widget\",\"settings\":{\"sg_layout_testimonial_choose\":\"style-2\",\"sg_testimonials_image_size_imagesize_size\":\"medium\",\"sg_testimonials_list\":[{\"sg_testimonials_list_client_avatar\":{\"id\":\"75\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/3SUMAU.jpg\"},\"_id\":\"6e9b2e1\",\"sg_testimonials_list_client_name\":\"Regan Traynor\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"76\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/CASCKD8.jpg\"},\"sg_testimonials_list_client_name\":\"Maisha Dunn\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"d069a43\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"77\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/MKLVKTE.jpg\"},\"sg_testimonials_list_client_name\":\"Reis Leonard\",\"sg_testimonials_list_designation\":\"Businessman\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"05c24f5\"}],\"st_wrapper_alignment_responsive\":\"left\",\"st_client_name_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_description_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_client_name_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_client_designation_normal_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_client_designation_normal_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=d343bdf\",\"st_rating_color_responsive\":\"\",\"st_client_name_normal_color_responsive\":\"\",\"st_quote_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_layout_background_background_color\":\"\"},\"st_layout_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_layout_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_wrapper_fix_height\":\"\",\"sg_setting_autoplay\":\"yes\",\"sg_setting_autoplay_pause\":\"\",\"sg_setting_arrow\":\"\",\"sg_setting_arrow_position\":\"middle-edge\",\"sg_setting_dots\":\"\",\"sg_setting_quote\":\"yes\",\"sg_setting_rating\":\"\",\"st_layout_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_layout_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_slide_show_responsive\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"sg_setting_quote_icon\":{\"value\":\"jki jki-quote-light\",\"library\":\"jkiticon\"},\"sg_layout_image_position\":\"below\",\"st_layout_background_background_background\":\"classic\",\"st_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position\":\"\",\"st_quote_override_position_top_responsive\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"st_quote_override_position_left_responsive\":{\"unit\":\"px\",\"size\":442,\"sizes\":[]},\"st_client_name_normal_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_quote_normal_font_size_responsive\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"st_client_image_margin_responsive\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_rating_font_size_responsive\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"st_rating_margin_right_responsive\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_setting_slide_show_responsive_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"st_wrapper_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position_top_responsive_tablet\":{\"unit\":\"px\",\"size\":249,\"sizes\":[]},\"st_quote_override_position_top_responsive_mobile\":{\"unit\":\"px\",\"size\":193,\"sizes\":[]},\"st_quote_override_position_left_responsive_tablet\":{\"unit\":\"px\",\"size\":265,\"sizes\":[]},\"st_quote_override_position_left_responsive_mobile\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]},\"st_quote_normal_font_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"st_description_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_normal_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64afd05f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"746d276b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30338dfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f950be4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ca735b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5d6ca3ad\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_title_hover_color_responsive\":\"globals\\/colors?id=secondary\",\"st_readmore_hover_color_responsive\":\"globals\\/colors?id=secondary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#646974\",\"st_excerpt_color_responsive\":\"#646974\",\"st_title_normal_color_responsive\":\"#272B36\",\"st_thumbnail_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_title_hover_color_responsive\":\"#FA8D25\",\"st_readmore_normal_color_responsive\":\"#FA8D25\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":false}],\"isInner\":false}]'),(1847,314,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1848,314,'_elementor_css','a:6:{s:4:\"time\";i:1721838699;s:5:\"fonts\";a:1:{i:0;s:5:\"Inter\";}s:5:\"icons\";a:3:{i:0;s:0:\"\";i:1;s:8:\"jkiticon\";i:3;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1849,315,'_elementor_edit_mode','builder'),(1850,315,'_elementor_template_type','wp-page'),(1851,315,'_elementor_version','3.23.2'),(1852,315,'_wp_page_template','default'),(1853,315,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1854,315,'_elementor_data','[{\"id\":\"35495243\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"Eldery male gardener using scissors for bushes\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"160\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0,\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_size_tablet\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"top center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00160E\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b\":\"#00000054\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_slideshow_gallery\":[{\"id\":154,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-02-5.jpg\"},{\"id\":155,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-03-3.jpg\"},{\"id\":156,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-04-3.jpg\"},{\"id\":157,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-01-5.jpg\"}]},\"elements\":[{\"id\":\"739a26d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":65,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=06a34e7\"}},\"elements\":[{\"id\":\"132d1a8e\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Complete For All\",\"sg_title_focused\":\" Landscape \",\"sg_title_after\":\" Service And Maintenance\",\"sg_title_html_tag\":\"h1\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=primary\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"7c49583a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"635cb25b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"23cf340e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37.85499999999999687361196265555918216705322265625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":48,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"1c4c950d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4768b6f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":62.14500000000000312638803734444081783294677734375,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"flex-start\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":52,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"34c0badb\",\"elType\":\"widget\",\"settings\":{\"sg_video_button_title\":\"Play Video\",\"sg_video_button_icon\":{\"value\":\"jki jki-play\",\"library\":\"jkiticon\"},\"sg_video_url\":\"#\",\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_width_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_line_height_responsive\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#FFD402\",\"st_button_normal_glow_color_responsive\":\"#00694361\",\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"_element_width\":\"auto\",\"__globals__\":{\"st_button_normal_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=accent\",\"st_border_normal_border_border_color\":\"\",\"st_button_hover_text_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_glow_color_responsive\":\"\"},\"st_button_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_button_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_width_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_line_height_responsive_mobile\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"st_border_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_border_normal_border_border_color\":\"#FFD027\",\"st_button_line_height_responsive_tablet\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"st_button_normal_background_background_color\":\"#006943\",\"st_button_hover_text_color_responsive\":\"#006943\",\"st_button_hover_background_background_color\":\"#FFD402\",\"sg_video_auto_play\":\"\",\"sg_video_mute\":\"\"},\"elements\":[],\"widgetType\":\"jkit_video_button\"},{\"id\":\"232ec8da\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Intro\",\"align\":\"right\",\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"hide_mobile\":\"hidden-mobile\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#00160E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49b348ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"edc2dbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.00200000000000244426701101474463939666748046875,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e2246bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Prestige Luxury Cleanings LLC\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"139cc45f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Landscaping And Garden Care Services\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dc78e71\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"597dc67d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"26cf3840\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b19bda0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":167,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"980\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a46c929\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c4d8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Public Liability Insurance\",\"_id\":\"a978734\"},{\"text\":\"Environmentally Friendly\",\"_id\":\"1cd10a1\"},{\"text\":\"On Time, Every Time\",\"_id\":\"c6767db\"},{\"text\":\"Beautiful Garden Designs\",\"_id\":\"d4743f4\"},{\"text\":\"Modern Machinery And Tool\",\"_id\":\"535c17d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"398321ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4c7c15d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.9129999999999967030817060731351375579833984375,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5683e90d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":162,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"860\",\"height\":\"980\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b6190b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":163,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"-59\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"250636f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"713aa588\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"51a71b71\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#00160E\",\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=primary\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=06a34e7\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"st_content_title_color_responsive\":\"#7F7F7F\",\"st_super_color_responsive\":\"#FFD402\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\",\"sg_setting_html_tag\":\"span\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5557874f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"73847855\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":174,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/garden-maintenance-performed-by-pro-gardener-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"b1058a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":224,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":478,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":325,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"69098afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"40\",\"bottom\":\"80\",\"left\":\"40\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"7cb7bf82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91cb5d9\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26358abf\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Have The Perfect Solution For Your Landscape Problems\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15a36cc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42c8d36c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7114454f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76f24ca8\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Variation Gardening\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"138cc39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28a78a06\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Expert Landscapers\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c5ac2bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38fdb183\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3ce0b95b\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Affordable Price\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-save-money-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4c80f133\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7451fb11\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Free Consultation\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-Consultancy-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e93f2c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"39a46e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6773b2a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"87647bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Providing Services For All Your Residential And Commercial Needs.\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3d4509\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6960c5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"20701e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"30164d28\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"6e6d8a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":142,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-services.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd233da\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6535a16\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"937e2e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7aee\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Lawn Services\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"d9723d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"c908972\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37c1cce6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":143,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/driveway-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b3e60ba\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3b291bbf\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"20b91942\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5649f719\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Driveway Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6300b69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"256ddf68\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3735f0b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":144,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/deck-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"741128a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3691562\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3c8a0e6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5eb1b3b9\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Deck Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"25f37292\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"61c9ff8e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d41e618\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"8781ee3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":145,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/weed-control.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd84c7d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"14f7965\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fb2459e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0582197\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Weed Control \",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"f7b0fa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0197d9e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f3de9c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":146,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/grass-feed.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"75ba950\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"23edbf4\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"ad70b3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1c4ac7\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Grass Feed\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6f592ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0043a3b\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"790dd775\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"360\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"160\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"140\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"background_overlay_color_b\":\"#000414\",\"background_overlay_image\":{\"id\":186,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/a-gardener-watering-plants-in-a-flowerbed-2RT8DWL-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]}},\"elements\":[{\"id\":\"a2ed5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7e37f762\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Landscaping\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a092069\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d5099\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need Someone To Take Care Your Garden & Lawn?\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=07ee36d\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1198756c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"66521a56\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":20,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":4},\"elements\":[{\"id\":\"1a89d099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.5090000000000003410605131648480892181396484375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"id\":191,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/happy-gardeners-with-plants-and-lawn-mower-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"space-between\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_color\":\"#FFFFFF00\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":9,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"46b821c1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":219,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":183,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"449971a9\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Make Appointment & Take Care Your Garden\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=secondary\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=93191b3\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_content_title_color_hover_responsive\":\"#FFFFFF\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#FFFFFF\",\"st_icon_color_responsive\":\"#00E5CC\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#00E5CC\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":false},{\"id\":\"13747b6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.4909999999999996589394868351519107818603515625,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1a13f42e\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"178***1721830795182\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fde8487\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"59883b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1617542a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Process\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29c7aa96\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Complete Every Step Carefully\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ced0d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d62463d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18cf7834\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"41f79872\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-consult-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consultation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65e1b761\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"span\",\"title_color\":\"#FFD402\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#006943\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12cdbf13\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4175d29\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-pencil_art-light\",\"library\":\"jkiticon\"},\"title_text\":\"Design Installation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2adabf01\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b628\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"569b3221\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consturction \",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"67d6b2e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6fff79c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53c9a76e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"title_text\":\"Finished Work\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"555aace0\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d57540b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"71\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardening-background-with-garden-tolls-A9BGNJU.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"147831a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"5a53d120\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"20\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Years of Experience\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"488f4727\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"6b8f6eae\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"76666759\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f532f9e\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"2850\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Happy Customers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"265fd738\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5473dc22\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"64\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Expert Landscapers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b38731e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4945f2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"627cd42c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65e3182\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.56499999999999772626324556767940521240234375},\"elements\":[{\"id\":\"43108b53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Projects\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45328989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Project We Have Done\\n\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"f382082\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.49900000000000233058017329312860965728759765625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":40,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"55ecfb57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"67afcbfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.0330000000000012505552149377763271331787109375,\"_inline_size_tablet\":23,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4989aa04\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Projects\",\"align\":\"right\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"left\",\"hover_animation\":\"float\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"32515d84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"3f5753f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"21982cfb\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":196,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Cutting-Leaf.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Cutting Leaf\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"404dc561\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"58d29b54\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":197,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Home-Garden.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Home Garden\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"3bff1dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"3c24185a\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":195,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/build-backyard.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Build Backyard\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_image_height_responsive_tablet\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b3cb58d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_image\":{\"id\":201,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-moving-aerial-photo-Z8KDGJ9-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_color\":\"#0000007D\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"79705206\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"51c9a732\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73b2fe0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"What They Says About Us\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4876e632\",\"elType\":\"widget\",\"settings\":{\"sg_layout_testimonial_choose\":\"style-2\",\"sg_testimonials_image_size_imagesize_size\":\"medium\",\"sg_testimonials_list\":[{\"sg_testimonials_list_client_avatar\":{\"id\":\"75\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/3SUMAU.jpg\"},\"_id\":\"6e9b2e1\",\"sg_testimonials_list_client_name\":\"Regan Traynor\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"76\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/CASCKD8.jpg\"},\"sg_testimonials_list_client_name\":\"Maisha Dunn\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"d069a43\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"77\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/MKLVKTE.jpg\"},\"sg_testimonials_list_client_name\":\"Reis Leonard\",\"sg_testimonials_list_designation\":\"Businessman\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"05c24f5\"}],\"st_wrapper_alignment_responsive\":\"left\",\"st_client_name_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_description_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_client_name_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_client_designation_normal_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_client_designation_normal_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=d343bdf\",\"st_rating_color_responsive\":\"\",\"st_client_name_normal_color_responsive\":\"\",\"st_quote_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_layout_background_background_color\":\"\"},\"st_layout_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_layout_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_wrapper_fix_height\":\"\",\"sg_setting_autoplay\":\"yes\",\"sg_setting_autoplay_pause\":\"\",\"sg_setting_arrow\":\"\",\"sg_setting_arrow_position\":\"middle-edge\",\"sg_setting_dots\":\"\",\"sg_setting_quote\":\"yes\",\"sg_setting_rating\":\"\",\"st_layout_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_layout_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_slide_show_responsive\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"sg_setting_quote_icon\":{\"value\":\"jki jki-quote-light\",\"library\":\"jkiticon\"},\"sg_layout_image_position\":\"below\",\"st_layout_background_background_background\":\"classic\",\"st_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position\":\"\",\"st_quote_override_position_top_responsive\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"st_quote_override_position_left_responsive\":{\"unit\":\"px\",\"size\":442,\"sizes\":[]},\"st_client_name_normal_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_quote_normal_font_size_responsive\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"st_client_image_margin_responsive\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_rating_font_size_responsive\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"st_rating_margin_right_responsive\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_setting_slide_show_responsive_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"st_wrapper_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position_top_responsive_tablet\":{\"unit\":\"px\",\"size\":249,\"sizes\":[]},\"st_quote_override_position_top_responsive_mobile\":{\"unit\":\"px\",\"size\":193,\"sizes\":[]},\"st_quote_override_position_left_responsive_tablet\":{\"unit\":\"px\",\"size\":265,\"sizes\":[]},\"st_quote_override_position_left_responsive_mobile\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]},\"st_quote_normal_font_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"st_description_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_normal_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64afd05f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"746d276b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30338dfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f950be4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ca735b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5d6ca3ad\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_title_hover_color_responsive\":\"globals\\/colors?id=secondary\",\"st_readmore_hover_color_responsive\":\"globals\\/colors?id=secondary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#646974\",\"st_excerpt_color_responsive\":\"#646974\",\"st_title_normal_color_responsive\":\"#272B36\",\"st_thumbnail_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_title_hover_color_responsive\":\"#FA8D25\",\"st_readmore_normal_color_responsive\":\"#FA8D25\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":false}],\"isInner\":false}]'),(1855,315,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1856,315,'_elementor_css','a:6:{s:4:\"time\";i:1721838699;s:5:\"fonts\";a:1:{i:0;s:5:\"Inter\";}s:5:\"icons\";a:3:{i:0;s:0:\"\";i:1;s:8:\"jkiticon\";i:3;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1872,318,'_elementor_edit_mode','builder'),(1873,318,'_elementor_template_type','wp-page'),(1874,318,'_elementor_version','3.23.2'),(1875,318,'_wp_page_template','default'),(1876,318,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1877,318,'_elementor_data','[{\"id\":\"35495243\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"Eldery male gardener using scissors for bushes\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"160\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0,\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_size_tablet\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"top center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00160E\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b\":\"#00000054\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_slideshow_gallery\":[{\"id\":154,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-02-5.jpg\"},{\"id\":155,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-03-3.jpg\"},{\"id\":156,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-04-3.jpg\"},{\"id\":157,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-01-5.jpg\"}]},\"elements\":[{\"id\":\"739a26d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":65,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=06a34e7\"}},\"elements\":[{\"id\":\"132d1a8e\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Complete For All\",\"sg_title_focused\":\" Landscape \",\"sg_title_after\":\" Service And Maintenance\",\"sg_title_html_tag\":\"h1\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=primary\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"7c49583a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"635cb25b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"23cf340e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37.85499999999999687361196265555918216705322265625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":48,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"1c4c950d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4768b6f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":62.14500000000000312638803734444081783294677734375,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"flex-start\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":52,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"34c0badb\",\"elType\":\"widget\",\"settings\":{\"sg_video_button_title\":\"Play Video\",\"sg_video_button_icon\":{\"value\":\"jki jki-play\",\"library\":\"jkiticon\"},\"sg_video_url\":\"#\",\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_width_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_line_height_responsive\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#FFD402\",\"st_button_normal_glow_color_responsive\":\"#00694361\",\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"_element_width\":\"auto\",\"__globals__\":{\"st_button_normal_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=accent\",\"st_border_normal_border_border_color\":\"\",\"st_button_hover_text_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_glow_color_responsive\":\"\"},\"st_button_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_button_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_width_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_line_height_responsive_mobile\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"st_border_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_border_normal_border_border_color\":\"#FFD027\",\"st_button_line_height_responsive_tablet\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"st_button_normal_background_background_color\":\"#006943\",\"st_button_hover_text_color_responsive\":\"#006943\",\"st_button_hover_background_background_color\":\"#FFD402\",\"sg_video_auto_play\":\"\",\"sg_video_mute\":\"\"},\"elements\":[],\"widgetType\":\"jkit_video_button\"},{\"id\":\"232ec8da\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Intro\",\"align\":\"right\",\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"hide_mobile\":\"hidden-mobile\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#00160E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49b348ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"edc2dbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.00200000000000244426701101474463939666748046875,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e2246bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Prestige Luxury Cleanings LLC\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"139cc45f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Landscaping And Garden Care Services\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dc78e71\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"597dc67d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"26cf3840\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b19bda0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":167,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"980\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a46c929\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c4d8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Public Liability Insurance\",\"_id\":\"a978734\"},{\"text\":\"Environmentally Friendly\",\"_id\":\"1cd10a1\"},{\"text\":\"On Time, Every Time\",\"_id\":\"c6767db\"},{\"text\":\"Beautiful Garden Designs\",\"_id\":\"d4743f4\"},{\"text\":\"Modern Machinery And Tool\",\"_id\":\"535c17d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"398321ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4c7c15d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.9129999999999967030817060731351375579833984375,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5683e90d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":162,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"860\",\"height\":\"980\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b6190b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":163,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"-59\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"250636f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"713aa588\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"51a71b71\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#00160E\",\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=primary\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=06a34e7\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"st_content_title_color_responsive\":\"#7F7F7F\",\"st_super_color_responsive\":\"#FFD402\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\",\"sg_setting_html_tag\":\"span\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5557874f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"73847855\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":174,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/garden-maintenance-performed-by-pro-gardener-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"b1058a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":224,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":478,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":325,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"69098afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"40\",\"bottom\":\"80\",\"left\":\"40\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"7cb7bf82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91cb5d9\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26358abf\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Have The Perfect Solution For Your Landscape Problems\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15a36cc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42c8d36c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7114454f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76f24ca8\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Variation Gardening\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"138cc39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28a78a06\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Expert Landscapers\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c5ac2bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38fdb183\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3ce0b95b\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Affordable Price\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-save-money-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4c80f133\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7451fb11\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Free Consultation\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-Consultancy-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e93f2c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"39a46e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6773b2a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"87647bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Providing Services For All Your Residential And Commercial Needs.\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3d4509\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6960c5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"20701e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"30164d28\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"6e6d8a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":142,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-services.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd233da\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6535a16\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"937e2e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7aee\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Lawn Services\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"d9723d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"c908972\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37c1cce6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":143,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/driveway-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b3e60ba\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3b291bbf\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"20b91942\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5649f719\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Driveway Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6300b69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"256ddf68\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3735f0b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":144,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/deck-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"741128a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3691562\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3c8a0e6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5eb1b3b9\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Deck Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"25f37292\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"61c9ff8e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d41e618\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"8781ee3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":145,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/weed-control.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd84c7d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"14f7965\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fb2459e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0582197\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Weed Control \",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"f7b0fa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0197d9e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f3de9c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":146,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/grass-feed.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"75ba950\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"23edbf4\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"ad70b3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1c4ac7\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Grass Feed\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6f592ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0043a3b\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"790dd775\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"360\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"160\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"140\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"background_overlay_color_b\":\"#000414\",\"background_overlay_image\":{\"id\":186,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/a-gardener-watering-plants-in-a-flowerbed-2RT8DWL-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]}},\"elements\":[{\"id\":\"a2ed5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7e37f762\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Landscaping\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a092069\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d5099\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need Someone To Take Care Your Garden & Lawn?\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=07ee36d\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1198756c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"66521a56\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":20,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":4},\"elements\":[{\"id\":\"1a89d099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.5090000000000003410605131648480892181396484375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"id\":191,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/happy-gardeners-with-plants-and-lawn-mower-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"space-between\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_color\":\"#FFFFFF00\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":9,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"46b821c1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":219,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":183,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"449971a9\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Make Appointment & Take Care Your Garden\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=secondary\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=93191b3\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_content_title_color_hover_responsive\":\"#FFFFFF\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#FFFFFF\",\"st_icon_color_responsive\":\"#00E5CC\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#00E5CC\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":false},{\"id\":\"13747b6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.4909999999999996589394868351519107818603515625,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1a13f42e\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"178***1721830795182\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fde8487\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"59883b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1617542a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Process\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29c7aa96\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Complete Every Step Carefully\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ced0d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d62463d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18cf7834\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"41f79872\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-consult-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consultation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65e1b761\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"span\",\"title_color\":\"#FFD402\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#006943\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12cdbf13\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4175d29\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-pencil_art-light\",\"library\":\"jkiticon\"},\"title_text\":\"Design Installation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2adabf01\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b628\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"569b3221\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consturction \",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"67d6b2e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6fff79c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53c9a76e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"title_text\":\"Finished Work\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"555aace0\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d57540b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"71\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardening-background-with-garden-tolls-A9BGNJU.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"147831a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"5a53d120\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"20\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Years of Experience\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"488f4727\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"6b8f6eae\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"76666759\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f532f9e\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"2850\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Happy Customers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"265fd738\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5473dc22\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"64\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Expert Landscapers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b38731e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4945f2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"627cd42c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65e3182\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.56499999999999772626324556767940521240234375},\"elements\":[{\"id\":\"43108b53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Projects\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45328989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Project We Have Done\\n\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"f382082\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.49900000000000233058017329312860965728759765625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":40,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"55ecfb57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"67afcbfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.0330000000000012505552149377763271331787109375,\"_inline_size_tablet\":23,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4989aa04\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Projects\",\"align\":\"right\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"left\",\"hover_animation\":\"float\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"32515d84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"3f5753f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"21982cfb\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":196,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Cutting-Leaf.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Cutting Leaf\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"404dc561\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"58d29b54\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":197,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Home-Garden.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Home Garden\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"3bff1dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"3c24185a\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":195,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/build-backyard.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Build Backyard\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_image_height_responsive_tablet\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b3cb58d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_image\":{\"id\":201,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-moving-aerial-photo-Z8KDGJ9-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_color\":\"#0000007D\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"79705206\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"51c9a732\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73b2fe0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"What They Says About Us\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4876e632\",\"elType\":\"widget\",\"settings\":{\"sg_layout_testimonial_choose\":\"style-2\",\"sg_testimonials_image_size_imagesize_size\":\"medium\",\"sg_testimonials_list\":[{\"sg_testimonials_list_client_avatar\":{\"id\":\"75\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/3SUMAU.jpg\"},\"_id\":\"6e9b2e1\",\"sg_testimonials_list_client_name\":\"Regan Traynor\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"76\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/CASCKD8.jpg\"},\"sg_testimonials_list_client_name\":\"Maisha Dunn\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"d069a43\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"77\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/MKLVKTE.jpg\"},\"sg_testimonials_list_client_name\":\"Reis Leonard\",\"sg_testimonials_list_designation\":\"Businessman\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"05c24f5\"}],\"st_wrapper_alignment_responsive\":\"left\",\"st_client_name_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_description_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_client_name_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_client_designation_normal_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_client_designation_normal_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=d343bdf\",\"st_rating_color_responsive\":\"\",\"st_client_name_normal_color_responsive\":\"\",\"st_quote_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_layout_background_background_color\":\"\"},\"st_layout_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_layout_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_wrapper_fix_height\":\"\",\"sg_setting_autoplay\":\"yes\",\"sg_setting_autoplay_pause\":\"\",\"sg_setting_arrow\":\"\",\"sg_setting_arrow_position\":\"middle-edge\",\"sg_setting_dots\":\"\",\"sg_setting_quote\":\"yes\",\"sg_setting_rating\":\"\",\"st_layout_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_layout_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_slide_show_responsive\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"sg_setting_quote_icon\":{\"value\":\"jki jki-quote-light\",\"library\":\"jkiticon\"},\"sg_layout_image_position\":\"below\",\"st_layout_background_background_background\":\"classic\",\"st_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position\":\"\",\"st_quote_override_position_top_responsive\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"st_quote_override_position_left_responsive\":{\"unit\":\"px\",\"size\":442,\"sizes\":[]},\"st_client_name_normal_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_quote_normal_font_size_responsive\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"st_client_image_margin_responsive\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_rating_font_size_responsive\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"st_rating_margin_right_responsive\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_setting_slide_show_responsive_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"st_wrapper_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position_top_responsive_tablet\":{\"unit\":\"px\",\"size\":249,\"sizes\":[]},\"st_quote_override_position_top_responsive_mobile\":{\"unit\":\"px\",\"size\":193,\"sizes\":[]},\"st_quote_override_position_left_responsive_tablet\":{\"unit\":\"px\",\"size\":265,\"sizes\":[]},\"st_quote_override_position_left_responsive_mobile\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]},\"st_quote_normal_font_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"st_description_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_normal_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64afd05f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"746d276b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30338dfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f950be4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ca735b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5d6ca3ad\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_title_hover_color_responsive\":\"globals\\/colors?id=secondary\",\"st_readmore_hover_color_responsive\":\"globals\\/colors?id=secondary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#646974\",\"st_excerpt_color_responsive\":\"#646974\",\"st_title_normal_color_responsive\":\"#272B36\",\"st_thumbnail_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_title_hover_color_responsive\":\"#FA8D25\",\"st_readmore_normal_color_responsive\":\"#FA8D25\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":false}],\"isInner\":false}]'),(1878,318,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1879,319,'_elementor_edit_mode','builder'),(1880,319,'_elementor_template_type','wp-page'),(1881,319,'_elementor_version','3.23.2'),(1882,319,'_wp_page_template','default'),(1883,319,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1884,319,'_elementor_data','[{\"id\":\"35495243\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"Eldery male gardener using scissors for bushes\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"160\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0,\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_size_tablet\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"top center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00160E\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b\":\"#00000054\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_slideshow_gallery\":[{\"id\":154,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-02-5.jpg\"},{\"id\":155,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-03-3.jpg\"},{\"id\":156,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-04-3.jpg\"},{\"id\":157,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-01-5.jpg\"}]},\"elements\":[{\"id\":\"739a26d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":65,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=06a34e7\"}},\"elements\":[{\"id\":\"132d1a8e\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Complete For All\",\"sg_title_focused\":\" Landscape \",\"sg_title_after\":\" Service And Maintenance\",\"sg_title_html_tag\":\"h1\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=primary\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"7c49583a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"635cb25b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"23cf340e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37.85499999999999687361196265555918216705322265625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":48,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"1c4c950d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4768b6f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":62.14500000000000312638803734444081783294677734375,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"flex-start\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":52,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"34c0badb\",\"elType\":\"widget\",\"settings\":{\"sg_video_button_title\":\"Play Video\",\"sg_video_button_icon\":{\"value\":\"jki jki-play\",\"library\":\"jkiticon\"},\"sg_video_url\":\"#\",\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_width_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_line_height_responsive\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#FFD402\",\"st_button_normal_glow_color_responsive\":\"#00694361\",\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"_element_width\":\"auto\",\"__globals__\":{\"st_button_normal_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=accent\",\"st_border_normal_border_border_color\":\"\",\"st_button_hover_text_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_glow_color_responsive\":\"\"},\"st_button_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_button_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_width_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_line_height_responsive_mobile\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"st_border_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_border_normal_border_border_color\":\"#FFD027\",\"st_button_line_height_responsive_tablet\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"st_button_normal_background_background_color\":\"#006943\",\"st_button_hover_text_color_responsive\":\"#006943\",\"st_button_hover_background_background_color\":\"#FFD402\",\"sg_video_auto_play\":\"\",\"sg_video_mute\":\"\"},\"elements\":[],\"widgetType\":\"jkit_video_button\"},{\"id\":\"232ec8da\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Intro\",\"align\":\"right\",\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"hide_mobile\":\"hidden-mobile\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#00160E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49b348ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"edc2dbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.00200000000000244426701101474463939666748046875,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e2246bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Prestige Luxury Cleanings LLC\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"139cc45f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Landscaping And Garden Care Services\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dc78e71\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"597dc67d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\"},\"elements\":[{\"id\":\"26cf3840\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b19bda0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":167,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"980\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a46c929\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c4d8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Public Liability Insurance\",\"_id\":\"a978734\"},{\"text\":\"Environmentally Friendly\",\"_id\":\"1cd10a1\"},{\"text\":\"On Time, Every Time\",\"_id\":\"c6767db\"},{\"text\":\"Beautiful Garden Designs\",\"_id\":\"d4743f4\"},{\"text\":\"Modern Machinery And Tool\",\"_id\":\"535c17d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"398321ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4c7c15d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.9129999999999967030817060731351375579833984375,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5683e90d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":162,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"860\",\"height\":\"980\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b6190b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":163,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"-59\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"250636f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"713aa588\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"51a71b71\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#00160E\",\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=primary\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=06a34e7\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"st_content_title_color_responsive\":\"#7F7F7F\",\"st_super_color_responsive\":\"#FFD402\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\",\"sg_setting_html_tag\":\"span\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5557874f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"73847855\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":174,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/garden-maintenance-performed-by-pro-gardener-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"}},\"elements\":[{\"id\":\"b1058a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":224,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":478,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":325,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"69098afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"40\",\"bottom\":\"80\",\"left\":\"40\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[{\"id\":\"7cb7bf82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91cb5d9\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26358abf\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Have The Perfect Solution For Your Landscape Problems\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15a36cc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42c8d36c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7114454f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"76f24ca8\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Variation Gardening\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"138cc39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28a78a06\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Expert Landscapers\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c5ac2bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"38fdb183\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3ce0b95b\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Affordable Price\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-save-money-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4c80f133\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7451fb11\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Free Consultation\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-Consultancy-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e93f2c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"39a46e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6773b2a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"87647bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Providing Services For All Your Residential And Commercial Needs.\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3d4509\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6960c5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"20701e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"30164d28\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"6e6d8a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":142,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-services.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd233da\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6535a16\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"937e2e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"85e7aee\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Lawn Services\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"d9723d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"c908972\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37c1cce6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":143,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/driveway-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5b3e60ba\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3b291bbf\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"20b91942\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5649f719\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Driveway Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6300b69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"256ddf68\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3735f0b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":144,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/deck-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"741128a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3691562\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3c8a0e6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5eb1b3b9\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Deck Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"25f37292\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"61c9ff8e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d41e618\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"8781ee3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":145,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/weed-control.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bd84c7d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"14f7965\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fb2459e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0582197\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Weed Control \",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"f7b0fa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0197d9e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f3de9c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":146,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/grass-feed.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"75ba950\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"23edbf4\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"ad70b3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b1c4ac7\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Grass Feed\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6f592ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30},\"elements\":[{\"id\":\"0043a3b\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"790dd775\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"360\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"160\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"140\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"background_overlay_color_b\":\"#000414\",\"background_overlay_image\":{\"id\":186,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/a-gardener-watering-plants-in-a-flowerbed-2RT8DWL-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]}},\"elements\":[{\"id\":\"a2ed5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7e37f762\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Landscaping\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a092069\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d5099\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need Someone To Take Care Your Garden & Lawn?\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=07ee36d\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1198756c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"66521a56\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":20,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":4},\"elements\":[{\"id\":\"1a89d099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.5090000000000003410605131648480892181396484375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"id\":191,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/happy-gardeners-with-plants-and-lawn-mower-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"space-between\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_color\":\"#FFFFFF00\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":9,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"46b821c1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":219,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":183,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"449971a9\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Make Appointment & Take Care Your Garden\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=secondary\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=93191b3\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_content_title_color_hover_responsive\":\"#FFFFFF\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#FFFFFF\",\"st_icon_color_responsive\":\"#00E5CC\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#00E5CC\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":false},{\"id\":\"13747b6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.4909999999999996589394868351519107818603515625,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1a13f42e\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"178***1721830795182\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fde8487\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"59883b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1617542a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Process\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29c7aa96\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Complete Every Step Carefully\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ced0d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d62463d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"18cf7834\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"41f79872\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-consult-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consultation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65e1b761\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"span\",\"title_color\":\"#FFD402\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#006943\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12cdbf13\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4175d29\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-pencil_art-light\",\"library\":\"jkiticon\"},\"title_text\":\"Design Installation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2adabf01\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b628\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"569b3221\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consturction \",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"67d6b2e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6fff79c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"53c9a76e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"title_text\":\"Finished Work\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"555aace0\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d57540b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"71\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardening-background-with-garden-tolls-A9BGNJU.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"147831a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"5a53d120\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"20\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Years of Experience\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"488f4727\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50},\"elements\":[{\"id\":\"6b8f6eae\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"76666759\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f532f9e\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"2850\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Happy Customers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"265fd738\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5473dc22\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"64\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Expert Landscapers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b38731e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4945f2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"627cd42c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"65e3182\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.56499999999999772626324556767940521240234375},\"elements\":[{\"id\":\"43108b53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Projects\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45328989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Project We Have Done\\n\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"f382082\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.49900000000000233058017329312860965728759765625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":40,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"55ecfb57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"67afcbfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.0330000000000012505552149377763271331787109375,\"_inline_size_tablet\":23,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4989aa04\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Projects\",\"align\":\"right\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"left\",\"hover_animation\":\"float\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"32515d84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"3f5753f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"21982cfb\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":196,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Cutting-Leaf.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Cutting Leaf\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"404dc561\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"58d29b54\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":197,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Home-Garden.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Home Garden\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"3bff1dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"3c24185a\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":195,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/build-backyard.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Build Backyard\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_image_height_responsive_tablet\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b3cb58d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_image\":{\"id\":201,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-moving-aerial-photo-Z8KDGJ9-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_color\":\"#0000007D\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"79705206\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"51c9a732\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73b2fe0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"What They Says About Us\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4876e632\",\"elType\":\"widget\",\"settings\":{\"sg_layout_testimonial_choose\":\"style-2\",\"sg_testimonials_image_size_imagesize_size\":\"medium\",\"sg_testimonials_list\":[{\"sg_testimonials_list_client_avatar\":{\"id\":\"75\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/3SUMAU.jpg\"},\"_id\":\"6e9b2e1\",\"sg_testimonials_list_client_name\":\"Regan Traynor\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"76\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/CASCKD8.jpg\"},\"sg_testimonials_list_client_name\":\"Maisha Dunn\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"d069a43\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"77\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/MKLVKTE.jpg\"},\"sg_testimonials_list_client_name\":\"Reis Leonard\",\"sg_testimonials_list_designation\":\"Businessman\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"05c24f5\"}],\"st_wrapper_alignment_responsive\":\"left\",\"st_client_name_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_description_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_client_name_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_client_designation_normal_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_client_designation_normal_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=d343bdf\",\"st_rating_color_responsive\":\"\",\"st_client_name_normal_color_responsive\":\"\",\"st_quote_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_layout_background_background_color\":\"\"},\"st_layout_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_layout_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_wrapper_fix_height\":\"\",\"sg_setting_autoplay\":\"yes\",\"sg_setting_autoplay_pause\":\"\",\"sg_setting_arrow\":\"\",\"sg_setting_arrow_position\":\"middle-edge\",\"sg_setting_dots\":\"\",\"sg_setting_quote\":\"yes\",\"sg_setting_rating\":\"\",\"st_layout_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_layout_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_slide_show_responsive\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"sg_setting_quote_icon\":{\"value\":\"jki jki-quote-light\",\"library\":\"jkiticon\"},\"sg_layout_image_position\":\"below\",\"st_layout_background_background_background\":\"classic\",\"st_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position\":\"\",\"st_quote_override_position_top_responsive\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"st_quote_override_position_left_responsive\":{\"unit\":\"px\",\"size\":442,\"sizes\":[]},\"st_client_name_normal_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_quote_normal_font_size_responsive\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"st_client_image_margin_responsive\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_rating_font_size_responsive\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"st_rating_margin_right_responsive\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_setting_slide_show_responsive_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"st_wrapper_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position_top_responsive_tablet\":{\"unit\":\"px\",\"size\":249,\"sizes\":[]},\"st_quote_override_position_top_responsive_mobile\":{\"unit\":\"px\",\"size\":193,\"sizes\":[]},\"st_quote_override_position_left_responsive_tablet\":{\"unit\":\"px\",\"size\":265,\"sizes\":[]},\"st_quote_override_position_left_responsive_mobile\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]},\"st_quote_normal_font_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"st_description_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_normal_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64afd05f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"746d276b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"30338dfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f950be4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ca735b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5d6ca3ad\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_title_hover_color_responsive\":\"globals\\/colors?id=secondary\",\"st_readmore_hover_color_responsive\":\"globals\\/colors?id=secondary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#646974\",\"st_excerpt_color_responsive\":\"#646974\",\"st_title_normal_color_responsive\":\"#272B36\",\"st_thumbnail_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_title_hover_color_responsive\":\"#FA8D25\",\"st_readmore_normal_color_responsive\":\"#FA8D25\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":false}],\"isInner\":false}]'),(1885,319,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1886,320,'_elementor_edit_mode','builder'),(1887,320,'_elementor_template_type','wp-page'),(1888,320,'_elementor_version','3.23.2'),(1889,320,'_wp_page_template','default'),(1890,320,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1891,320,'_elementor_data','[{\"id\":\"35495243\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"Eldery male gardener using scissors for bushes\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"160\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0,\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_size_tablet\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"top center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00160E\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b\":\"#00000054\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_slideshow_gallery\":[{\"id\":154,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-02-5.jpg\"},{\"id\":155,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-03-3.jpg\"},{\"id\":156,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-04-3.jpg\"},{\"id\":157,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-01-5.jpg\"}],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"739a26d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":65,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=06a34e7\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"132d1a8e\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Complete For All\",\"sg_title_focused\":\" Landscape \",\"sg_title_after\":\" Service And Maintenance\",\"sg_title_html_tag\":\"h1\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=primary\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"7c49583a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"635cb25b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"23cf340e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37.85499999999999687361196265555918216705322265625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":48,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1c4c950d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4768b6f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":62.14500000000000312638803734444081783294677734375,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"flex-start\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":52,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"34c0badb\",\"elType\":\"widget\",\"settings\":{\"sg_video_button_title\":\"Play Video\",\"sg_video_button_icon\":{\"value\":\"jki jki-play\",\"library\":\"jkiticon\"},\"sg_video_url\":\"#\",\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_width_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_line_height_responsive\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#FFD402\",\"st_button_normal_glow_color_responsive\":\"#00694361\",\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"_element_width\":\"auto\",\"__globals__\":{\"st_button_normal_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=accent\",\"st_border_normal_border_border_color\":\"\",\"st_button_hover_text_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_glow_color_responsive\":\"\"},\"st_button_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_button_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_width_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_line_height_responsive_mobile\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"st_border_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_border_normal_border_border_color\":\"#FFD027\",\"st_button_line_height_responsive_tablet\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"st_button_normal_background_background_color\":\"#006943\",\"st_button_hover_text_color_responsive\":\"#006943\",\"st_button_hover_background_background_color\":\"#FFD402\",\"sg_video_auto_play\":\"\",\"sg_video_mute\":\"\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_video_button\"},{\"id\":\"232ec8da\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Intro\",\"align\":\"right\",\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"hide_mobile\":\"hidden-mobile\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#00160E\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49b348ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"edc2dbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.00200000000000244426701101474463939666748046875,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"4e2246bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Prestige Luxury Cleanings LLC\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"139cc45f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Landscaping And Garden Care Services\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dc78e71\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"597dc67d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"26cf3840\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"3b19bda0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":167,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"980\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a46c929\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"7c4d8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Public Liability Insurance\",\"_id\":\"a978734\"},{\"text\":\"Environmentally Friendly\",\"_id\":\"1cd10a1\"},{\"text\":\"On Time, Every Time\",\"_id\":\"c6767db\"},{\"text\":\"Beautiful Garden Designs\",\"_id\":\"d4743f4\"},{\"text\":\"Modern Machinery And Tool\",\"_id\":\"535c17d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"398321ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4c7c15d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.9129999999999967030817060731351375579833984375,\"_inline_size_tablet\":100,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5683e90d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":162,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"860\",\"height\":\"980\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b6190b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":163,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"-59\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"250636f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"713aa588\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"51a71b71\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#00160E\",\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=primary\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=06a34e7\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"st_content_title_color_responsive\":\"#7F7F7F\",\"st_super_color_responsive\":\"#FFD402\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\",\"sg_setting_html_tag\":\"span\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5557874f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"73847855\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":174,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/garden-maintenance-performed-by-pro-gardener-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"b1058a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":224,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":478,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":325,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"69098afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"40\",\"bottom\":\"80\",\"left\":\"40\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"7cb7bf82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91cb5d9\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26358abf\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Have The Perfect Solution For Your Landscape Problems\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15a36cc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42c8d36c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"7114454f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"76f24ca8\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Variation Gardening\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"138cc39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"28a78a06\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Expert Landscapers\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c5ac2bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"38fdb183\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"3ce0b95b\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Affordable Price\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-save-money-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4c80f133\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"7451fb11\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Free Consultation\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-Consultancy-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e93f2c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"39a46e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"6773b2a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"87647bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Providing Services For All Your Residential And Commercial Needs.\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3d4509\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6960c5\",\"elType\":\"section\",\"settings\":{\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"20701e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"a2e2fb9\",\"elType\":\"widget\",\"settings\":{\"premium_carousel_slider_content\":[\"Service 5\",\"Service 4\",\"Service 3\",\"Service 2\",\"service 1\"],\"premium_carousel_templates_repeater\":[],\"premium_carousel_responsive_desktop\":3,\"premium_carousel_responsive_tabs\":2,\"premium_carousel_nav_options\":\"none\",\"premium_carousel_navigation_show\":\"\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"premium-carousel-widget\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30164d28\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"6e6d8a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":142,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-services.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"bd233da\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6535a16\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"937e2e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"85e7aee\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Lawn Services\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"d9723d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"c908972\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37c1cce6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":143,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/driveway-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5b3e60ba\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3b291bbf\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"20b91942\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5649f719\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Driveway Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6300b69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"256ddf68\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3735f0b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":144,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/deck-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"741128a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3691562\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"3c8a0e6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5eb1b3b9\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Deck Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"25f37292\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"61c9ff8e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d41e618\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"8781ee3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":145,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/weed-control.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"bd84c7d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"14f7965\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"fb2459e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"0582197\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Weed Control \",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"f7b0fa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"0197d9e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f3de9c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":146,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/grass-feed.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"75ba950\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"23edbf4\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"ad70b3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"b1c4ac7\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Grass Feed\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6f592ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"0043a3b\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"790dd775\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"360\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"160\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"140\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"background_overlay_color_b\":\"#000414\",\"background_overlay_image\":{\"id\":186,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/a-gardener-watering-plants-in-a-flowerbed-2RT8DWL-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"a2ed5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"7e37f762\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Landscaping\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a092069\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d5099\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need Someone To Take Care Your Garden & Lawn?\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=07ee36d\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1198756c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"66521a56\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":20,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":4,\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"1a89d099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.5090000000000003410605131648480892181396484375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"id\":191,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/happy-gardeners-with-plants-and-lawn-mower-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"space-between\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_color\":\"#FFFFFF00\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":9,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"46b821c1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":219,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":183,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"449971a9\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Make Appointment & Take Care Your Garden\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=secondary\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=93191b3\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_content_title_color_hover_responsive\":\"#FFFFFF\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#FFFFFF\",\"st_icon_color_responsive\":\"#00E5CC\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#00E5CC\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":false},{\"id\":\"13747b6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.4909999999999996589394868351519107818603515625,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1a13f42e\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"178***1721830795182\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fde8487\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"59883b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1617542a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Process\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29c7aa96\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Complete Every Step Carefully\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ced0d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d62463d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"18cf7834\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"41f79872\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-consult-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consultation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65e1b761\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"span\",\"title_color\":\"#FFD402\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#006943\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12cdbf13\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"4175d29\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-pencil_art-light\",\"library\":\"jkiticon\"},\"title_text\":\"Design Installation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2adabf01\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b628\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"569b3221\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consturction \",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"67d6b2e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6fff79c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"53c9a76e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"title_text\":\"Finished Work\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"555aace0\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d57540b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"71\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardening-background-with-garden-tolls-A9BGNJU.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"147831a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5a53d120\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"20\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Years of Experience\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"488f4727\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"6b8f6eae\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"76666759\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"6f532f9e\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"2850\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Happy Customers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"265fd738\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5473dc22\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"64\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Expert Landscapers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b38731e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"4945f2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"627cd42c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"65e3182\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.56499999999999772626324556767940521240234375,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"43108b53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Projects\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45328989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Project We Have Done\\n\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"f382082\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.49900000000000233058017329312860965728759765625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":40,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"55ecfb57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"67afcbfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.0330000000000012505552149377763271331787109375,\"_inline_size_tablet\":23,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"4989aa04\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Projects\",\"align\":\"right\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"left\",\"hover_animation\":\"float\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"32515d84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"3f5753f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"21982cfb\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":196,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Cutting-Leaf.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Cutting Leaf\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"404dc561\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"58d29b54\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":197,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Home-Garden.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Home Garden\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"3bff1dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"3c24185a\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":195,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/build-backyard.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Build Backyard\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_image_height_responsive_tablet\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b3cb58d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_image\":{\"id\":201,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-moving-aerial-photo-Z8KDGJ9-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_color\":\"#0000007D\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"79705206\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"51c9a732\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73b2fe0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"What They Says About Us\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4876e632\",\"elType\":\"widget\",\"settings\":{\"sg_layout_testimonial_choose\":\"style-2\",\"sg_testimonials_image_size_imagesize_size\":\"medium\",\"sg_testimonials_list\":[{\"sg_testimonials_list_client_avatar\":{\"id\":\"75\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/3SUMAU.jpg\"},\"_id\":\"6e9b2e1\",\"sg_testimonials_list_client_name\":\"Regan Traynor\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"76\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/CASCKD8.jpg\"},\"sg_testimonials_list_client_name\":\"Maisha Dunn\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"d069a43\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"77\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/MKLVKTE.jpg\"},\"sg_testimonials_list_client_name\":\"Reis Leonard\",\"sg_testimonials_list_designation\":\"Businessman\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"05c24f5\"}],\"st_wrapper_alignment_responsive\":\"left\",\"st_client_name_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_description_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_client_name_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_client_designation_normal_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_client_designation_normal_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=d343bdf\",\"st_rating_color_responsive\":\"\",\"st_client_name_normal_color_responsive\":\"\",\"st_quote_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_layout_background_background_color\":\"\"},\"st_layout_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_layout_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_wrapper_fix_height\":\"\",\"sg_setting_autoplay\":\"yes\",\"sg_setting_autoplay_pause\":\"\",\"sg_setting_arrow\":\"\",\"sg_setting_arrow_position\":\"middle-edge\",\"sg_setting_dots\":\"\",\"sg_setting_quote\":\"yes\",\"sg_setting_rating\":\"\",\"st_layout_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_layout_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_slide_show_responsive\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"sg_setting_quote_icon\":{\"value\":\"jki jki-quote-light\",\"library\":\"jkiticon\"},\"sg_layout_image_position\":\"below\",\"st_layout_background_background_background\":\"classic\",\"st_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position\":\"\",\"st_quote_override_position_top_responsive\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"st_quote_override_position_left_responsive\":{\"unit\":\"px\",\"size\":442,\"sizes\":[]},\"st_client_name_normal_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_quote_normal_font_size_responsive\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"st_client_image_margin_responsive\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_rating_font_size_responsive\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"st_rating_margin_right_responsive\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_setting_slide_show_responsive_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"st_wrapper_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position_top_responsive_tablet\":{\"unit\":\"px\",\"size\":249,\"sizes\":[]},\"st_quote_override_position_top_responsive_mobile\":{\"unit\":\"px\",\"size\":193,\"sizes\":[]},\"st_quote_override_position_left_responsive_tablet\":{\"unit\":\"px\",\"size\":265,\"sizes\":[]},\"st_quote_override_position_left_responsive_mobile\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]},\"st_quote_normal_font_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"st_description_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_normal_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64afd05f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"746d276b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"30338dfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f950be4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ca735b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5d6ca3ad\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_title_hover_color_responsive\":\"globals\\/colors?id=secondary\",\"st_readmore_hover_color_responsive\":\"globals\\/colors?id=secondary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#646974\",\"st_excerpt_color_responsive\":\"#646974\",\"st_title_normal_color_responsive\":\"#272B36\",\"st_thumbnail_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_title_hover_color_responsive\":\"#FA8D25\",\"st_readmore_normal_color_responsive\":\"#FA8D25\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":false}],\"isInner\":false}]'),(1892,320,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1893,24,'_elementor_pro_version','3.10.1'),(1894,321,'_elementor_edit_mode','builder'),(1895,321,'_elementor_template_type','wp-page'),(1896,321,'_elementor_version','3.23.2'),(1897,321,'_wp_page_template','default'),(1898,321,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1899,321,'_elementor_data','[{\"id\":\"35495243\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"Eldery male gardener using scissors for bushes\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"160\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0,\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_size_tablet\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"top center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00160E\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b\":\"#00000054\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_slideshow_gallery\":[{\"id\":154,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-02-5.jpg\"},{\"id\":155,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-03-3.jpg\"},{\"id\":156,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-04-3.jpg\"},{\"id\":157,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-01-5.jpg\"}],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"739a26d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":65,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=06a34e7\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"132d1a8e\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Complete For All\",\"sg_title_focused\":\" Landscape \",\"sg_title_after\":\" Service And Maintenance\",\"sg_title_html_tag\":\"h1\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=primary\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"7c49583a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"635cb25b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"23cf340e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37.85499999999999687361196265555918216705322265625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":48,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1c4c950d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4768b6f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":62.14500000000000312638803734444081783294677734375,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"flex-start\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":52,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"34c0badb\",\"elType\":\"widget\",\"settings\":{\"sg_video_button_title\":\"Play Video\",\"sg_video_button_icon\":{\"value\":\"jki jki-play\",\"library\":\"jkiticon\"},\"sg_video_url\":\"#\",\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_width_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_line_height_responsive\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#FFD402\",\"st_button_normal_glow_color_responsive\":\"#00694361\",\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"_element_width\":\"auto\",\"__globals__\":{\"st_button_normal_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=accent\",\"st_border_normal_border_border_color\":\"\",\"st_button_hover_text_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_glow_color_responsive\":\"\"},\"st_button_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_button_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_width_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_line_height_responsive_mobile\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"st_border_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_border_normal_border_border_color\":\"#FFD027\",\"st_button_line_height_responsive_tablet\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"st_button_normal_background_background_color\":\"#006943\",\"st_button_hover_text_color_responsive\":\"#006943\",\"st_button_hover_background_background_color\":\"#FFD402\",\"sg_video_auto_play\":\"\",\"sg_video_mute\":\"\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_video_button\"},{\"id\":\"232ec8da\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Intro\",\"align\":\"right\",\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"hide_mobile\":\"hidden-mobile\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#00160E\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49b348ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"edc2dbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.00200000000000244426701101474463939666748046875,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"4e2246bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Prestige Luxury Cleanings LLC\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"139cc45f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Landscaping And Garden Care Services\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dc78e71\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"597dc67d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"26cf3840\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"3b19bda0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":167,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"980\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a46c929\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"7c4d8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Public Liability Insurance\",\"_id\":\"a978734\"},{\"text\":\"Environmentally Friendly\",\"_id\":\"1cd10a1\"},{\"text\":\"On Time, Every Time\",\"_id\":\"c6767db\"},{\"text\":\"Beautiful Garden Designs\",\"_id\":\"d4743f4\"},{\"text\":\"Modern Machinery And Tool\",\"_id\":\"535c17d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"398321ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4c7c15d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.9129999999999967030817060731351375579833984375,\"_inline_size_tablet\":100,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5683e90d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":162,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"860\",\"height\":\"980\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b6190b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":163,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"-59\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"250636f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"713aa588\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"51a71b71\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#00160E\",\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=primary\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=06a34e7\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"st_content_title_color_responsive\":\"#7F7F7F\",\"st_super_color_responsive\":\"#FFD402\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\",\"sg_setting_html_tag\":\"span\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5557874f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"73847855\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":174,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/garden-maintenance-performed-by-pro-gardener-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"b1058a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":224,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":478,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":325,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"69098afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"40\",\"bottom\":\"80\",\"left\":\"40\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"7cb7bf82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91cb5d9\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26358abf\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Have The Perfect Solution For Your Landscape Problems\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15a36cc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42c8d36c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"7114454f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"76f24ca8\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Variation Gardening\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"138cc39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"28a78a06\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Expert Landscapers\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c5ac2bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"38fdb183\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"3ce0b95b\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Affordable Price\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-save-money-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4c80f133\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"7451fb11\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Free Consultation\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-Consultancy-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e93f2c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"39a46e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"6773b2a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"87647bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Providing Services For All Your Residential And Commercial Needs.\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3d4509\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6960c5\",\"elType\":\"section\",\"settings\":{\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"20701e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"a2e2fb9\",\"elType\":\"widget\",\"settings\":{\"premium_carousel_slider_content\":[\"Service 5\",\"Service 4\",\"Service 3\",\"Service 2\",\"service 1\"],\"premium_carousel_templates_repeater\":[],\"premium_carousel_responsive_desktop\":3,\"premium_carousel_responsive_tabs\":2,\"premium_carousel_nav_options\":\"none\",\"premium_carousel_navigation_show\":\"\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"premium-carousel-widget\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30164d28\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"6e6d8a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":142,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-services.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"bd233da\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6535a16\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"937e2e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"85e7aee\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Lawn Services\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"d9723d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"c908972\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37c1cce6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":143,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/driveway-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5b3e60ba\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3b291bbf\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"20b91942\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5649f719\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Driveway Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6300b69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"256ddf68\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3735f0b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":144,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/deck-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"741128a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3691562\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"3c8a0e6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5eb1b3b9\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Deck Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"25f37292\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"61c9ff8e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d41e618\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"8781ee3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":145,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/weed-control.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"bd84c7d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"14f7965\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"fb2459e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"0582197\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Weed Control \",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"f7b0fa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"0197d9e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f3de9c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":146,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/grass-feed.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"75ba950\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"23edbf4\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"ad70b3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"b1c4ac7\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Grass Feed\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6f592ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"0043a3b\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"790dd775\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"360\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"160\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"140\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"background_overlay_color_b\":\"#000414\",\"background_overlay_image\":{\"id\":186,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/a-gardener-watering-plants-in-a-flowerbed-2RT8DWL-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"a2ed5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"7e37f762\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Landscaping\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a092069\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d5099\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need Someone To Take Care Your Garden & Lawn?\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=07ee36d\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1198756c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"66521a56\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":20,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":4,\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"1a89d099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.5090000000000003410605131648480892181396484375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"id\":191,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/happy-gardeners-with-plants-and-lawn-mower-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"space-between\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_color\":\"#FFFFFF00\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":9,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"46b821c1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":219,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":183,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"449971a9\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Make Appointment & Take Care Your Garden\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=secondary\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=93191b3\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_content_title_color_hover_responsive\":\"#FFFFFF\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#FFFFFF\",\"st_icon_color_responsive\":\"#00E5CC\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#00E5CC\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":false},{\"id\":\"13747b6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.4909999999999996589394868351519107818603515625,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1a13f42e\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"178***1721830795182\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fde8487\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"59883b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1617542a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Process\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29c7aa96\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Complete Every Step Carefully\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ced0d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d62463d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"18cf7834\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"41f79872\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-consult-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consultation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65e1b761\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"span\",\"title_color\":\"#FFD402\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#006943\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12cdbf13\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"4175d29\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-pencil_art-light\",\"library\":\"jkiticon\"},\"title_text\":\"Design Installation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2adabf01\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b628\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"569b3221\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consturction \",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"67d6b2e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6fff79c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"53c9a76e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"title_text\":\"Finished Work\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"555aace0\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d57540b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"71\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardening-background-with-garden-tolls-A9BGNJU.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"147831a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5a53d120\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"20\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Years of Experience\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"488f4727\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"6b8f6eae\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"76666759\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"6f532f9e\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"2850\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Happy Customers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"265fd738\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5473dc22\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"64\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Expert Landscapers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b38731e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"4945f2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"627cd42c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"65e3182\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.56499999999999772626324556767940521240234375,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"43108b53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Projects\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45328989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Project We Have Done\\n\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"f382082\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.49900000000000233058017329312860965728759765625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":40,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"55ecfb57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"67afcbfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.0330000000000012505552149377763271331787109375,\"_inline_size_tablet\":23,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"4989aa04\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Projects\",\"align\":\"right\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"left\",\"hover_animation\":\"float\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"32515d84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"3f5753f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"21982cfb\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":196,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Cutting-Leaf.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Cutting Leaf\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"404dc561\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"58d29b54\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":197,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Home-Garden.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Home Garden\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"3bff1dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"3c24185a\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":195,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/build-backyard.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Build Backyard\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_image_height_responsive_tablet\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b3cb58d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_image\":{\"id\":201,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-moving-aerial-photo-Z8KDGJ9-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_color\":\"#0000007D\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"79705206\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"51c9a732\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73b2fe0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"What They Says About Us\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4876e632\",\"elType\":\"widget\",\"settings\":{\"sg_layout_testimonial_choose\":\"style-2\",\"sg_testimonials_image_size_imagesize_size\":\"medium\",\"sg_testimonials_list\":[{\"sg_testimonials_list_client_avatar\":{\"id\":\"75\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/3SUMAU.jpg\"},\"_id\":\"6e9b2e1\",\"sg_testimonials_list_client_name\":\"Regan Traynor\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"76\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/CASCKD8.jpg\"},\"sg_testimonials_list_client_name\":\"Maisha Dunn\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"d069a43\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"77\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/MKLVKTE.jpg\"},\"sg_testimonials_list_client_name\":\"Reis Leonard\",\"sg_testimonials_list_designation\":\"Businessman\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"05c24f5\"}],\"st_wrapper_alignment_responsive\":\"left\",\"st_client_name_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_description_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_client_name_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_client_designation_normal_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_client_designation_normal_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=d343bdf\",\"st_rating_color_responsive\":\"\",\"st_client_name_normal_color_responsive\":\"\",\"st_quote_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_layout_background_background_color\":\"\"},\"st_layout_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_layout_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_wrapper_fix_height\":\"\",\"sg_setting_autoplay\":\"yes\",\"sg_setting_autoplay_pause\":\"\",\"sg_setting_arrow\":\"\",\"sg_setting_arrow_position\":\"middle-edge\",\"sg_setting_dots\":\"\",\"sg_setting_quote\":\"yes\",\"sg_setting_rating\":\"\",\"st_layout_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_layout_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_slide_show_responsive\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"sg_setting_quote_icon\":{\"value\":\"jki jki-quote-light\",\"library\":\"jkiticon\"},\"sg_layout_image_position\":\"below\",\"st_layout_background_background_background\":\"classic\",\"st_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position\":\"\",\"st_quote_override_position_top_responsive\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"st_quote_override_position_left_responsive\":{\"unit\":\"px\",\"size\":442,\"sizes\":[]},\"st_client_name_normal_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_quote_normal_font_size_responsive\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"st_client_image_margin_responsive\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_rating_font_size_responsive\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"st_rating_margin_right_responsive\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_setting_slide_show_responsive_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"st_wrapper_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position_top_responsive_tablet\":{\"unit\":\"px\",\"size\":249,\"sizes\":[]},\"st_quote_override_position_top_responsive_mobile\":{\"unit\":\"px\",\"size\":193,\"sizes\":[]},\"st_quote_override_position_left_responsive_tablet\":{\"unit\":\"px\",\"size\":265,\"sizes\":[]},\"st_quote_override_position_left_responsive_mobile\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]},\"st_quote_normal_font_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"st_description_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_normal_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64afd05f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"746d276b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"30338dfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f950be4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ca735b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5d6ca3ad\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_title_hover_color_responsive\":\"globals\\/colors?id=secondary\",\"st_readmore_hover_color_responsive\":\"globals\\/colors?id=secondary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#646974\",\"st_excerpt_color_responsive\":\"#646974\",\"st_title_normal_color_responsive\":\"#272B36\",\"st_thumbnail_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_title_hover_color_responsive\":\"#FA8D25\",\"st_readmore_normal_color_responsive\":\"#FA8D25\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":false}],\"isInner\":false}]'),(1900,321,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1901,321,'_elementor_pro_version','3.10.1'),(1902,322,'_elementor_edit_mode','builder'),(1903,322,'_elementor_template_type','wp-page'),(1904,322,'_elementor_version','3.23.2'),(1905,322,'_wp_page_template','default'),(1906,322,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'); INSERT INTO `victorq_postmeta` VALUES (1907,322,'_elementor_data','[{\"id\":\"35495243\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"Eldery male gardener using scissors for bushes\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"160\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0,\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_size_tablet\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"top center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00160E\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b\":\"#00000054\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_slideshow_gallery\":[{\"id\":154,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-02-5.jpg\"},{\"id\":155,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-03-3.jpg\"},{\"id\":156,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-04-3.jpg\"},{\"id\":157,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-01-5.jpg\"}],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"739a26d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":65,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=06a34e7\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"132d1a8e\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Complete For All\",\"sg_title_focused\":\" Landscape \",\"sg_title_after\":\" Service And Maintenance\",\"sg_title_html_tag\":\"h1\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=primary\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"7c49583a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"635cb25b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"23cf340e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37.85499999999999687361196265555918216705322265625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":48,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1c4c950d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4768b6f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":62.14500000000000312638803734444081783294677734375,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"flex-start\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":52,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"34c0badb\",\"elType\":\"widget\",\"settings\":{\"sg_video_button_title\":\"Play Video\",\"sg_video_button_icon\":{\"value\":\"jki jki-play\",\"library\":\"jkiticon\"},\"sg_video_url\":\"#\",\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_width_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_line_height_responsive\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#FFD402\",\"st_button_normal_glow_color_responsive\":\"#00694361\",\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"_element_width\":\"auto\",\"__globals__\":{\"st_button_normal_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=accent\",\"st_border_normal_border_border_color\":\"\",\"st_button_hover_text_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_glow_color_responsive\":\"\"},\"st_button_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_button_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_width_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_line_height_responsive_mobile\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"st_border_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_border_normal_border_border_color\":\"#FFD027\",\"st_button_line_height_responsive_tablet\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"st_button_normal_background_background_color\":\"#006943\",\"st_button_hover_text_color_responsive\":\"#006943\",\"st_button_hover_background_background_color\":\"#FFD402\",\"sg_video_auto_play\":\"\",\"sg_video_mute\":\"\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_video_button\"},{\"id\":\"232ec8da\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Intro\",\"align\":\"right\",\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"hide_mobile\":\"hidden-mobile\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#00160E\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49b348ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"edc2dbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.00200000000000244426701101474463939666748046875,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"4e2246bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Prestige Luxury Cleanings LLC\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"139cc45f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Landscaping And Garden Care Services\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dc78e71\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"597dc67d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"26cf3840\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"3b19bda0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":167,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"980\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a46c929\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"7c4d8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Public Liability Insurance\",\"_id\":\"a978734\"},{\"text\":\"Environmentally Friendly\",\"_id\":\"1cd10a1\"},{\"text\":\"On Time, Every Time\",\"_id\":\"c6767db\"},{\"text\":\"Beautiful Garden Designs\",\"_id\":\"d4743f4\"},{\"text\":\"Modern Machinery And Tool\",\"_id\":\"535c17d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"398321ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4c7c15d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.9129999999999967030817060731351375579833984375,\"_inline_size_tablet\":100,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5683e90d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":162,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"860\",\"height\":\"980\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b6190b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":163,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"-59\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"250636f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"713aa588\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"51a71b71\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#00160E\",\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=primary\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=06a34e7\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"st_content_title_color_responsive\":\"#7F7F7F\",\"st_super_color_responsive\":\"#FFD402\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\",\"sg_setting_html_tag\":\"span\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5557874f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"73847855\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":174,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/garden-maintenance-performed-by-pro-gardener-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"b1058a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":224,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":478,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":325,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"69098afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"40\",\"bottom\":\"80\",\"left\":\"40\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"7cb7bf82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91cb5d9\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26358abf\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Have The Perfect Solution For Your Landscape Problems\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15a36cc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42c8d36c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"7114454f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"76f24ca8\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Variation Gardening\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"138cc39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"28a78a06\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Expert Landscapers\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c5ac2bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"38fdb183\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"3ce0b95b\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Affordable Price\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-save-money-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4c80f133\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"7451fb11\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Free Consultation\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-Consultancy-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e93f2c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"39a46e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"6773b2a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"87647bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Providing Services For All Your Residential And Commercial Needs.\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3d4509\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6960c5\",\"elType\":\"section\",\"settings\":{\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"20701e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"a2e2fb9\",\"elType\":\"widget\",\"settings\":{\"premium_carousel_slider_content\":[\"Service 5\",\"Service 4\",\"Service 3\",\"Service 2\",\"service 1\"],\"premium_carousel_templates_repeater\":[],\"premium_carousel_responsive_desktop\":3,\"premium_carousel_responsive_tabs\":2,\"premium_carousel_nav_options\":\"none\",\"premium_carousel_navigation_show\":\"\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"premium-carousel-widget\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30164d28\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"6e6d8a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":142,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-services.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"bd233da\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6535a16\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"937e2e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"85e7aee\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Lawn Services\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"d9723d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"c908972\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37c1cce6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":143,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/driveway-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5b3e60ba\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3b291bbf\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"20b91942\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5649f719\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Driveway Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6300b69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"256ddf68\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3735f0b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":144,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/deck-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"741128a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3691562\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"3c8a0e6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5eb1b3b9\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Deck Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"25f37292\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"61c9ff8e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d41e618\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"8781ee3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":145,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/weed-control.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"bd84c7d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"14f7965\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"fb2459e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"0582197\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Weed Control \",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"f7b0fa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"0197d9e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f3de9c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":146,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/grass-feed.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"75ba950\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"23edbf4\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"ad70b3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"b1c4ac7\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Grass Feed\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6f592ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"0043a3b\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"790dd775\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"360\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"160\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"140\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"background_overlay_color_b\":\"#000414\",\"background_overlay_image\":{\"id\":186,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/a-gardener-watering-plants-in-a-flowerbed-2RT8DWL-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"a2ed5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"7e37f762\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Landscaping\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a092069\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d5099\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need Someone To Take Care Your Garden & Lawn?\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=07ee36d\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1198756c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"66521a56\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":20,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":4,\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"1a89d099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.5090000000000003410605131648480892181396484375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"id\":191,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/happy-gardeners-with-plants-and-lawn-mower-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"space-between\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_color\":\"#FFFFFF00\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":9,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"46b821c1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":219,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":183,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"449971a9\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Make Appointment & Take Care Your Garden\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=secondary\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=93191b3\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_content_title_color_hover_responsive\":\"#FFFFFF\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#FFFFFF\",\"st_icon_color_responsive\":\"#00E5CC\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#00E5CC\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":false},{\"id\":\"13747b6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.4909999999999996589394868351519107818603515625,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1a13f42e\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"178***1721830795182\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fde8487\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"59883b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1617542a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Process\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29c7aa96\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Complete Every Step Carefully\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ced0d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d62463d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"18cf7834\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"41f79872\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-consult-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consultation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65e1b761\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"span\",\"title_color\":\"#FFD402\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#006943\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12cdbf13\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"4175d29\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-pencil_art-light\",\"library\":\"jkiticon\"},\"title_text\":\"Design Installation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2adabf01\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b628\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"569b3221\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consturction \",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"67d6b2e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6fff79c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"53c9a76e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"title_text\":\"Finished Work\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"555aace0\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d57540b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"71\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardening-background-with-garden-tolls-A9BGNJU.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"147831a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5a53d120\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"20\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Years of Experience\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"488f4727\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"6b8f6eae\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"76666759\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"6f532f9e\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"2850\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Happy Customers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"265fd738\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5473dc22\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"64\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Expert Landscapers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b38731e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"4945f2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"627cd42c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"65e3182\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.56499999999999772626324556767940521240234375,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"43108b53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Projects\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45328989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Project We Have Done\\n\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"f382082\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.49900000000000233058017329312860965728759765625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":40,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"55ecfb57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"67afcbfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.0330000000000012505552149377763271331787109375,\"_inline_size_tablet\":23,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"4989aa04\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Projects\",\"align\":\"right\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"left\",\"hover_animation\":\"float\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"32515d84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"3f5753f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"21982cfb\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":196,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Cutting-Leaf.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Cutting Leaf\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"404dc561\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"58d29b54\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":197,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Home-Garden.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Home Garden\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"3bff1dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"3c24185a\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":195,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/build-backyard.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Build Backyard\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_image_height_responsive_tablet\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b3cb58d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_image\":{\"id\":201,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-moving-aerial-photo-Z8KDGJ9-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_color\":\"#0000007D\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"79705206\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"51c9a732\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73b2fe0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"What They Says About Us\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4876e632\",\"elType\":\"widget\",\"settings\":{\"sg_layout_testimonial_choose\":\"style-2\",\"sg_testimonials_image_size_imagesize_size\":\"medium\",\"sg_testimonials_list\":[{\"sg_testimonials_list_client_avatar\":{\"id\":\"75\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/3SUMAU.jpg\"},\"_id\":\"6e9b2e1\",\"sg_testimonials_list_client_name\":\"Regan Traynor\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"76\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/CASCKD8.jpg\"},\"sg_testimonials_list_client_name\":\"Maisha Dunn\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"d069a43\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"77\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/MKLVKTE.jpg\"},\"sg_testimonials_list_client_name\":\"Reis Leonard\",\"sg_testimonials_list_designation\":\"Businessman\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"05c24f5\"}],\"st_wrapper_alignment_responsive\":\"left\",\"st_client_name_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_description_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_client_name_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_client_designation_normal_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_client_designation_normal_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=d343bdf\",\"st_rating_color_responsive\":\"\",\"st_client_name_normal_color_responsive\":\"\",\"st_quote_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_layout_background_background_color\":\"\"},\"st_layout_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_layout_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_wrapper_fix_height\":\"\",\"sg_setting_autoplay\":\"yes\",\"sg_setting_autoplay_pause\":\"\",\"sg_setting_arrow\":\"\",\"sg_setting_arrow_position\":\"middle-edge\",\"sg_setting_dots\":\"\",\"sg_setting_quote\":\"yes\",\"sg_setting_rating\":\"\",\"st_layout_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_layout_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_slide_show_responsive\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"sg_setting_quote_icon\":{\"value\":\"jki jki-quote-light\",\"library\":\"jkiticon\"},\"sg_layout_image_position\":\"below\",\"st_layout_background_background_background\":\"classic\",\"st_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position\":\"\",\"st_quote_override_position_top_responsive\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"st_quote_override_position_left_responsive\":{\"unit\":\"px\",\"size\":442,\"sizes\":[]},\"st_client_name_normal_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_quote_normal_font_size_responsive\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"st_client_image_margin_responsive\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_rating_font_size_responsive\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"st_rating_margin_right_responsive\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_setting_slide_show_responsive_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"st_wrapper_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position_top_responsive_tablet\":{\"unit\":\"px\",\"size\":249,\"sizes\":[]},\"st_quote_override_position_top_responsive_mobile\":{\"unit\":\"px\",\"size\":193,\"sizes\":[]},\"st_quote_override_position_left_responsive_tablet\":{\"unit\":\"px\",\"size\":265,\"sizes\":[]},\"st_quote_override_position_left_responsive_mobile\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]},\"st_quote_normal_font_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"st_description_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_normal_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64afd05f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"746d276b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"30338dfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f950be4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ca735b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5d6ca3ad\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_title_hover_color_responsive\":\"globals\\/colors?id=secondary\",\"st_readmore_hover_color_responsive\":\"globals\\/colors?id=secondary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#646974\",\"st_excerpt_color_responsive\":\"#646974\",\"st_title_normal_color_responsive\":\"#272B36\",\"st_thumbnail_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_title_hover_color_responsive\":\"#FA8D25\",\"st_readmore_normal_color_responsive\":\"#FA8D25\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":false}],\"isInner\":false}]'),(1908,322,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1909,322,'_elementor_pro_version','3.10.1'),(1910,323,'_elementor_edit_mode','builder'),(1911,323,'_elementor_template_type','wp-page'),(1912,323,'_elementor_version','3.23.2'),(1913,323,'_wp_page_template','default'),(1914,323,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(1915,323,'_elementor_data','[{\"id\":\"35495243\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"Eldery male gardener using scissors for bushes\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"160\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0,\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_size_tablet\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"top center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00160E\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b\":\"#00000054\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_slideshow_gallery\":[{\"id\":154,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-02-5.jpg\"},{\"id\":155,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-03-3.jpg\"},{\"id\":156,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-04-3.jpg\"},{\"id\":157,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-01-5.jpg\"}],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"739a26d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":65,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=06a34e7\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"132d1a8e\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Complete For All\",\"sg_title_focused\":\" Landscape \",\"sg_title_after\":\" Service And Maintenance\",\"sg_title_html_tag\":\"h1\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=primary\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"7c49583a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"635cb25b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"23cf340e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37.85499999999999687361196265555918216705322265625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":48,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1c4c950d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4768b6f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":62.14500000000000312638803734444081783294677734375,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"flex-start\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":52,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"34c0badb\",\"elType\":\"widget\",\"settings\":{\"sg_video_button_title\":\"Play Video\",\"sg_video_button_icon\":{\"value\":\"jki jki-play\",\"library\":\"jkiticon\"},\"sg_video_url\":\"#\",\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_width_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_line_height_responsive\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#FFD402\",\"st_button_normal_glow_color_responsive\":\"#00694361\",\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"_element_width\":\"auto\",\"__globals__\":{\"st_button_normal_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=accent\",\"st_border_normal_border_border_color\":\"\",\"st_button_hover_text_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_glow_color_responsive\":\"\"},\"st_button_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_button_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_width_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_line_height_responsive_mobile\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"st_border_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_border_normal_border_border_color\":\"#FFD027\",\"st_button_line_height_responsive_tablet\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"st_button_normal_background_background_color\":\"#006943\",\"st_button_hover_text_color_responsive\":\"#006943\",\"st_button_hover_background_background_color\":\"#FFD402\",\"sg_video_auto_play\":\"\",\"sg_video_mute\":\"\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_video_button\"},{\"id\":\"232ec8da\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Intro\",\"align\":\"right\",\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"hide_mobile\":\"hidden-mobile\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#00160E\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49b348ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"edc2dbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.00200000000000244426701101474463939666748046875,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"4e2246bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Prestige Luxury Cleanings LLC\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"139cc45f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Landscaping And Garden Care Services\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dc78e71\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"597dc67d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"26cf3840\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"3b19bda0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":167,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"980\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a46c929\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"7c4d8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Public Liability Insurance\",\"_id\":\"a978734\"},{\"text\":\"Environmentally Friendly\",\"_id\":\"1cd10a1\"},{\"text\":\"On Time, Every Time\",\"_id\":\"c6767db\"},{\"text\":\"Beautiful Garden Designs\",\"_id\":\"d4743f4\"},{\"text\":\"Modern Machinery And Tool\",\"_id\":\"535c17d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"398321ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4c7c15d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.9129999999999967030817060731351375579833984375,\"_inline_size_tablet\":100,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5683e90d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":162,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"860\",\"height\":\"980\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b6190b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":163,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"-59\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"250636f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"713aa588\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"51a71b71\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#00160E\",\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=primary\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=06a34e7\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"st_content_title_color_responsive\":\"#7F7F7F\",\"st_super_color_responsive\":\"#FFD402\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\",\"sg_setting_html_tag\":\"span\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5557874f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"73847855\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":174,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/garden-maintenance-performed-by-pro-gardener-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"b1058a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":224,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":478,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":325,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"69098afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"40\",\"bottom\":\"80\",\"left\":\"40\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"7cb7bf82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91cb5d9\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26358abf\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Have The Perfect Solution For Your Landscape Problems\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15a36cc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42c8d36c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"7114454f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"76f24ca8\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Variation Gardening\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"138cc39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"28a78a06\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Expert Landscapers\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c5ac2bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"38fdb183\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"3ce0b95b\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Affordable Price\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-save-money-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4c80f133\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"7451fb11\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Free Consultation\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-Consultancy-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e93f2c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"39a46e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"6773b2a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"87647bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Providing Services For All Your Residential And Commercial Needs.\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3d4509\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6960c5\",\"elType\":\"section\",\"settings\":{\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"20701e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"a2e2fb9\",\"elType\":\"widget\",\"settings\":{\"premium_carousel_slider_content\":[\"Service 5\",\"Service 4\",\"Service 3\",\"Service 2\",\"service 1\"],\"premium_carousel_templates_repeater\":[],\"premium_carousel_responsive_desktop\":3,\"premium_carousel_responsive_tabs\":2,\"premium_carousel_nav_options\":\"none\",\"premium_carousel_navigation_show\":\"\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"premium-carousel-widget\"},{\"id\":\"aed5322\",\"elType\":\"section\",\"settings\":{\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"5188113\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"d9b24b7\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"View All\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_text_decoration\":\"none\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_color_responsive\":\"#3F5A29\",\"st_button_normal_background_background_color\":\"#FFD402\",\"st_button_hover_color_responsive\":\"#FFD402\",\"st_button_hover_background_background_color\":\"#3F5A29\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30164d28\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"6e6d8a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":142,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-services.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"bd233da\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6535a16\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"937e2e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"85e7aee\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Lawn Services\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"d9723d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"c908972\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37c1cce6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":143,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/driveway-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5b3e60ba\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3b291bbf\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"20b91942\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5649f719\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Driveway Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6300b69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"256ddf68\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3735f0b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":144,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/deck-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"741128a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3691562\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"3c8a0e6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5eb1b3b9\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Deck Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"25f37292\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"61c9ff8e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d41e618\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"8781ee3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":145,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/weed-control.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"bd84c7d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"14f7965\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"fb2459e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"0582197\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Weed Control \",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"f7b0fa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"0197d9e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f3de9c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":146,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/grass-feed.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"75ba950\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"23edbf4\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"ad70b3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"b1c4ac7\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Grass Feed\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6f592ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"0043a3b\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"790dd775\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"360\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"160\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"140\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"background_overlay_color_b\":\"#000414\",\"background_overlay_image\":{\"id\":186,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/a-gardener-watering-plants-in-a-flowerbed-2RT8DWL-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"a2ed5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"7e37f762\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Landscaping\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a092069\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d5099\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need Someone To Take Care Your Garden & Lawn?\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=07ee36d\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1198756c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"66521a56\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":20,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":4,\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"1a89d099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.5090000000000003410605131648480892181396484375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"id\":191,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/happy-gardeners-with-plants-and-lawn-mower-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"space-between\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_color\":\"#FFFFFF00\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":9,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"46b821c1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":219,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":183,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"449971a9\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Make Appointment & Take Care Your Garden\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=secondary\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=93191b3\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_content_title_color_hover_responsive\":\"#FFFFFF\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#FFFFFF\",\"st_icon_color_responsive\":\"#00E5CC\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#00E5CC\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":false},{\"id\":\"13747b6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.4909999999999996589394868351519107818603515625,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1a13f42e\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"178***1721830795182\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fde8487\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"59883b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1617542a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Process\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29c7aa96\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Complete Every Step Carefully\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ced0d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d62463d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"18cf7834\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"41f79872\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-consult-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consultation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65e1b761\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"span\",\"title_color\":\"#FFD402\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#006943\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12cdbf13\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"4175d29\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-pencil_art-light\",\"library\":\"jkiticon\"},\"title_text\":\"Design Installation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2adabf01\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b628\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"569b3221\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consturction \",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"67d6b2e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6fff79c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"53c9a76e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"title_text\":\"Finished Work\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"555aace0\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d57540b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"71\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardening-background-with-garden-tolls-A9BGNJU.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"147831a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5a53d120\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"20\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Years of Experience\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"488f4727\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"6b8f6eae\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"76666759\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"6f532f9e\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"2850\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Happy Customers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"265fd738\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5473dc22\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"64\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Expert Landscapers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b38731e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"4945f2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"627cd42c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"65e3182\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.56499999999999772626324556767940521240234375,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"43108b53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Projects\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45328989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Project We Have Done\\n\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"f382082\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.49900000000000233058017329312860965728759765625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":40,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"55ecfb57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"67afcbfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.0330000000000012505552149377763271331787109375,\"_inline_size_tablet\":23,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"4989aa04\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Projects\",\"align\":\"right\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"left\",\"hover_animation\":\"float\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"32515d84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"3f5753f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"21982cfb\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":196,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Cutting-Leaf.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Cutting Leaf\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"404dc561\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"58d29b54\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":197,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Home-Garden.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Home Garden\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"3bff1dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"3c24185a\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":195,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/build-backyard.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Build Backyard\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_image_height_responsive_tablet\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b3cb58d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_image\":{\"id\":201,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-moving-aerial-photo-Z8KDGJ9-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_color\":\"#0000007D\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"79705206\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"51c9a732\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73b2fe0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"What They Says About Us\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4876e632\",\"elType\":\"widget\",\"settings\":{\"sg_layout_testimonial_choose\":\"style-2\",\"sg_testimonials_image_size_imagesize_size\":\"medium\",\"sg_testimonials_list\":[{\"sg_testimonials_list_client_avatar\":{\"id\":\"75\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/3SUMAU.jpg\"},\"_id\":\"6e9b2e1\",\"sg_testimonials_list_client_name\":\"Regan Traynor\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"76\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/CASCKD8.jpg\"},\"sg_testimonials_list_client_name\":\"Maisha Dunn\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"d069a43\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"77\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/MKLVKTE.jpg\"},\"sg_testimonials_list_client_name\":\"Reis Leonard\",\"sg_testimonials_list_designation\":\"Businessman\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"05c24f5\"}],\"st_wrapper_alignment_responsive\":\"left\",\"st_client_name_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_description_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_client_name_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_client_designation_normal_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_client_designation_normal_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=d343bdf\",\"st_rating_color_responsive\":\"\",\"st_client_name_normal_color_responsive\":\"\",\"st_quote_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_layout_background_background_color\":\"\"},\"st_layout_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_layout_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_wrapper_fix_height\":\"\",\"sg_setting_autoplay\":\"yes\",\"sg_setting_autoplay_pause\":\"\",\"sg_setting_arrow\":\"\",\"sg_setting_arrow_position\":\"middle-edge\",\"sg_setting_dots\":\"\",\"sg_setting_quote\":\"yes\",\"sg_setting_rating\":\"\",\"st_layout_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_layout_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_slide_show_responsive\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"sg_setting_quote_icon\":{\"value\":\"jki jki-quote-light\",\"library\":\"jkiticon\"},\"sg_layout_image_position\":\"below\",\"st_layout_background_background_background\":\"classic\",\"st_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position\":\"\",\"st_quote_override_position_top_responsive\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"st_quote_override_position_left_responsive\":{\"unit\":\"px\",\"size\":442,\"sizes\":[]},\"st_client_name_normal_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_quote_normal_font_size_responsive\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"st_client_image_margin_responsive\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_rating_font_size_responsive\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"st_rating_margin_right_responsive\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_setting_slide_show_responsive_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"st_wrapper_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position_top_responsive_tablet\":{\"unit\":\"px\",\"size\":249,\"sizes\":[]},\"st_quote_override_position_top_responsive_mobile\":{\"unit\":\"px\",\"size\":193,\"sizes\":[]},\"st_quote_override_position_left_responsive_tablet\":{\"unit\":\"px\",\"size\":265,\"sizes\":[]},\"st_quote_override_position_left_responsive_mobile\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]},\"st_quote_normal_font_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"st_description_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_normal_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64afd05f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"746d276b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"30338dfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f950be4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ca735b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5d6ca3ad\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_title_hover_color_responsive\":\"globals\\/colors?id=secondary\",\"st_readmore_hover_color_responsive\":\"globals\\/colors?id=secondary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#646974\",\"st_excerpt_color_responsive\":\"#646974\",\"st_title_normal_color_responsive\":\"#272B36\",\"st_thumbnail_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_title_hover_color_responsive\":\"#FA8D25\",\"st_readmore_normal_color_responsive\":\"#FA8D25\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":false}],\"isInner\":false}]'),(1916,323,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1917,323,'_elementor_pro_version','3.10.1'),(1919,324,'_elementor_template_type','page'),(1920,324,'_wp_page_template','default'),(1921,324,'_elementor_edit_mode','builder'),(1922,324,'_elementor_version','3.23.2'),(1923,324,'_elementor_data','[{\"id\":\"0c6040f\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\"},\"elements\":[{\"id\":\"25c989a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":143,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/driveway-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_position_tablet\":\"center center\",\"background_gradient_position_mobile\":\"center center\",\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_position_tablet\":\"center center\",\"background_hover_gradient_position_mobile\":\"center center\",\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_position_tablet\":\"center center\",\"background_overlay_gradient_position_mobile\":\"center center\",\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_position_tablet\":\"center center\",\"background_overlay_hover_gradient_position_mobile\":\"center center\"},\"elements\":[{\"id\":\"60cbe77\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ac1953d\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_position_tablet\":\"center center\",\"background_gradient_position_mobile\":\"center center\",\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_position_tablet\":\"center center\",\"background_hover_gradient_position_mobile\":\"center center\",\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_position_tablet\":\"center center\",\"background_overlay_gradient_position_mobile\":\"center center\",\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_position_tablet\":\"center center\",\"background_overlay_hover_gradient_position_mobile\":\"center center\"},\"elements\":[{\"id\":\"3303cff\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_position_tablet\":\"center center\",\"background_gradient_position_mobile\":\"center center\",\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_position_tablet\":\"center center\",\"background_hover_gradient_position_mobile\":\"center center\",\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_position_tablet\":\"center center\",\"background_overlay_gradient_position_mobile\":\"center center\",\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_position_tablet\":\"center center\",\"background_overlay_hover_gradient_position_mobile\":\"center center\"},\"elements\":[{\"id\":\"73a143d\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Driveway Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"st_general_alignment_responsive\":\"center\",\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"c0f0964\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"Book Now\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_text_decoration\":\"none\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_color_responsive\":\"#3F5A29\",\"st_button_normal_background_background_color\":\"#FFD402\",\"st_button_hover_color_responsive\":\"#FFD402\",\"st_button_hover_background_background_color\":\"#3F5A29\",\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1924,324,'_elementor_page_assets','a:0:{}'),(1925,324,'_elementor_css','a:6:{s:4:\"time\";i:1721839952;s:5:\"fonts\";a:1:{i:0;s:5:\"Inter\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1926,297,'_elementor_pro_version','3.10.1'),(1927,325,'_elementor_template_type','page'),(1928,325,'_wp_page_template','default'),(1929,325,'_elementor_edit_mode','builder'),(1930,325,'_elementor_version','3.23.2'),(1931,325,'_elementor_data','[{\"id\":\"3f4e4cb\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\"},\"elements\":[{\"id\":\"15240ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":142,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-services.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_position_tablet\":\"center center\",\"background_gradient_position_mobile\":\"center center\",\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_position_tablet\":\"center center\",\"background_hover_gradient_position_mobile\":\"center center\",\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_position_tablet\":\"center center\",\"background_overlay_gradient_position_mobile\":\"center center\",\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_position_tablet\":\"center center\",\"background_overlay_hover_gradient_position_mobile\":\"center center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"382a80a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"178f967\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_position_tablet\":\"center center\",\"background_gradient_position_mobile\":\"center center\",\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_position_tablet\":\"center center\",\"background_hover_gradient_position_mobile\":\"center center\",\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_position_tablet\":\"center center\",\"background_overlay_gradient_position_mobile\":\"center center\",\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_position_tablet\":\"center center\",\"background_overlay_hover_gradient_position_mobile\":\"center center\"},\"elements\":[{\"id\":\"707966b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_position_tablet\":\"center center\",\"background_gradient_position_mobile\":\"center center\",\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_position_tablet\":\"center center\",\"background_hover_gradient_position_mobile\":\"center center\",\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_position_tablet\":\"center center\",\"background_overlay_gradient_position_mobile\":\"center center\",\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_position_tablet\":\"center center\",\"background_overlay_hover_gradient_position_mobile\":\"center center\"},\"elements\":[{\"id\":\"017f08c\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Lawn Services\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"st_general_alignment_responsive\":\"center\",\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"c7420aa\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"Book Now\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_text_decoration\":\"none\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_color_responsive\":\"#3F5A29\",\"st_button_normal_background_background_color\":\"#FFD402\",\"st_button_hover_color_responsive\":\"#FFD402\",\"st_button_hover_background_background_color\":\"#3F5A29\",\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1932,325,'_elementor_page_assets','a:0:{}'),(1933,325,'_elementor_css','a:6:{s:4:\"time\";i:1721839954;s:5:\"fonts\";a:1:{i:0;s:5:\"Inter\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1934,292,'_elementor_pro_version','3.10.1'),(1935,326,'_elementor_template_type','page'),(1936,326,'_wp_page_template','default'),(1937,326,'_elementor_edit_mode','builder'),(1938,326,'_elementor_version','3.23.2'),(1939,326,'_elementor_data','[{\"id\":\"4a4ccc2\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\"},\"elements\":[{\"id\":\"6345ae9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":144,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/deck-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_position_tablet\":\"center center\",\"background_gradient_position_mobile\":\"center center\",\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_position_tablet\":\"center center\",\"background_hover_gradient_position_mobile\":\"center center\",\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_position_tablet\":\"center center\",\"background_overlay_gradient_position_mobile\":\"center center\",\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_position_tablet\":\"center center\",\"background_overlay_hover_gradient_position_mobile\":\"center center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d00729a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"c668e2e\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_position_tablet\":\"center center\",\"background_gradient_position_mobile\":\"center center\",\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_position_tablet\":\"center center\",\"background_hover_gradient_position_mobile\":\"center center\",\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_position_tablet\":\"center center\",\"background_overlay_gradient_position_mobile\":\"center center\",\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_position_tablet\":\"center center\",\"background_overlay_hover_gradient_position_mobile\":\"center center\"},\"elements\":[{\"id\":\"619480e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_position_tablet\":\"center center\",\"background_gradient_position_mobile\":\"center center\",\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_position_tablet\":\"center center\",\"background_hover_gradient_position_mobile\":\"center center\",\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_position_tablet\":\"center center\",\"background_overlay_gradient_position_mobile\":\"center center\",\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_position_tablet\":\"center center\",\"background_overlay_hover_gradient_position_mobile\":\"center center\"},\"elements\":[{\"id\":\"55a2e5e\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Deck Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"st_general_alignment_responsive\":\"center\",\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"8bc0638\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"Book Now\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_text_decoration\":\"none\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_color_responsive\":\"#3F5A29\",\"st_button_normal_background_background_color\":\"#FFD402\",\"st_button_hover_color_responsive\":\"#FFD402\",\"st_button_hover_background_background_color\":\"#3F5A29\",\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1940,326,'_elementor_page_assets','a:0:{}'),(1941,326,'_elementor_css','a:6:{s:4:\"time\";i:1721839951;s:5:\"fonts\";a:1:{i:0;s:5:\"Inter\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1942,299,'_elementor_pro_version','3.10.1'),(1943,327,'_elementor_template_type','page'),(1944,327,'_wp_page_template','default'),(1945,327,'_elementor_edit_mode','builder'),(1946,327,'_elementor_version','3.23.2'),(1947,327,'_elementor_data','[{\"id\":\"519f33d\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\"},\"elements\":[{\"id\":\"bedff80\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":145,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/weed-control.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_position_tablet\":\"center center\",\"background_gradient_position_mobile\":\"center center\",\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_position_tablet\":\"center center\",\"background_hover_gradient_position_mobile\":\"center center\",\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_position_tablet\":\"center center\",\"background_overlay_gradient_position_mobile\":\"center center\",\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_position_tablet\":\"center center\",\"background_overlay_hover_gradient_position_mobile\":\"center center\"},\"elements\":[{\"id\":\"8966c1b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0212ec6\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_position_tablet\":\"center center\",\"background_gradient_position_mobile\":\"center center\",\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_position_tablet\":\"center center\",\"background_hover_gradient_position_mobile\":\"center center\",\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_position_tablet\":\"center center\",\"background_overlay_gradient_position_mobile\":\"center center\",\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_position_tablet\":\"center center\",\"background_overlay_hover_gradient_position_mobile\":\"center center\"},\"elements\":[{\"id\":\"698f89c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_position_tablet\":\"center center\",\"background_gradient_position_mobile\":\"center center\",\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_position_tablet\":\"center center\",\"background_hover_gradient_position_mobile\":\"center center\",\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_position_tablet\":\"center center\",\"background_overlay_gradient_position_mobile\":\"center center\",\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_position_tablet\":\"center center\",\"background_overlay_hover_gradient_position_mobile\":\"center center\"},\"elements\":[{\"id\":\"41a0505\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Weed Control \",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"st_general_alignment_responsive\":\"center\",\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"83b3844\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"Book Now\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_text_decoration\":\"none\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_color_responsive\":\"#3F5A29\",\"st_button_normal_background_background_color\":\"#FFD402\",\"st_button_hover_color_responsive\":\"#FFD402\",\"st_button_hover_background_background_color\":\"#3F5A29\",\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1948,327,'_elementor_page_assets','a:0:{}'),(1949,327,'_elementor_css','a:6:{s:4:\"time\";i:1721839949;s:5:\"fonts\";a:1:{i:0;s:5:\"Inter\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1950,300,'_elementor_pro_version','3.10.1'),(1951,328,'_elementor_template_type','page'),(1952,328,'_wp_page_template','default'),(1953,328,'_elementor_edit_mode','builder'),(1954,328,'_elementor_version','3.23.2'),(1955,328,'_elementor_data','[{\"id\":\"a48dc8e\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\"},\"elements\":[{\"id\":\"b9923b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":146,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/grass-feed.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_position_tablet\":\"center center\",\"background_gradient_position_mobile\":\"center center\",\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_position_tablet\":\"center center\",\"background_hover_gradient_position_mobile\":\"center center\",\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_position_tablet\":\"center center\",\"background_overlay_gradient_position_mobile\":\"center center\",\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_position_tablet\":\"center center\",\"background_overlay_hover_gradient_position_mobile\":\"center center\"},\"elements\":[{\"id\":\"782d0c3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8408628\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_position_tablet\":\"center center\",\"background_gradient_position_mobile\":\"center center\",\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_position_tablet\":\"center center\",\"background_hover_gradient_position_mobile\":\"center center\",\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_position_tablet\":\"center center\",\"background_overlay_gradient_position_mobile\":\"center center\",\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_position_tablet\":\"center center\",\"background_overlay_hover_gradient_position_mobile\":\"center center\"},\"elements\":[{\"id\":\"7c4cfd0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_position_tablet\":\"center center\",\"background_gradient_position_mobile\":\"center center\",\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_position_tablet\":\"center center\",\"background_hover_gradient_position_mobile\":\"center center\",\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_position_tablet\":\"center center\",\"background_overlay_gradient_position_mobile\":\"center center\",\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_position_tablet\":\"center center\",\"background_overlay_hover_gradient_position_mobile\":\"center center\"},\"elements\":[{\"id\":\"149c89d\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Grass Feed\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"st_general_alignment_responsive\":\"center\",\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"f782f86\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"Book Now\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_text_decoration\":\"none\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_color_responsive\":\"#3F5A29\",\"st_button_normal_background_background_color\":\"#FFD402\",\"st_button_hover_color_responsive\":\"#FFD402\",\"st_button_hover_background_background_color\":\"#3F5A29\",\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1956,328,'_elementor_page_assets','a:0:{}'),(1957,328,'_elementor_css','a:6:{s:4:\"time\";i:1721839948;s:5:\"fonts\";a:1:{i:0;s:5:\"Inter\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1958,303,'_elementor_pro_version','3.10.1'),(1959,329,'_elementor_template_type','page'),(1960,329,'_wp_page_template','default'),(1961,329,'_elementor_edit_mode','builder'),(1962,329,'_elementor_version','3.23.2'),(1963,329,'_elementor_data','[{\"id\":\"0c6040f\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\"},\"elements\":[{\"id\":\"25c989a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":143,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/driveway-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_position_tablet\":\"center center\",\"background_gradient_position_mobile\":\"center center\",\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_position_tablet\":\"center center\",\"background_hover_gradient_position_mobile\":\"center center\",\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_position_tablet\":\"center center\",\"background_overlay_gradient_position_mobile\":\"center center\",\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_position_tablet\":\"center center\",\"background_overlay_hover_gradient_position_mobile\":\"center center\"},\"elements\":[{\"id\":\"60cbe77\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":330,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ac1953d\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_position_tablet\":\"center center\",\"background_gradient_position_mobile\":\"center center\",\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_position_tablet\":\"center center\",\"background_hover_gradient_position_mobile\":\"center center\",\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_position_tablet\":\"center center\",\"background_overlay_gradient_position_mobile\":\"center center\",\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_position_tablet\":\"center center\",\"background_overlay_hover_gradient_position_mobile\":\"center center\"},\"elements\":[{\"id\":\"3303cff\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_position_tablet\":\"center center\",\"background_gradient_position_mobile\":\"center center\",\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_position_tablet\":\"center center\",\"background_hover_gradient_position_mobile\":\"center center\",\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_position_tablet\":\"center center\",\"background_overlay_gradient_position_mobile\":\"center center\",\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_position_tablet\":\"center center\",\"background_overlay_hover_gradient_position_mobile\":\"center center\"},\"elements\":[{\"id\":\"73a143d\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Driveway Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"st_general_alignment_responsive\":\"center\",\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"c0f0964\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"Book Now\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_text_decoration\":\"none\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_color_responsive\":\"#3F5A29\",\"st_button_normal_background_background_color\":\"#FFD402\",\"st_button_hover_color_responsive\":\"#FFD402\",\"st_button_hover_background_background_color\":\"#3F5A29\",\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1964,329,'_elementor_page_assets','a:0:{}'),(1965,329,'_elementor_pro_version','3.10.1'),(1966,330,'_elementor_template_type','page'),(1967,330,'_wp_page_template','default'),(1968,330,'_elementor_edit_mode','builder'),(1969,330,'_elementor_version','3.23.2'),(1970,330,'_elementor_data','[{\"id\":\"0c6040f\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\"},\"elements\":[{\"id\":\"25c989a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":143,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/driveway-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_position_tablet\":\"center center\",\"background_gradient_position_mobile\":\"center center\",\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_position_tablet\":\"center center\",\"background_hover_gradient_position_mobile\":\"center center\",\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_position_tablet\":\"center center\",\"background_overlay_gradient_position_mobile\":\"center center\",\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_position_tablet\":\"center center\",\"background_overlay_hover_gradient_position_mobile\":\"center center\"},\"elements\":[{\"id\":\"60cbe77\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ac1953d\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_position_tablet\":\"center center\",\"background_gradient_position_mobile\":\"center center\",\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_position_tablet\":\"center center\",\"background_hover_gradient_position_mobile\":\"center center\",\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_position_tablet\":\"center center\",\"background_overlay_gradient_position_mobile\":\"center center\",\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_position_tablet\":\"center center\",\"background_overlay_hover_gradient_position_mobile\":\"center center\"},\"elements\":[{\"id\":\"3303cff\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_position_tablet\":\"center center\",\"background_gradient_position_mobile\":\"center center\",\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_position_tablet\":\"center center\",\"background_hover_gradient_position_mobile\":\"center center\",\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_position_tablet\":\"center center\",\"background_overlay_gradient_position_mobile\":\"center center\",\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_position_tablet\":\"center center\",\"background_overlay_hover_gradient_position_mobile\":\"center center\"},\"elements\":[{\"id\":\"73a143d\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Driveway Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"st_general_alignment_responsive\":\"center\",\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"c0f0964\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"Book Now\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_text_decoration\":\"none\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_color_responsive\":\"#3F5A29\",\"st_button_normal_background_background_color\":\"#FFD402\",\"st_button_hover_color_responsive\":\"#FFD402\",\"st_button_hover_background_background_color\":\"#3F5A29\",\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1971,330,'_elementor_page_assets','a:0:{}'),(1972,330,'_elementor_pro_version','3.10.1'),(1978,331,'_elementor_template_type','page'),(1979,331,'_wp_page_template','default'),(1980,331,'_elementor_edit_mode','builder'),(1981,331,'_elementor_version','3.23.2'),(1982,331,'_elementor_data','[{\"id\":\"0c6040f\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\"},\"elements\":[{\"id\":\"25c989a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":143,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/driveway-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_position_tablet\":\"center center\",\"background_gradient_position_mobile\":\"center center\",\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_position_tablet\":\"center center\",\"background_hover_gradient_position_mobile\":\"center center\",\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_position_tablet\":\"center center\",\"background_overlay_gradient_position_mobile\":\"center center\",\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_position_tablet\":\"center center\",\"background_overlay_hover_gradient_position_mobile\":\"center center\"},\"elements\":[{\"id\":\"60cbe77\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ac1953d\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_position_tablet\":\"center center\",\"background_gradient_position_mobile\":\"center center\",\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_position_tablet\":\"center center\",\"background_hover_gradient_position_mobile\":\"center center\",\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_position_tablet\":\"center center\",\"background_overlay_gradient_position_mobile\":\"center center\",\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_position_tablet\":\"center center\",\"background_overlay_hover_gradient_position_mobile\":\"center center\"},\"elements\":[{\"id\":\"3303cff\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_position_tablet\":\"center center\",\"background_gradient_position_mobile\":\"center center\",\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_position_tablet\":\"center center\",\"background_hover_gradient_position_mobile\":\"center center\",\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_position_tablet\":\"center center\",\"background_overlay_gradient_position_mobile\":\"center center\",\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_position_tablet\":\"center center\",\"background_overlay_hover_gradient_position_mobile\":\"center center\"},\"elements\":[{\"id\":\"73a143d\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Driveway Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"st_general_alignment_responsive\":\"center\",\"st_title_typography_content_typography_typography\":\"custom\",\"st_title_typography_content_typography_font_family\":\"Inter\",\"st_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_title_typography_content_typography_font_weight\":\"500\",\"st_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"st_title_color_responsive\":\"#00160E\",\"st_description_typography_content_typography_typography\":\"custom\",\"st_description_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"c0f0964\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"Book Now\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_text_decoration\":\"none\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_color_responsive\":\"#3F5A29\",\"st_button_normal_background_background_color\":\"#FFD402\",\"st_button_hover_color_responsive\":\"#FFD402\",\"st_button_hover_background_background_color\":\"#3F5A29\",\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1983,331,'_elementor_page_assets','a:0:{}'),(1984,331,'_elementor_pro_version','3.10.1'),(1985,331,'_elementor_css','a:6:{s:4:\"time\";i:1721844769;s:5:\"fonts\";a:1:{i:0;s:5:\"Inter\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1986,332,'_elementor_template_type','page'),(1987,332,'_wp_page_template','default'),(1988,332,'_elementor_edit_mode','builder'),(1989,332,'_elementor_version','3.23.2'),(1990,332,'_elementor_data','[{\"id\":\"3f4e4cb\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\"},\"elements\":[{\"id\":\"15240ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":142,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-services.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_position_tablet\":\"center center\",\"background_gradient_position_mobile\":\"center center\",\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_position_tablet\":\"center center\",\"background_hover_gradient_position_mobile\":\"center center\",\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_position_tablet\":\"center center\",\"background_overlay_gradient_position_mobile\":\"center center\",\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_position_tablet\":\"center center\",\"background_overlay_hover_gradient_position_mobile\":\"center center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"382a80a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"178f967\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_position_tablet\":\"center center\",\"background_gradient_position_mobile\":\"center center\",\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_position_tablet\":\"center center\",\"background_hover_gradient_position_mobile\":\"center center\",\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_position_tablet\":\"center center\",\"background_overlay_gradient_position_mobile\":\"center center\",\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_position_tablet\":\"center center\",\"background_overlay_hover_gradient_position_mobile\":\"center center\"},\"elements\":[{\"id\":\"707966b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_position_tablet\":\"center center\",\"background_gradient_position_mobile\":\"center center\",\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_position_tablet\":\"center center\",\"background_hover_gradient_position_mobile\":\"center center\",\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_position_tablet\":\"center center\",\"background_overlay_gradient_position_mobile\":\"center center\",\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_position_tablet\":\"center center\",\"background_overlay_hover_gradient_position_mobile\":\"center center\"},\"elements\":[{\"id\":\"017f08c\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Lawn Services\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"st_general_alignment_responsive\":\"center\",\"st_title_typography_content_typography_typography\":\"custom\",\"st_title_typography_content_typography_font_family\":\"Inter\",\"st_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_title_typography_content_typography_font_weight\":\"500\",\"st_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"st_title_color_responsive\":\"#00160E\",\"st_description_typography_content_typography_typography\":\"custom\",\"st_description_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"c7420aa\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"Book Now\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_text_decoration\":\"none\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_color_responsive\":\"#3F5A29\",\"st_button_normal_background_background_color\":\"#FFD402\",\"st_button_hover_color_responsive\":\"#FFD402\",\"st_button_hover_background_background_color\":\"#3F5A29\",\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1991,332,'_elementor_page_assets','a:0:{}'),(1992,332,'_elementor_pro_version','3.10.1'),(1993,332,'_elementor_css','a:6:{s:4:\"time\";i:1721844770;s:5:\"fonts\";a:1:{i:0;s:5:\"Inter\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1994,333,'_elementor_template_type','page'),(1995,333,'_wp_page_template','default'),(1996,333,'_elementor_edit_mode','builder'),(1997,333,'_elementor_version','3.23.2'),(1998,333,'_elementor_data','[{\"id\":\"4a4ccc2\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\"},\"elements\":[{\"id\":\"6345ae9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":144,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/deck-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_position_tablet\":\"center center\",\"background_gradient_position_mobile\":\"center center\",\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_position_tablet\":\"center center\",\"background_hover_gradient_position_mobile\":\"center center\",\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_position_tablet\":\"center center\",\"background_overlay_gradient_position_mobile\":\"center center\",\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_position_tablet\":\"center center\",\"background_overlay_hover_gradient_position_mobile\":\"center center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d00729a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"c668e2e\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_position_tablet\":\"center center\",\"background_gradient_position_mobile\":\"center center\",\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_position_tablet\":\"center center\",\"background_hover_gradient_position_mobile\":\"center center\",\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_position_tablet\":\"center center\",\"background_overlay_gradient_position_mobile\":\"center center\",\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_position_tablet\":\"center center\",\"background_overlay_hover_gradient_position_mobile\":\"center center\"},\"elements\":[{\"id\":\"619480e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_position_tablet\":\"center center\",\"background_gradient_position_mobile\":\"center center\",\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_position_tablet\":\"center center\",\"background_hover_gradient_position_mobile\":\"center center\",\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_position_tablet\":\"center center\",\"background_overlay_gradient_position_mobile\":\"center center\",\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_position_tablet\":\"center center\",\"background_overlay_hover_gradient_position_mobile\":\"center center\"},\"elements\":[{\"id\":\"55a2e5e\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Deck Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"st_general_alignment_responsive\":\"center\",\"st_title_typography_content_typography_typography\":\"custom\",\"st_title_typography_content_typography_font_family\":\"Inter\",\"st_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_title_typography_content_typography_font_weight\":\"500\",\"st_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"st_title_color_responsive\":\"#00160E\",\"st_description_typography_content_typography_typography\":\"custom\",\"st_description_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"8bc0638\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"Book Now\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_text_decoration\":\"none\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_color_responsive\":\"#3F5A29\",\"st_button_normal_background_background_color\":\"#FFD402\",\"st_button_hover_color_responsive\":\"#FFD402\",\"st_button_hover_background_background_color\":\"#3F5A29\",\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1999,333,'_elementor_page_assets','a:0:{}'),(2000,333,'_elementor_pro_version','3.10.1'),(2001,333,'_elementor_css','a:6:{s:4:\"time\";i:1721844769;s:5:\"fonts\";a:1:{i:0;s:5:\"Inter\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2002,334,'_elementor_template_type','page'),(2003,334,'_wp_page_template','default'),(2004,334,'_elementor_edit_mode','builder'),(2005,334,'_elementor_version','3.23.2'),(2006,334,'_elementor_data','[{\"id\":\"a48dc8e\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\"},\"elements\":[{\"id\":\"b9923b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":146,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/grass-feed.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_position_tablet\":\"center center\",\"background_gradient_position_mobile\":\"center center\",\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_position_tablet\":\"center center\",\"background_hover_gradient_position_mobile\":\"center center\",\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_position_tablet\":\"center center\",\"background_overlay_gradient_position_mobile\":\"center center\",\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_position_tablet\":\"center center\",\"background_overlay_hover_gradient_position_mobile\":\"center center\"},\"elements\":[{\"id\":\"782d0c3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8408628\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_position_tablet\":\"center center\",\"background_gradient_position_mobile\":\"center center\",\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_position_tablet\":\"center center\",\"background_hover_gradient_position_mobile\":\"center center\",\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_position_tablet\":\"center center\",\"background_overlay_gradient_position_mobile\":\"center center\",\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_position_tablet\":\"center center\",\"background_overlay_hover_gradient_position_mobile\":\"center center\"},\"elements\":[{\"id\":\"7c4cfd0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_position_tablet\":\"center center\",\"background_gradient_position_mobile\":\"center center\",\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_position_tablet\":\"center center\",\"background_hover_gradient_position_mobile\":\"center center\",\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_position_tablet\":\"center center\",\"background_overlay_gradient_position_mobile\":\"center center\",\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_position_tablet\":\"center center\",\"background_overlay_hover_gradient_position_mobile\":\"center center\"},\"elements\":[{\"id\":\"149c89d\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Grass Feed\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"st_general_alignment_responsive\":\"center\",\"st_title_typography_content_typography_typography\":\"custom\",\"st_title_typography_content_typography_font_family\":\"Inter\",\"st_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_title_typography_content_typography_font_weight\":\"500\",\"st_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"st_title_color_responsive\":\"#00160E\",\"st_description_typography_content_typography_typography\":\"custom\",\"st_description_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"f782f86\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"Book Now\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_text_decoration\":\"none\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_color_responsive\":\"#3F5A29\",\"st_button_normal_background_background_color\":\"#FFD402\",\"st_button_hover_color_responsive\":\"#FFD402\",\"st_button_hover_background_background_color\":\"#3F5A29\",\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2007,334,'_elementor_page_assets','a:0:{}'),(2008,334,'_elementor_pro_version','3.10.1'),(2009,334,'_elementor_css','a:6:{s:4:\"time\";i:1721844769;s:5:\"fonts\";a:1:{i:0;s:5:\"Inter\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2010,335,'_elementor_template_type','page'),(2011,335,'_wp_page_template','default'),(2012,335,'_elementor_edit_mode','builder'),(2013,335,'_elementor_version','3.23.2'),(2014,335,'_elementor_data','[{\"id\":\"519f33d\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\"},\"elements\":[{\"id\":\"bedff80\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":145,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/weed-control.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_position_tablet\":\"center center\",\"background_gradient_position_mobile\":\"center center\",\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_position_tablet\":\"center center\",\"background_hover_gradient_position_mobile\":\"center center\",\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_position_tablet\":\"center center\",\"background_overlay_gradient_position_mobile\":\"center center\",\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_position_tablet\":\"center center\",\"background_overlay_hover_gradient_position_mobile\":\"center center\"},\"elements\":[{\"id\":\"8966c1b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0212ec6\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_position_tablet\":\"center center\",\"background_gradient_position_mobile\":\"center center\",\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_position_tablet\":\"center center\",\"background_hover_gradient_position_mobile\":\"center center\",\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_position_tablet\":\"center center\",\"background_overlay_gradient_position_mobile\":\"center center\",\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_position_tablet\":\"center center\",\"background_overlay_hover_gradient_position_mobile\":\"center center\"},\"elements\":[{\"id\":\"698f89c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_position_tablet\":\"center center\",\"background_gradient_position_mobile\":\"center center\",\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_position_tablet\":\"center center\",\"background_hover_gradient_position_mobile\":\"center center\",\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_position_tablet\":\"center center\",\"background_overlay_gradient_position_mobile\":\"center center\",\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_position_tablet\":\"center center\",\"background_overlay_hover_gradient_position_mobile\":\"center center\"},\"elements\":[{\"id\":\"41a0505\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Weed Control \",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"st_general_alignment_responsive\":\"center\",\"st_title_typography_content_typography_typography\":\"custom\",\"st_title_typography_content_typography_font_family\":\"Inter\",\"st_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_title_typography_content_typography_font_weight\":\"500\",\"st_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"st_title_color_responsive\":\"#00160E\",\"st_description_typography_content_typography_typography\":\"custom\",\"st_description_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"83b3844\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"Book Now\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_text_decoration\":\"none\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_color_responsive\":\"#3F5A29\",\"st_button_normal_background_background_color\":\"#FFD402\",\"st_button_hover_color_responsive\":\"#FFD402\",\"st_button_hover_background_background_color\":\"#3F5A29\",\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2015,335,'_elementor_page_assets','a:0:{}'),(2016,335,'_elementor_pro_version','3.10.1'),(2017,335,'_elementor_css','a:6:{s:4:\"time\";i:1721844769;s:5:\"fonts\";a:1:{i:0;s:5:\"Inter\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2023,336,'_elementor_edit_mode','builder'),(2024,336,'_elementor_template_type','wp-page'),(2025,336,'_elementor_version','3.23.2'),(2026,336,'_wp_page_template','default'),(2027,336,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2028,336,'_elementor_data','[{\"id\":\"35495243\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"Eldery male gardener using scissors for bushes\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"160\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0,\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_size_tablet\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"top center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00160E\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b\":\"#00000054\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_slideshow_gallery\":[{\"id\":154,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-02-5.jpg\"},{\"id\":155,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-03-3.jpg\"},{\"id\":156,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-04-3.jpg\"},{\"id\":157,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-01-5.jpg\"}],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"739a26d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":65,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=06a34e7\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"132d1a8e\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Complete For All\",\"sg_title_focused\":\" Landscape \",\"sg_title_after\":\" Service And Maintenance\",\"sg_title_html_tag\":\"h1\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=primary\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"7c49583a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"635cb25b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"23cf340e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37.85499999999999687361196265555918216705322265625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":48,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1c4c950d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4768b6f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":62.14500000000000312638803734444081783294677734375,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"flex-start\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":52,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"34c0badb\",\"elType\":\"widget\",\"settings\":{\"sg_video_button_title\":\"Play Video\",\"sg_video_button_icon\":{\"value\":\"jki jki-play\",\"library\":\"jkiticon\"},\"sg_video_url\":\"#\",\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_width_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_line_height_responsive\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#FFD402\",\"st_button_normal_glow_color_responsive\":\"#00694361\",\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"_element_width\":\"auto\",\"__globals__\":{\"st_button_normal_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=accent\",\"st_border_normal_border_border_color\":\"\",\"st_button_hover_text_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_glow_color_responsive\":\"\"},\"st_button_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_button_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_width_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_line_height_responsive_mobile\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"st_border_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_border_normal_border_border_color\":\"#FFD027\",\"st_button_line_height_responsive_tablet\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"st_button_normal_background_background_color\":\"#006943\",\"st_button_hover_text_color_responsive\":\"#006943\",\"st_button_hover_background_background_color\":\"#FFD402\",\"sg_video_auto_play\":\"\",\"sg_video_mute\":\"\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_video_button\"},{\"id\":\"232ec8da\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Intro\",\"align\":\"right\",\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"hide_mobile\":\"hidden-mobile\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#00160E\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49b348ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"edc2dbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.00200000000000244426701101474463939666748046875,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"4e2246bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Prestige Luxury Cleanings LLC\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"139cc45f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Landscaping And Garden Care Services\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dc78e71\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"597dc67d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"26cf3840\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"3b19bda0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":167,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"980\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a46c929\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"7c4d8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Public Liability Insurance\",\"_id\":\"a978734\"},{\"text\":\"Environmentally Friendly\",\"_id\":\"1cd10a1\"},{\"text\":\"On Time, Every Time\",\"_id\":\"c6767db\"},{\"text\":\"Beautiful Garden Designs\",\"_id\":\"d4743f4\"},{\"text\":\"Modern Machinery And Tool\",\"_id\":\"535c17d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"398321ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4c7c15d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.9129999999999967030817060731351375579833984375,\"_inline_size_tablet\":100,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5683e90d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":162,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"860\",\"height\":\"980\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b6190b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":163,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"-59\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"250636f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"713aa588\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"51a71b71\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#00160E\",\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=primary\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=06a34e7\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"st_content_title_color_responsive\":\"#7F7F7F\",\"st_super_color_responsive\":\"#FFD402\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\",\"sg_setting_html_tag\":\"span\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5557874f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"73847855\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":174,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/garden-maintenance-performed-by-pro-gardener-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"b1058a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":224,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":478,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":325,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"69098afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"40\",\"bottom\":\"80\",\"left\":\"40\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"7cb7bf82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91cb5d9\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26358abf\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Have The Perfect Solution For Your Landscape Problems\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15a36cc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42c8d36c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"7114454f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"76f24ca8\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Variation Gardening\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"138cc39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"28a78a06\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Expert Landscapers\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c5ac2bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"38fdb183\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"3ce0b95b\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Affordable Price\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-save-money-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4c80f133\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"7451fb11\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Free Consultation\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-Consultancy-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e93f2c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"39a46e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"6773b2a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"87647bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Providing Services For All Your Residential And Commercial Needs.\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3d4509\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6960c5\",\"elType\":\"section\",\"settings\":{\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"20701e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"a2e2fb9\",\"elType\":\"widget\",\"settings\":{\"premium_carousel_slider_content\":[\"Service 5\",\"Service 4\",\"Service 3\",\"Service 2\",\"service 1\"],\"premium_carousel_templates_repeater\":[],\"premium_carousel_responsive_desktop\":3,\"premium_carousel_responsive_tabs\":2,\"premium_carousel_nav_options\":\"none\",\"premium_carousel_navigation_show\":\"\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"premium-carousel-widget\"},{\"id\":\"aed5322\",\"elType\":\"section\",\"settings\":{\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"5188113\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"d9b24b7\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"View All\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_text_decoration\":\"none\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_color_responsive\":\"#3F5A29\",\"st_button_normal_background_background_color\":\"#FFD402\",\"st_button_hover_color_responsive\":\"#FFD402\",\"st_button_hover_background_background_color\":\"#3F5A29\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30164d28\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"6e6d8a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":142,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-services.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"bd233da\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6535a16\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"937e2e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"85e7aee\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Lawn Services\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"d9723d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"c908972\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37c1cce6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":143,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/driveway-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5b3e60ba\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3b291bbf\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"20b91942\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5649f719\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Driveway Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6300b69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"256ddf68\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3735f0b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":144,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/deck-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"741128a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3691562\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"3c8a0e6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5eb1b3b9\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Deck Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"25f37292\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"61c9ff8e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d41e618\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"8781ee3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":145,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/weed-control.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"bd84c7d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"14f7965\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"fb2459e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"0582197\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Weed Control \",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"f7b0fa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"0197d9e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f3de9c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":146,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/grass-feed.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"75ba950\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"23edbf4\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"ad70b3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"b1c4ac7\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Grass Feed\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6f592ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"0043a3b\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"790dd775\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"360\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"160\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"140\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"background_overlay_color_b\":\"#000414\",\"background_overlay_image\":{\"id\":186,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/a-gardener-watering-plants-in-a-flowerbed-2RT8DWL-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"a2ed5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"7e37f762\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Landscaping\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a092069\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d5099\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need Someone To Take Care Your Garden & Lawn?\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=07ee36d\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1198756c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"66521a56\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":20,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":4,\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"1a89d099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.5090000000000003410605131648480892181396484375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"id\":191,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/happy-gardeners-with-plants-and-lawn-mower-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"space-between\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_color\":\"#FFFFFF00\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":9,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"46b821c1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":219,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":183,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"449971a9\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Make Appointment & Take Care Your Garden\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=secondary\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=93191b3\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_content_title_color_hover_responsive\":\"#FFFFFF\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#FFFFFF\",\"st_icon_color_responsive\":\"#00E5CC\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#00E5CC\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":false},{\"id\":\"13747b6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.4909999999999996589394868351519107818603515625,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1a13f42e\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"178***1721830795182\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fde8487\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"59883b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1617542a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Process\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29c7aa96\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Complete Every Step Carefully\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ced0d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d62463d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"18cf7834\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"41f79872\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-consult-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consultation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65e1b761\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"span\",\"title_color\":\"#FFD402\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#006943\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12cdbf13\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"4175d29\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-pencil_art-light\",\"library\":\"jkiticon\"},\"title_text\":\"Design Installation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2adabf01\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b628\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"569b3221\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consturction \",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"67d6b2e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6fff79c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"53c9a76e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"title_text\":\"Finished Work\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"555aace0\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d57540b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"71\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardening-background-with-garden-tolls-A9BGNJU.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"147831a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5a53d120\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"20\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Years of Experience\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"488f4727\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"6b8f6eae\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"76666759\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"6f532f9e\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"2850\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Happy Customers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"265fd738\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5473dc22\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"64\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Expert Landscapers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b38731e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"4945f2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"627cd42c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"65e3182\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.56499999999999772626324556767940521240234375,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"43108b53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Projects\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45328989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Project We Have Done\\n\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"f382082\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.49900000000000233058017329312860965728759765625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":40,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"55ecfb57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"67afcbfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.0330000000000012505552149377763271331787109375,\"_inline_size_tablet\":23,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"4989aa04\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Projects\",\"align\":\"right\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"left\",\"hover_animation\":\"float\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"32515d84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"3f5753f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"21982cfb\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":196,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Cutting-Leaf.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Cutting Leaf\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"404dc561\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"58d29b54\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":197,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Home-Garden.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Home Garden\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"3bff1dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"3c24185a\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":195,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/build-backyard.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Build Backyard\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_image_height_responsive_tablet\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b3cb58d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_image\":{\"id\":201,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-moving-aerial-photo-Z8KDGJ9-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_color\":\"#0000007D\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"79705206\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"51c9a732\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73b2fe0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"What They Says About Us\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4876e632\",\"elType\":\"widget\",\"settings\":{\"sg_layout_testimonial_choose\":\"style-2\",\"sg_testimonials_image_size_imagesize_size\":\"medium\",\"sg_testimonials_list\":[{\"sg_testimonials_list_client_avatar\":{\"id\":\"75\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/3SUMAU.jpg\"},\"_id\":\"6e9b2e1\",\"sg_testimonials_list_client_name\":\"Regan Traynor\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"76\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/CASCKD8.jpg\"},\"sg_testimonials_list_client_name\":\"Maisha Dunn\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"d069a43\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"77\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/MKLVKTE.jpg\"},\"sg_testimonials_list_client_name\":\"Reis Leonard\",\"sg_testimonials_list_designation\":\"Businessman\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"05c24f5\"}],\"st_wrapper_alignment_responsive\":\"left\",\"st_client_name_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_description_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_client_name_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_client_designation_normal_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_client_designation_normal_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=d343bdf\",\"st_rating_color_responsive\":\"\",\"st_client_name_normal_color_responsive\":\"\",\"st_quote_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_layout_background_background_color\":\"\"},\"st_layout_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_layout_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_wrapper_fix_height\":\"\",\"sg_setting_autoplay\":\"yes\",\"sg_setting_autoplay_pause\":\"\",\"sg_setting_arrow\":\"\",\"sg_setting_arrow_position\":\"middle-edge\",\"sg_setting_dots\":\"\",\"sg_setting_quote\":\"yes\",\"sg_setting_rating\":\"\",\"st_layout_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_layout_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_slide_show_responsive\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"sg_setting_quote_icon\":{\"value\":\"jki jki-quote-light\",\"library\":\"jkiticon\"},\"sg_layout_image_position\":\"below\",\"st_layout_background_background_background\":\"classic\",\"st_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position\":\"\",\"st_quote_override_position_top_responsive\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"st_quote_override_position_left_responsive\":{\"unit\":\"px\",\"size\":442,\"sizes\":[]},\"st_client_name_normal_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_quote_normal_font_size_responsive\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"st_client_image_margin_responsive\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_rating_font_size_responsive\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"st_rating_margin_right_responsive\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_setting_slide_show_responsive_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"st_wrapper_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position_top_responsive_tablet\":{\"unit\":\"px\",\"size\":249,\"sizes\":[]},\"st_quote_override_position_top_responsive_mobile\":{\"unit\":\"px\",\"size\":193,\"sizes\":[]},\"st_quote_override_position_left_responsive_tablet\":{\"unit\":\"px\",\"size\":265,\"sizes\":[]},\"st_quote_override_position_left_responsive_mobile\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]},\"st_quote_normal_font_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"st_description_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_normal_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64afd05f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"746d276b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"30338dfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f950be4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ca735b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5d6ca3ad\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_title_hover_color_responsive\":\"globals\\/colors?id=secondary\",\"st_readmore_hover_color_responsive\":\"globals\\/colors?id=secondary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#646974\",\"st_excerpt_color_responsive\":\"#646974\",\"st_title_normal_color_responsive\":\"#272B36\",\"st_thumbnail_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_title_hover_color_responsive\":\"#FA8D25\",\"st_readmore_normal_color_responsive\":\"#FA8D25\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":false}],\"isInner\":false}]'),(2029,336,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(2030,336,'_elementor_pro_version','3.10.1'),(2031,336,'_elementor_css','a:6:{s:4:\"time\";i:1721844599;s:5:\"fonts\";a:1:{i:0;s:5:\"Inter\";}s:5:\"icons\";a:3:{i:0;s:0:\"\";i:1;s:8:\"jkiticon\";i:3;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2032,337,'_elementor_edit_mode','builder'),(2033,337,'_elementor_template_type','wp-page'),(2034,337,'_elementor_version','3.23.2'),(2035,337,'_wp_page_template','default'),(2036,337,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2037,337,'_elementor_data','[{\"id\":\"35495243\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"Eldery male gardener using scissors for bushes\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"160\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0,\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_size_tablet\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"top center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00160E\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b\":\"#00000054\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_slideshow_gallery\":[{\"id\":154,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-02-5.jpg\"},{\"id\":155,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-03-3.jpg\"},{\"id\":156,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-04-3.jpg\"},{\"id\":157,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-01-5.jpg\"}],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"739a26d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":65,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=06a34e7\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"132d1a8e\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Complete For All\",\"sg_title_focused\":\" Landscape \",\"sg_title_after\":\" Service And Maintenance\",\"sg_title_html_tag\":\"h1\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=primary\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"7c49583a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"635cb25b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"23cf340e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37.85499999999999687361196265555918216705322265625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":48,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1c4c950d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4768b6f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":62.14500000000000312638803734444081783294677734375,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"flex-start\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":52,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"34c0badb\",\"elType\":\"widget\",\"settings\":{\"sg_video_button_title\":\"Play Video\",\"sg_video_button_icon\":{\"value\":\"jki jki-play\",\"library\":\"jkiticon\"},\"sg_video_url\":\"#\",\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_width_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_line_height_responsive\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#FFD402\",\"st_button_normal_glow_color_responsive\":\"#00694361\",\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"_element_width\":\"auto\",\"__globals__\":{\"st_button_normal_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=accent\",\"st_border_normal_border_border_color\":\"\",\"st_button_hover_text_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_glow_color_responsive\":\"\"},\"st_button_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_button_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_width_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_line_height_responsive_mobile\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"st_border_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_border_normal_border_border_color\":\"#FFD027\",\"st_button_line_height_responsive_tablet\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"st_button_normal_background_background_color\":\"#006943\",\"st_button_hover_text_color_responsive\":\"#006943\",\"st_button_hover_background_background_color\":\"#FFD402\",\"sg_video_auto_play\":\"\",\"sg_video_mute\":\"\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_video_button\"},{\"id\":\"232ec8da\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Intro\",\"align\":\"right\",\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"hide_mobile\":\"hidden-mobile\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#00160E\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49b348ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"edc2dbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.00200000000000244426701101474463939666748046875,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"4e2246bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Prestige Luxury Cleanings LLC\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"139cc45f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Landscaping And Garden Care Services\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dc78e71\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"597dc67d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"26cf3840\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"3b19bda0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":167,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"980\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a46c929\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"7c4d8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Public Liability Insurance\",\"_id\":\"a978734\"},{\"text\":\"Environmentally Friendly\",\"_id\":\"1cd10a1\"},{\"text\":\"On Time, Every Time\",\"_id\":\"c6767db\"},{\"text\":\"Beautiful Garden Designs\",\"_id\":\"d4743f4\"},{\"text\":\"Modern Machinery And Tool\",\"_id\":\"535c17d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"398321ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4c7c15d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.9129999999999967030817060731351375579833984375,\"_inline_size_tablet\":100,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5683e90d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":162,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"860\",\"height\":\"980\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b6190b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":163,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"-59\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"250636f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"713aa588\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"51a71b71\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#00160E\",\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=primary\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=06a34e7\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"st_content_title_color_responsive\":\"#7F7F7F\",\"st_super_color_responsive\":\"#FFD402\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\",\"sg_setting_html_tag\":\"span\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5557874f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"73847855\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":174,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/garden-maintenance-performed-by-pro-gardener-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"b1058a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":224,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":478,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":325,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"69098afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"40\",\"bottom\":\"80\",\"left\":\"40\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"7cb7bf82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91cb5d9\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26358abf\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Have The Perfect Solution For Your Landscape Problems\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15a36cc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42c8d36c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"7114454f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"76f24ca8\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Variation Gardening\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"138cc39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"28a78a06\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Expert Landscapers\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c5ac2bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"38fdb183\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"3ce0b95b\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Affordable Price\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-save-money-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4c80f133\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"7451fb11\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Free Consultation\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-Consultancy-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e93f2c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"39a46e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"6773b2a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"87647bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Providing Services For All Your Residential And Commercial Needs.\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3d4509\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6960c5\",\"elType\":\"section\",\"settings\":{\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"20701e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"a2e2fb9\",\"elType\":\"widget\",\"settings\":{\"premium_carousel_slider_content\":[\"Service 5\",\"Service 4\",\"Service 3\",\"Service 2\",\"service 1\"],\"premium_carousel_templates_repeater\":[],\"premium_carousel_responsive_desktop\":3,\"premium_carousel_responsive_tabs\":2,\"premium_carousel_nav_options\":\"none\",\"premium_carousel_navigation_show\":\"\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"premium-carousel-widget\"},{\"id\":\"aed5322\",\"elType\":\"section\",\"settings\":{\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"5188113\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"d9b24b7\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"View All\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_text_decoration\":\"none\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_color_responsive\":\"#3F5A29\",\"st_button_normal_background_background_color\":\"#FFD402\",\"st_button_hover_color_responsive\":\"#FFD402\",\"st_button_hover_background_background_color\":\"#3F5A29\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30164d28\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"6e6d8a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":142,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-services.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"bd233da\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6535a16\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"937e2e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"85e7aee\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Lawn Services\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"d9723d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"c908972\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37c1cce6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":143,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/driveway-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5b3e60ba\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3b291bbf\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"20b91942\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5649f719\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Driveway Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6300b69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"256ddf68\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3735f0b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":144,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/deck-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"741128a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3691562\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"3c8a0e6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5eb1b3b9\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Deck Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"25f37292\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"61c9ff8e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d41e618\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"8781ee3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":145,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/weed-control.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"bd84c7d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"14f7965\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"fb2459e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"0582197\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Weed Control \",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"f7b0fa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"0197d9e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f3de9c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":146,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/grass-feed.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"75ba950\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"23edbf4\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"ad70b3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"b1c4ac7\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Grass Feed\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6f592ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"0043a3b\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"790dd775\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"360\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"160\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"140\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"background_overlay_color_b\":\"#000414\",\"background_overlay_image\":{\"id\":186,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/a-gardener-watering-plants-in-a-flowerbed-2RT8DWL-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"a2ed5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"7e37f762\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Landscaping\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a092069\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d5099\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need Someone To Take Care Your Garden & Lawn?\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=07ee36d\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1198756c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"66521a56\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":20,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":4,\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"1a89d099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.5090000000000003410605131648480892181396484375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"id\":191,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/happy-gardeners-with-plants-and-lawn-mower-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"space-between\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_color\":\"#FFFFFF00\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":9,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"46b821c1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":219,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":183,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"449971a9\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Make Appointment & Take Care Your Garden\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=secondary\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=93191b3\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_content_title_color_hover_responsive\":\"#FFFFFF\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#FFFFFF\",\"st_icon_color_responsive\":\"#00E5CC\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#00E5CC\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":false},{\"id\":\"13747b6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.4909999999999996589394868351519107818603515625,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1a13f42e\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"178***1721830795182\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fde8487\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"59883b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1617542a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Process\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29c7aa96\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Complete Every Step Carefully\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ced0d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d62463d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"18cf7834\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"41f79872\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-consult-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consultation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65e1b761\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"span\",\"title_color\":\"#FFD402\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#006943\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12cdbf13\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"4175d29\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-pencil_art-light\",\"library\":\"jkiticon\"},\"title_text\":\"Design Installation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2adabf01\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b628\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"569b3221\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consturction \",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"67d6b2e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6fff79c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"53c9a76e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"title_text\":\"Finished Work\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"555aace0\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d57540b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"71\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardening-background-with-garden-tolls-A9BGNJU.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"147831a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5a53d120\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"20\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Years of Experience\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"488f4727\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"6b8f6eae\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"76666759\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"6f532f9e\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"2850\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Happy Customers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"265fd738\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5473dc22\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"64\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Expert Landscapers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b38731e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"4945f2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"627cd42c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"65e3182\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.56499999999999772626324556767940521240234375,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"43108b53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Projects\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45328989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Project We Have Done\\n\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"f382082\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.49900000000000233058017329312860965728759765625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":40,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"55ecfb57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"67afcbfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.0330000000000012505552149377763271331787109375,\"_inline_size_tablet\":23,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"4989aa04\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Projects\",\"align\":\"right\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"left\",\"hover_animation\":\"float\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"32515d84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"3f5753f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"21982cfb\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":196,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Cutting-Leaf.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Cutting Leaf\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"404dc561\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"58d29b54\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":197,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Home-Garden.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Home Garden\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"3bff1dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"3c24185a\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":195,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/build-backyard.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Build Backyard\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_image_height_responsive_tablet\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b3cb58d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_image\":{\"id\":201,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-moving-aerial-photo-Z8KDGJ9-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_color\":\"#0000007D\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"79705206\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"51c9a732\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73b2fe0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"What They Says About Us\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4876e632\",\"elType\":\"widget\",\"settings\":{\"sg_layout_testimonial_choose\":\"style-2\",\"sg_testimonials_image_size_imagesize_size\":\"medium\",\"sg_testimonials_list\":[{\"sg_testimonials_list_client_avatar\":{\"id\":\"75\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/3SUMAU.jpg\"},\"_id\":\"6e9b2e1\",\"sg_testimonials_list_client_name\":\"Regan Traynor\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"76\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/CASCKD8.jpg\"},\"sg_testimonials_list_client_name\":\"Maisha Dunn\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"d069a43\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"77\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/MKLVKTE.jpg\"},\"sg_testimonials_list_client_name\":\"Reis Leonard\",\"sg_testimonials_list_designation\":\"Businessman\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"05c24f5\"}],\"st_wrapper_alignment_responsive\":\"left\",\"st_client_name_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_description_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_client_name_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_client_designation_normal_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_client_designation_normal_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=d343bdf\",\"st_rating_color_responsive\":\"\",\"st_client_name_normal_color_responsive\":\"\",\"st_quote_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_layout_background_background_color\":\"\"},\"st_layout_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_layout_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_wrapper_fix_height\":\"\",\"sg_setting_autoplay\":\"yes\",\"sg_setting_autoplay_pause\":\"\",\"sg_setting_arrow\":\"\",\"sg_setting_arrow_position\":\"middle-edge\",\"sg_setting_dots\":\"\",\"sg_setting_quote\":\"yes\",\"sg_setting_rating\":\"\",\"st_layout_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_layout_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_slide_show_responsive\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"sg_setting_quote_icon\":{\"value\":\"jki jki-quote-light\",\"library\":\"jkiticon\"},\"sg_layout_image_position\":\"below\",\"st_layout_background_background_background\":\"classic\",\"st_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position\":\"\",\"st_quote_override_position_top_responsive\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"st_quote_override_position_left_responsive\":{\"unit\":\"px\",\"size\":442,\"sizes\":[]},\"st_client_name_normal_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_quote_normal_font_size_responsive\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"st_client_image_margin_responsive\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_rating_font_size_responsive\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"st_rating_margin_right_responsive\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_setting_slide_show_responsive_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"st_wrapper_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position_top_responsive_tablet\":{\"unit\":\"px\",\"size\":249,\"sizes\":[]},\"st_quote_override_position_top_responsive_mobile\":{\"unit\":\"px\",\"size\":193,\"sizes\":[]},\"st_quote_override_position_left_responsive_tablet\":{\"unit\":\"px\",\"size\":265,\"sizes\":[]},\"st_quote_override_position_left_responsive_mobile\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]},\"st_quote_normal_font_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"st_description_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_normal_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64afd05f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"746d276b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"30338dfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f950be4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ca735b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5d6ca3ad\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_title_hover_color_responsive\":\"globals\\/colors?id=secondary\",\"st_readmore_hover_color_responsive\":\"globals\\/colors?id=secondary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#646974\",\"st_excerpt_color_responsive\":\"#646974\",\"st_title_normal_color_responsive\":\"#272B36\",\"st_thumbnail_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_title_hover_color_responsive\":\"#FA8D25\",\"st_readmore_normal_color_responsive\":\"#FA8D25\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":false}],\"isInner\":false}]'),(2038,337,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(2039,337,'_elementor_pro_version','3.10.1'),(2040,337,'_elementor_css','a:6:{s:4:\"time\";i:1721844599;s:5:\"fonts\";a:1:{i:0;s:5:\"Inter\";}s:5:\"icons\";a:3:{i:0;s:0:\"\";i:1;s:8:\"jkiticon\";i:3;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2041,338,'_elementor_edit_mode','builder'),(2042,338,'_elementor_template_type','wp-page'),(2043,338,'_elementor_version','3.23.2'),(2044,338,'_wp_page_template','default'),(2045,338,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'); INSERT INTO `victorq_postmeta` VALUES (2046,338,'_elementor_data','[{\"id\":\"35495243\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"Eldery male gardener using scissors for bushes\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"160\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0,\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_size_tablet\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"top center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00160E\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b\":\"#00000054\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_slideshow_gallery\":[{\"id\":154,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-02-5.jpg\"},{\"id\":155,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-03-3.jpg\"},{\"id\":156,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-04-3.jpg\"},{\"id\":157,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-01-5.jpg\"}],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"739a26d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":65,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=06a34e7\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"132d1a8e\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Complete For All\",\"sg_title_focused\":\" Landscape \",\"sg_title_after\":\" Service And Maintenance\",\"sg_title_html_tag\":\"h1\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=primary\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"7c49583a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"635cb25b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"23cf340e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37.85499999999999687361196265555918216705322265625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":48,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1c4c950d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4768b6f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":62.14500000000000312638803734444081783294677734375,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"flex-start\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":52,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"34c0badb\",\"elType\":\"widget\",\"settings\":{\"sg_video_button_title\":\"Play Video\",\"sg_video_button_icon\":{\"value\":\"jki jki-play\",\"library\":\"jkiticon\"},\"sg_video_url\":\"#\",\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_width_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_line_height_responsive\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#FFD402\",\"st_button_normal_glow_color_responsive\":\"#00694361\",\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"_element_width\":\"auto\",\"__globals__\":{\"st_button_normal_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=accent\",\"st_border_normal_border_border_color\":\"\",\"st_button_hover_text_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_glow_color_responsive\":\"\"},\"st_button_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_button_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_width_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_line_height_responsive_mobile\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"st_border_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_border_normal_border_border_color\":\"#FFD027\",\"st_button_line_height_responsive_tablet\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"st_button_normal_background_background_color\":\"#006943\",\"st_button_hover_text_color_responsive\":\"#006943\",\"st_button_hover_background_background_color\":\"#FFD402\",\"sg_video_auto_play\":\"\",\"sg_video_mute\":\"\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_video_button\"},{\"id\":\"232ec8da\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Intro\",\"align\":\"right\",\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"hide_mobile\":\"hidden-mobile\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#00160E\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49b348ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"edc2dbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.00200000000000244426701101474463939666748046875,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"4e2246bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Prestige Luxury Cleanings LLC\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"139cc45f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Landscaping And Garden Care Services\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dc78e71\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"597dc67d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"26cf3840\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"3b19bda0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":167,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"980\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a46c929\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"7c4d8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Public Liability Insurance\",\"_id\":\"a978734\"},{\"text\":\"Environmentally Friendly\",\"_id\":\"1cd10a1\"},{\"text\":\"On Time, Every Time\",\"_id\":\"c6767db\"},{\"text\":\"Beautiful Garden Designs\",\"_id\":\"d4743f4\"},{\"text\":\"Modern Machinery And Tool\",\"_id\":\"535c17d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"398321ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4c7c15d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.9129999999999967030817060731351375579833984375,\"_inline_size_tablet\":100,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5683e90d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":162,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"860\",\"height\":\"980\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b6190b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":163,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"-59\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"250636f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"713aa588\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"51a71b71\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#00160E\",\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=primary\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=06a34e7\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"st_content_title_color_responsive\":\"#7F7F7F\",\"st_super_color_responsive\":\"#FFD402\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\",\"sg_setting_html_tag\":\"span\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5557874f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"73847855\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":174,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/garden-maintenance-performed-by-pro-gardener-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"b1058a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":224,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":478,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":325,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"69098afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"40\",\"bottom\":\"80\",\"left\":\"40\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"7cb7bf82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91cb5d9\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26358abf\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Have The Perfect Solution For Your Landscape Problems\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15a36cc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42c8d36c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"7114454f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"76f24ca8\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Variation Gardening\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"138cc39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"28a78a06\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Expert Landscapers\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c5ac2bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"38fdb183\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"3ce0b95b\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Affordable Price\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-save-money-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4c80f133\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"7451fb11\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Free Consultation\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-Consultancy-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e93f2c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"39a46e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"6773b2a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"87647bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Providing Services For All Your Residential And Commercial Needs.\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3d4509\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6960c5\",\"elType\":\"section\",\"settings\":{\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"20701e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"a2e2fb9\",\"elType\":\"widget\",\"settings\":{\"premium_carousel_slider_content\":[\"Service 5\",\"Service 4\",\"Service 3\",\"Service 2\",\"service 1\"],\"premium_carousel_templates_repeater\":[],\"premium_carousel_responsive_desktop\":3,\"premium_carousel_responsive_tabs\":2,\"premium_carousel_nav_options\":\"none\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"premium_carousel_autoplay_speed\":10000,\"premium_carousel_arrow_icon_prev\":\"left_arrow_chevron\",\"premium_carousel_arrow_icon_next\":\"right_arrow_chevron\",\"premium_carousel_arrow_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"premium_carousel_arrow_position\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"premium_carousel_arrows_radius_normal\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"__globals__\":{\"premium_carousel_arrow_color\":\"globals\\/colors?id=06a34e7\",\"premium_carousel_arrow_bg_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"premium-carousel-widget\"},{\"id\":\"aed5322\",\"elType\":\"section\",\"settings\":{\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"5188113\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"d9b24b7\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"View All\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_text_decoration\":\"none\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_color_responsive\":\"#3F5A29\",\"st_button_normal_background_background_color\":\"#FFD402\",\"st_button_hover_color_responsive\":\"#FFD402\",\"st_button_hover_background_background_color\":\"#3F5A29\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30164d28\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"6e6d8a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":142,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-services.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"bd233da\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6535a16\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"937e2e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"85e7aee\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Lawn Services\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"d9723d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"c908972\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37c1cce6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":143,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/driveway-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5b3e60ba\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3b291bbf\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"20b91942\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5649f719\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Driveway Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6300b69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"256ddf68\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3735f0b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":144,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/deck-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"741128a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3691562\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"3c8a0e6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5eb1b3b9\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Deck Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"25f37292\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"61c9ff8e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d41e618\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"8781ee3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":145,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/weed-control.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"bd84c7d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"14f7965\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"fb2459e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"0582197\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Weed Control \",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"f7b0fa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"0197d9e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f3de9c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":146,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/grass-feed.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"75ba950\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"23edbf4\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"ad70b3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"b1c4ac7\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Grass Feed\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6f592ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"0043a3b\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"790dd775\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"360\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"160\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"140\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"background_overlay_color_b\":\"#000414\",\"background_overlay_image\":{\"id\":186,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/a-gardener-watering-plants-in-a-flowerbed-2RT8DWL-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"a2ed5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"7e37f762\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Landscaping\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a092069\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d5099\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need Someone To Take Care Your Garden & Lawn?\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=07ee36d\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1198756c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"66521a56\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":20,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":4,\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"1a89d099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.5090000000000003410605131648480892181396484375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"id\":191,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/happy-gardeners-with-plants-and-lawn-mower-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"space-between\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_color\":\"#FFFFFF00\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":9,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"46b821c1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":219,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":183,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"449971a9\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Make Appointment & Take Care Your Garden\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=secondary\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=93191b3\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_content_title_color_hover_responsive\":\"#FFFFFF\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#FFFFFF\",\"st_icon_color_responsive\":\"#00E5CC\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#00E5CC\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":false},{\"id\":\"13747b6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.4909999999999996589394868351519107818603515625,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1a13f42e\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"178***1721830795182\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fde8487\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"59883b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1617542a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Process\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29c7aa96\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Complete Every Step Carefully\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ced0d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d62463d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"18cf7834\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"41f79872\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-consult-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consultation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65e1b761\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"span\",\"title_color\":\"#FFD402\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#006943\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12cdbf13\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"4175d29\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-pencil_art-light\",\"library\":\"jkiticon\"},\"title_text\":\"Design Installation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2adabf01\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b628\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"569b3221\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consturction \",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"67d6b2e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6fff79c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"53c9a76e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"title_text\":\"Finished Work\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"555aace0\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d57540b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"71\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardening-background-with-garden-tolls-A9BGNJU.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"147831a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5a53d120\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"20\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Years of Experience\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"488f4727\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"6b8f6eae\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"76666759\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"6f532f9e\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"2850\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Happy Customers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"265fd738\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5473dc22\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"64\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Expert Landscapers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b38731e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"4945f2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"627cd42c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"65e3182\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.56499999999999772626324556767940521240234375,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"43108b53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Projects\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45328989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Project We Have Done\\n\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"f382082\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.49900000000000233058017329312860965728759765625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":40,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"55ecfb57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"67afcbfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.0330000000000012505552149377763271331787109375,\"_inline_size_tablet\":23,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"4989aa04\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Projects\",\"align\":\"right\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"left\",\"hover_animation\":\"float\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"32515d84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"3f5753f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"21982cfb\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":196,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Cutting-Leaf.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Cutting Leaf\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"404dc561\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"58d29b54\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":197,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Home-Garden.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Home Garden\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"3bff1dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"3c24185a\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":195,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/build-backyard.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Build Backyard\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_image_height_responsive_tablet\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b3cb58d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_image\":{\"id\":201,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-moving-aerial-photo-Z8KDGJ9-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_color\":\"#0000007D\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"79705206\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"51c9a732\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73b2fe0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"What They Says About Us\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4876e632\",\"elType\":\"widget\",\"settings\":{\"sg_layout_testimonial_choose\":\"style-2\",\"sg_testimonials_image_size_imagesize_size\":\"medium\",\"sg_testimonials_list\":[{\"sg_testimonials_list_client_avatar\":{\"id\":\"75\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/3SUMAU.jpg\"},\"_id\":\"6e9b2e1\",\"sg_testimonials_list_client_name\":\"Regan Traynor\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"76\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/CASCKD8.jpg\"},\"sg_testimonials_list_client_name\":\"Maisha Dunn\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"d069a43\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"77\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/MKLVKTE.jpg\"},\"sg_testimonials_list_client_name\":\"Reis Leonard\",\"sg_testimonials_list_designation\":\"Businessman\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"05c24f5\"}],\"st_wrapper_alignment_responsive\":\"left\",\"st_client_name_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_description_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_client_name_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_client_designation_normal_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_client_designation_normal_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=d343bdf\",\"st_rating_color_responsive\":\"\",\"st_client_name_normal_color_responsive\":\"\",\"st_quote_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_layout_background_background_color\":\"\"},\"st_layout_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_layout_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_wrapper_fix_height\":\"\",\"sg_setting_autoplay\":\"yes\",\"sg_setting_autoplay_pause\":\"\",\"sg_setting_arrow\":\"\",\"sg_setting_arrow_position\":\"middle-edge\",\"sg_setting_dots\":\"\",\"sg_setting_quote\":\"yes\",\"sg_setting_rating\":\"\",\"st_layout_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_layout_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_slide_show_responsive\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"sg_setting_quote_icon\":{\"value\":\"jki jki-quote-light\",\"library\":\"jkiticon\"},\"sg_layout_image_position\":\"below\",\"st_layout_background_background_background\":\"classic\",\"st_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position\":\"\",\"st_quote_override_position_top_responsive\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"st_quote_override_position_left_responsive\":{\"unit\":\"px\",\"size\":442,\"sizes\":[]},\"st_client_name_normal_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_quote_normal_font_size_responsive\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"st_client_image_margin_responsive\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_rating_font_size_responsive\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"st_rating_margin_right_responsive\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_setting_slide_show_responsive_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"st_wrapper_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position_top_responsive_tablet\":{\"unit\":\"px\",\"size\":249,\"sizes\":[]},\"st_quote_override_position_top_responsive_mobile\":{\"unit\":\"px\",\"size\":193,\"sizes\":[]},\"st_quote_override_position_left_responsive_tablet\":{\"unit\":\"px\",\"size\":265,\"sizes\":[]},\"st_quote_override_position_left_responsive_mobile\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]},\"st_quote_normal_font_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"st_description_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_normal_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64afd05f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"746d276b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"30338dfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f950be4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ca735b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5d6ca3ad\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_title_hover_color_responsive\":\"globals\\/colors?id=secondary\",\"st_readmore_hover_color_responsive\":\"globals\\/colors?id=secondary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#646974\",\"st_excerpt_color_responsive\":\"#646974\",\"st_title_normal_color_responsive\":\"#272B36\",\"st_thumbnail_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_title_hover_color_responsive\":\"#FA8D25\",\"st_readmore_normal_color_responsive\":\"#FA8D25\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":false}],\"isInner\":false}]'),(2047,338,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(2048,338,'_elementor_pro_version','3.10.1'),(2049,338,'_elementor_css','a:6:{s:4:\"time\";i:1721844599;s:5:\"fonts\";a:1:{i:0;s:5:\"Inter\";}s:5:\"icons\";a:3:{i:0;s:0:\"\";i:1;s:8:\"jkiticon\";i:3;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2051,339,'_elementor_template_type','page'),(2052,339,'_wp_page_template','default'),(2053,339,'_elementor_edit_mode','builder'),(2054,339,'_elementor_version','3.23.2'),(2055,339,'_elementor_data','[{\"id\":\"3f4e4cb\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"15240ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":142,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-services.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_position_tablet\":\"center center\",\"background_gradient_position_mobile\":\"center center\",\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_position_tablet\":\"center center\",\"background_hover_gradient_position_mobile\":\"center center\",\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_position_tablet\":\"center center\",\"background_overlay_gradient_position_mobile\":\"center center\",\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_position_tablet\":\"center center\",\"background_overlay_hover_gradient_position_mobile\":\"center center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"382a80a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"178f967\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFFCC\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_position_tablet\":\"center center\",\"background_gradient_position_mobile\":\"center center\",\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_position_tablet\":\"center center\",\"background_hover_gradient_position_mobile\":\"center center\",\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_position_tablet\":\"center center\",\"background_overlay_gradient_position_mobile\":\"center center\",\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_position_tablet\":\"center center\",\"background_overlay_hover_gradient_position_mobile\":\"center center\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"707966b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_position_tablet\":\"center center\",\"background_gradient_position_mobile\":\"center center\",\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_position_tablet\":\"center center\",\"background_hover_gradient_position_mobile\":\"center center\",\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_position_tablet\":\"center center\",\"background_overlay_gradient_position_mobile\":\"center center\",\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_position_tablet\":\"center center\",\"background_overlay_hover_gradient_position_mobile\":\"center center\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"017f08c\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Lawn Services\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"st_general_alignment_responsive\":\"center\",\"st_title_typography_content_typography_typography\":\"custom\",\"st_title_typography_content_typography_font_family\":\"Inter\",\"st_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_title_typography_content_typography_font_weight\":\"500\",\"st_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"st_title_color_responsive\":\"#00160E\",\"st_description_typography_content_typography_typography\":\"custom\",\"st_description_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"c7420aa\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"Book Now\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_text_decoration\":\"none\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_color_responsive\":\"#3F5A29\",\"st_button_normal_background_background_color\":\"#FFD402\",\"st_button_hover_color_responsive\":\"#FFD402\",\"st_button_hover_background_background_color\":\"#3F5A29\",\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2056,339,'_elementor_page_assets','a:0:{}'),(2057,339,'_elementor_pro_version','3.10.1'),(2058,339,'_elementor_css','a:6:{s:4:\"time\";i:1721844879;s:5:\"fonts\";a:1:{i:0;s:5:\"Inter\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2059,292,'_elementor_css','a:6:{s:4:\"time\";i:1721847716;s:5:\"fonts\";a:1:{i:0;s:5:\"Inter\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2060,340,'_elementor_template_type','page'),(2061,340,'_wp_page_template','default'),(2062,340,'_elementor_edit_mode','builder'),(2063,340,'_elementor_version','3.23.2'),(2064,340,'_elementor_data','[{\"id\":\"0c6040f\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"25c989a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":143,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/driveway-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_position_tablet\":\"center center\",\"background_gradient_position_mobile\":\"center center\",\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_position_tablet\":\"center center\",\"background_hover_gradient_position_mobile\":\"center center\",\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_position_tablet\":\"center center\",\"background_overlay_gradient_position_mobile\":\"center center\",\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_position_tablet\":\"center center\",\"background_overlay_hover_gradient_position_mobile\":\"center center\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"60cbe77\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ac1953d\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFFCC\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_position_tablet\":\"center center\",\"background_gradient_position_mobile\":\"center center\",\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_position_tablet\":\"center center\",\"background_hover_gradient_position_mobile\":\"center center\",\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_position_tablet\":\"center center\",\"background_overlay_gradient_position_mobile\":\"center center\",\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_position_tablet\":\"center center\",\"background_overlay_hover_gradient_position_mobile\":\"center center\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"3303cff\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_position_tablet\":\"center center\",\"background_gradient_position_mobile\":\"center center\",\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_position_tablet\":\"center center\",\"background_hover_gradient_position_mobile\":\"center center\",\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_position_tablet\":\"center center\",\"background_overlay_gradient_position_mobile\":\"center center\",\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_position_tablet\":\"center center\",\"background_overlay_hover_gradient_position_mobile\":\"center center\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"73a143d\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Driveway Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"st_general_alignment_responsive\":\"center\",\"st_title_typography_content_typography_typography\":\"custom\",\"st_title_typography_content_typography_font_family\":\"Inter\",\"st_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_title_typography_content_typography_font_weight\":\"500\",\"st_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"st_title_color_responsive\":\"#00160E\",\"st_description_typography_content_typography_typography\":\"custom\",\"st_description_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"c0f0964\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"Book Now\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_text_decoration\":\"none\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_color_responsive\":\"#3F5A29\",\"st_button_normal_background_background_color\":\"#FFD402\",\"st_button_hover_color_responsive\":\"#FFD402\",\"st_button_hover_background_background_color\":\"#3F5A29\",\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2065,340,'_elementor_page_assets','a:0:{}'),(2066,340,'_elementor_pro_version','3.10.1'),(2067,340,'_elementor_css','a:6:{s:4:\"time\";i:1721844879;s:5:\"fonts\";a:1:{i:0;s:5:\"Inter\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2068,341,'_elementor_template_type','page'),(2069,341,'_wp_page_template','default'),(2070,341,'_elementor_edit_mode','builder'),(2071,341,'_elementor_version','3.23.2'),(2072,341,'_elementor_data','[{\"id\":\"4a4ccc2\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"6345ae9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":144,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/deck-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_position_tablet\":\"center center\",\"background_gradient_position_mobile\":\"center center\",\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_position_tablet\":\"center center\",\"background_hover_gradient_position_mobile\":\"center center\",\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_position_tablet\":\"center center\",\"background_overlay_gradient_position_mobile\":\"center center\",\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_position_tablet\":\"center center\",\"background_overlay_hover_gradient_position_mobile\":\"center center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"d00729a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"c668e2e\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFFCC\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_position_tablet\":\"center center\",\"background_gradient_position_mobile\":\"center center\",\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_position_tablet\":\"center center\",\"background_hover_gradient_position_mobile\":\"center center\",\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_position_tablet\":\"center center\",\"background_overlay_gradient_position_mobile\":\"center center\",\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_position_tablet\":\"center center\",\"background_overlay_hover_gradient_position_mobile\":\"center center\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"619480e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_position_tablet\":\"center center\",\"background_gradient_position_mobile\":\"center center\",\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_position_tablet\":\"center center\",\"background_hover_gradient_position_mobile\":\"center center\",\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_position_tablet\":\"center center\",\"background_overlay_gradient_position_mobile\":\"center center\",\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_position_tablet\":\"center center\",\"background_overlay_hover_gradient_position_mobile\":\"center center\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"55a2e5e\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Deck Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"st_general_alignment_responsive\":\"center\",\"st_title_typography_content_typography_typography\":\"custom\",\"st_title_typography_content_typography_font_family\":\"Inter\",\"st_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_title_typography_content_typography_font_weight\":\"500\",\"st_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"st_title_color_responsive\":\"#00160E\",\"st_description_typography_content_typography_typography\":\"custom\",\"st_description_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"8bc0638\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"Book Now\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_text_decoration\":\"none\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_color_responsive\":\"#3F5A29\",\"st_button_normal_background_background_color\":\"#FFD402\",\"st_button_hover_color_responsive\":\"#FFD402\",\"st_button_hover_background_background_color\":\"#3F5A29\",\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2073,341,'_elementor_page_assets','a:0:{}'),(2074,341,'_elementor_pro_version','3.10.1'),(2075,341,'_elementor_css','a:6:{s:4:\"time\";i:1721844879;s:5:\"fonts\";a:1:{i:0;s:5:\"Inter\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2076,342,'_elementor_template_type','page'),(2077,342,'_wp_page_template','default'),(2078,342,'_elementor_edit_mode','builder'),(2079,342,'_elementor_version','3.23.2'),(2080,342,'_elementor_data','[{\"id\":\"519f33d\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"bedff80\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":145,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/weed-control.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_position_tablet\":\"center center\",\"background_gradient_position_mobile\":\"center center\",\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_position_tablet\":\"center center\",\"background_hover_gradient_position_mobile\":\"center center\",\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_position_tablet\":\"center center\",\"background_overlay_gradient_position_mobile\":\"center center\",\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_position_tablet\":\"center center\",\"background_overlay_hover_gradient_position_mobile\":\"center center\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"8966c1b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"0212ec6\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFFCC\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_position_tablet\":\"center center\",\"background_gradient_position_mobile\":\"center center\",\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_position_tablet\":\"center center\",\"background_hover_gradient_position_mobile\":\"center center\",\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_position_tablet\":\"center center\",\"background_overlay_gradient_position_mobile\":\"center center\",\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_position_tablet\":\"center center\",\"background_overlay_hover_gradient_position_mobile\":\"center center\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"698f89c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_position_tablet\":\"center center\",\"background_gradient_position_mobile\":\"center center\",\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_position_tablet\":\"center center\",\"background_hover_gradient_position_mobile\":\"center center\",\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_position_tablet\":\"center center\",\"background_overlay_gradient_position_mobile\":\"center center\",\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_position_tablet\":\"center center\",\"background_overlay_hover_gradient_position_mobile\":\"center center\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"41a0505\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Weed Control \",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"st_general_alignment_responsive\":\"center\",\"st_title_typography_content_typography_typography\":\"custom\",\"st_title_typography_content_typography_font_family\":\"Inter\",\"st_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_title_typography_content_typography_font_weight\":\"500\",\"st_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"st_title_color_responsive\":\"#00160E\",\"st_description_typography_content_typography_typography\":\"custom\",\"st_description_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"83b3844\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"Book Now\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_text_decoration\":\"none\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_color_responsive\":\"#3F5A29\",\"st_button_normal_background_background_color\":\"#FFD402\",\"st_button_hover_color_responsive\":\"#FFD402\",\"st_button_hover_background_background_color\":\"#3F5A29\",\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2081,342,'_elementor_page_assets','a:0:{}'),(2082,342,'_elementor_pro_version','3.10.1'),(2083,342,'_elementor_css','a:6:{s:4:\"time\";i:1721844879;s:5:\"fonts\";a:1:{i:0;s:5:\"Inter\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2084,343,'_elementor_template_type','page'),(2085,343,'_wp_page_template','default'),(2086,343,'_elementor_edit_mode','builder'),(2087,343,'_elementor_version','3.23.2'),(2088,343,'_elementor_data','[{\"id\":\"a48dc8e\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"b9923b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":146,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/grass-feed.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_position_tablet\":\"center center\",\"background_gradient_position_mobile\":\"center center\",\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_position_tablet\":\"center center\",\"background_hover_gradient_position_mobile\":\"center center\",\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_position_tablet\":\"center center\",\"background_overlay_gradient_position_mobile\":\"center center\",\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_position_tablet\":\"center center\",\"background_overlay_hover_gradient_position_mobile\":\"center center\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"782d0c3\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"8408628\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFFCC\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_position_tablet\":\"center center\",\"background_gradient_position_mobile\":\"center center\",\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_position_tablet\":\"center center\",\"background_hover_gradient_position_mobile\":\"center center\",\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_position_tablet\":\"center center\",\"background_overlay_gradient_position_mobile\":\"center center\",\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_position_tablet\":\"center center\",\"background_overlay_hover_gradient_position_mobile\":\"center center\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"7c4cfd0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_position_tablet\":\"center center\",\"background_gradient_position_mobile\":\"center center\",\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_position_tablet\":\"center center\",\"background_hover_gradient_position_mobile\":\"center center\",\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_position_tablet\":\"center center\",\"background_overlay_gradient_position_mobile\":\"center center\",\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_position_tablet\":\"center center\",\"background_overlay_hover_gradient_position_mobile\":\"center center\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"149c89d\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Grass Feed\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"st_general_alignment_responsive\":\"center\",\"st_title_typography_content_typography_typography\":\"custom\",\"st_title_typography_content_typography_font_family\":\"Inter\",\"st_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_title_typography_content_typography_font_weight\":\"500\",\"st_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"st_title_color_responsive\":\"#00160E\",\"st_description_typography_content_typography_typography\":\"custom\",\"st_description_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"f782f86\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"Book Now\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_text_decoration\":\"none\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_color_responsive\":\"#3F5A29\",\"st_button_normal_background_background_color\":\"#FFD402\",\"st_button_hover_color_responsive\":\"#FFD402\",\"st_button_hover_background_background_color\":\"#3F5A29\",\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2089,343,'_elementor_page_assets','a:0:{}'),(2090,343,'_elementor_pro_version','3.10.1'),(2091,343,'_elementor_css','a:6:{s:4:\"time\";i:1721844878;s:5:\"fonts\";a:1:{i:0;s:5:\"Inter\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2092,303,'_elementor_css','a:6:{s:4:\"time\";i:1721847824;s:5:\"fonts\";a:1:{i:0;s:5:\"Inter\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2093,300,'_elementor_css','a:6:{s:4:\"time\";i:1721847825;s:5:\"fonts\";a:1:{i:0;s:5:\"Inter\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2094,299,'_elementor_css','a:6:{s:4:\"time\";i:1721847825;s:5:\"fonts\";a:1:{i:0;s:5:\"Inter\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2095,297,'_elementor_css','a:6:{s:4:\"time\";i:1721847825;s:5:\"fonts\";a:1:{i:0;s:5:\"Inter\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2105,345,'_wp_attached_file','2024/07/Pressure-Wash.jpg'),(2106,345,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:668;s:4:\"file\";s:25:\"2024/07/Pressure-Wash.jpg\";s:8:\"filesize\";i:223968;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"Pressure-Wash-300x196.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:196;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19107;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"Pressure-Wash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8832;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:25:\"Pressure-Wash-768x501.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:501;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:82971;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(2107,346,'_elementor_edit_mode','builder'),(2108,346,'_elementor_template_type','wp-page'),(2109,346,'_elementor_version','3.23.2'),(2110,346,'_wp_page_template','default'),(2111,346,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2112,346,'_elementor_data','[{\"id\":\"35495243\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"Eldery male gardener using scissors for bushes\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"160\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0,\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_size_tablet\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"top center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00160E\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b\":\"#00000054\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_slideshow_gallery\":[{\"id\":154,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-02-5.jpg\"},{\"id\":155,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-03-3.jpg\"},{\"id\":156,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-04-3.jpg\"},{\"id\":157,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-01-5.jpg\"}],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"739a26d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":65,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=06a34e7\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"132d1a8e\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Complete For All\",\"sg_title_focused\":\" Landscape \",\"sg_title_after\":\" Service And Maintenance\",\"sg_title_html_tag\":\"h1\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=primary\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"7c49583a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"635cb25b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"23cf340e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37.85499999999999687361196265555918216705322265625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":48,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1c4c950d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4768b6f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":62.14500000000000312638803734444081783294677734375,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"flex-start\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":52,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"34c0badb\",\"elType\":\"widget\",\"settings\":{\"sg_video_button_title\":\"Play Video\",\"sg_video_button_icon\":{\"value\":\"jki jki-play\",\"library\":\"jkiticon\"},\"sg_video_url\":\"#\",\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_width_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_line_height_responsive\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#FFD402\",\"st_button_normal_glow_color_responsive\":\"#00694361\",\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"_element_width\":\"auto\",\"__globals__\":{\"st_button_normal_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=accent\",\"st_border_normal_border_border_color\":\"\",\"st_button_hover_text_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_glow_color_responsive\":\"\"},\"st_button_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_button_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_width_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_line_height_responsive_mobile\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"st_border_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_border_normal_border_border_color\":\"#FFD027\",\"st_button_line_height_responsive_tablet\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"st_button_normal_background_background_color\":\"#006943\",\"st_button_hover_text_color_responsive\":\"#006943\",\"st_button_hover_background_background_color\":\"#FFD402\",\"sg_video_auto_play\":\"\",\"sg_video_mute\":\"\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_video_button\"},{\"id\":\"232ec8da\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Intro\",\"align\":\"right\",\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"hide_mobile\":\"hidden-mobile\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#00160E\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49b348ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"edc2dbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.00200000000000244426701101474463939666748046875,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"4e2246bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Prestige Luxury Cleanings LLC\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"139cc45f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Landscaping And Garden Care Services\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dc78e71\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"597dc67d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"26cf3840\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"3b19bda0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":167,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"980\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a46c929\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"7c4d8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Public Liability Insurance\",\"_id\":\"a978734\"},{\"text\":\"Environmentally Friendly\",\"_id\":\"1cd10a1\"},{\"text\":\"On Time, Every Time\",\"_id\":\"c6767db\"},{\"text\":\"Beautiful Garden Designs\",\"_id\":\"d4743f4\"},{\"text\":\"Modern Machinery And Tool\",\"_id\":\"535c17d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"398321ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4c7c15d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.9129999999999967030817060731351375579833984375,\"_inline_size_tablet\":100,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5683e90d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":162,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"860\",\"height\":\"980\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b6190b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":163,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"-59\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"250636f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"713aa588\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"51a71b71\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#00160E\",\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=primary\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=06a34e7\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"st_content_title_color_responsive\":\"#7F7F7F\",\"st_super_color_responsive\":\"#FFD402\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\",\"sg_setting_html_tag\":\"span\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5557874f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"73847855\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":174,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/garden-maintenance-performed-by-pro-gardener-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"b1058a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":224,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":478,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":325,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"69098afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"40\",\"bottom\":\"80\",\"left\":\"40\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"7cb7bf82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91cb5d9\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26358abf\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Have The Perfect Solution For Your Landscape Problems\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15a36cc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42c8d36c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"7114454f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"76f24ca8\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Variation Gardening\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"138cc39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"28a78a06\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Expert Landscapers\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c5ac2bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"38fdb183\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"3ce0b95b\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Affordable Price\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-save-money-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4c80f133\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"7451fb11\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Free Consultation\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-Consultancy-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e93f2c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"39a46e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"6773b2a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"87647bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Providing Services For All Your Residential And Commercial Needs.\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3d4509\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6960c5\",\"elType\":\"section\",\"settings\":{\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"20701e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"a2e2fb9\",\"elType\":\"widget\",\"settings\":{\"premium_carousel_slider_content\":[\"Service 5\",\"Service 4\",\"Service 3\",\"Service 2\",\"service 1\"],\"premium_carousel_templates_repeater\":[],\"premium_carousel_responsive_desktop\":3,\"premium_carousel_responsive_tabs\":2,\"premium_carousel_nav_options\":\"none\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"premium_carousel_autoplay_speed\":10000,\"premium_carousel_arrow_icon_prev\":\"left_arrow_chevron\",\"premium_carousel_arrow_icon_next\":\"right_arrow_chevron\",\"premium_carousel_arrow_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"premium_carousel_arrow_position\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"premium_carousel_arrows_radius_normal\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"__globals__\":{\"premium_carousel_arrow_color\":\"globals\\/colors?id=06a34e7\",\"premium_carousel_arrow_bg_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"premium-carousel-widget\"},{\"id\":\"aed5322\",\"elType\":\"section\",\"settings\":{\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"5188113\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"d9b24b7\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"View All\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_text_decoration\":\"none\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_color_responsive\":\"#3F5A29\",\"st_button_normal_background_background_color\":\"#FFD402\",\"st_button_hover_color_responsive\":\"#FFD402\",\"st_button_hover_background_background_color\":\"#3F5A29\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30164d28\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"6e6d8a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":142,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-services.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"bd233da\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6535a16\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"937e2e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"85e7aee\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Lawn Services\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"d9723d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"c908972\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37c1cce6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":143,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/driveway-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5b3e60ba\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3b291bbf\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"20b91942\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5649f719\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Driveway Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6300b69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"256ddf68\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3735f0b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":144,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/deck-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"741128a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3691562\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"3c8a0e6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5eb1b3b9\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Deck Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"25f37292\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"61c9ff8e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d41e618\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"8781ee3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":145,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/weed-control.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"bd84c7d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"14f7965\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"fb2459e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"0582197\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Weed Control \",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"f7b0fa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"0197d9e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f3de9c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":146,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/grass-feed.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"75ba950\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"23edbf4\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"ad70b3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"b1c4ac7\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Grass Feed\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6f592ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"0043a3b\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"790dd775\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"360\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"160\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"140\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"background_overlay_color_b\":\"#000414\",\"background_overlay_image\":{\"id\":186,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/a-gardener-watering-plants-in-a-flowerbed-2RT8DWL-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"a2ed5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"7e37f762\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Landscaping\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a092069\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d5099\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need Someone To Take Care Your Garden & Lawn?\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=07ee36d\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1198756c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"66521a56\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":20,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":4,\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"1a89d099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.5090000000000003410605131648480892181396484375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"id\":191,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/happy-gardeners-with-plants-and-lawn-mower-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"space-between\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_color\":\"#FFFFFF00\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":9,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"46b821c1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":219,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":183,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"449971a9\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Make Appointment & Take Care Your Garden\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=secondary\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=93191b3\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_content_title_color_hover_responsive\":\"#FFFFFF\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#FFFFFF\",\"st_icon_color_responsive\":\"#00E5CC\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#00E5CC\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":false},{\"id\":\"13747b6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.4909999999999996589394868351519107818603515625,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1a13f42e\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"178***1721830795182\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fde8487\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"59883b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1617542a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Process\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29c7aa96\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Complete Every Step Carefully\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ced0d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d62463d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"18cf7834\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"41f79872\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-consult-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consultation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65e1b761\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"span\",\"title_color\":\"#FFD402\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#006943\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12cdbf13\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"4175d29\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-pencil_art-light\",\"library\":\"jkiticon\"},\"title_text\":\"Design Installation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2adabf01\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b628\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"569b3221\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consturction \",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"67d6b2e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6fff79c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"53c9a76e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"title_text\":\"Finished Work\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"555aace0\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d57540b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"71\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardening-background-with-garden-tolls-A9BGNJU.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"147831a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5a53d120\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"20\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Years of Experience\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"488f4727\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"6b8f6eae\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"76666759\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"6f532f9e\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"2850\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Happy Customers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"265fd738\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5473dc22\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"64\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Expert Landscapers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b38731e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"4945f2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"627cd42c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"65e3182\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.56499999999999772626324556767940521240234375,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"43108b53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Projects\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45328989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Project We Have Done\\n\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"f382082\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.49900000000000233058017329312860965728759765625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":40,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"55ecfb57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"67afcbfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.0330000000000012505552149377763271331787109375,\"_inline_size_tablet\":23,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"4989aa04\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Projects\",\"align\":\"right\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"left\",\"hover_animation\":\"float\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"32515d84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"3f5753f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"21982cfb\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":196,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Cutting-Leaf.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Cutting Leaf\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"404dc561\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"58d29b54\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":197,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Home-Garden.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Home Garden\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"3bff1dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"3c24185a\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":195,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/build-backyard.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Build Backyard\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_image_height_responsive_tablet\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b3cb58d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_image\":{\"id\":201,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-moving-aerial-photo-Z8KDGJ9-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_color\":\"#0000007D\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"79705206\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"51c9a732\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73b2fe0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"What They Says About Us\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4876e632\",\"elType\":\"widget\",\"settings\":{\"sg_layout_testimonial_choose\":\"style-2\",\"sg_testimonials_image_size_imagesize_size\":\"medium\",\"sg_testimonials_list\":[{\"sg_testimonials_list_client_avatar\":{\"id\":\"75\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/3SUMAU.jpg\"},\"_id\":\"6e9b2e1\",\"sg_testimonials_list_client_name\":\"Regan Traynor\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"76\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/CASCKD8.jpg\"},\"sg_testimonials_list_client_name\":\"Maisha Dunn\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"d069a43\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"77\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/MKLVKTE.jpg\"},\"sg_testimonials_list_client_name\":\"Reis Leonard\",\"sg_testimonials_list_designation\":\"Businessman\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"05c24f5\"}],\"st_wrapper_alignment_responsive\":\"left\",\"st_client_name_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_description_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_client_name_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_client_designation_normal_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_client_designation_normal_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=d343bdf\",\"st_rating_color_responsive\":\"\",\"st_client_name_normal_color_responsive\":\"\",\"st_quote_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_layout_background_background_color\":\"\"},\"st_layout_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_layout_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_wrapper_fix_height\":\"\",\"sg_setting_autoplay\":\"yes\",\"sg_setting_autoplay_pause\":\"\",\"sg_setting_arrow\":\"\",\"sg_setting_arrow_position\":\"middle-edge\",\"sg_setting_dots\":\"\",\"sg_setting_quote\":\"yes\",\"sg_setting_rating\":\"\",\"st_layout_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_layout_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_slide_show_responsive\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"sg_setting_quote_icon\":{\"value\":\"jki jki-quote-light\",\"library\":\"jkiticon\"},\"sg_layout_image_position\":\"below\",\"st_layout_background_background_background\":\"classic\",\"st_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position\":\"\",\"st_quote_override_position_top_responsive\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"st_quote_override_position_left_responsive\":{\"unit\":\"px\",\"size\":442,\"sizes\":[]},\"st_client_name_normal_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_quote_normal_font_size_responsive\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"st_client_image_margin_responsive\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_rating_font_size_responsive\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"st_rating_margin_right_responsive\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_setting_slide_show_responsive_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"st_wrapper_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position_top_responsive_tablet\":{\"unit\":\"px\",\"size\":249,\"sizes\":[]},\"st_quote_override_position_top_responsive_mobile\":{\"unit\":\"px\",\"size\":193,\"sizes\":[]},\"st_quote_override_position_left_responsive_tablet\":{\"unit\":\"px\",\"size\":265,\"sizes\":[]},\"st_quote_override_position_left_responsive_mobile\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]},\"st_quote_normal_font_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"st_description_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_normal_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64afd05f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"746d276b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"30338dfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f950be4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ca735b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5d6ca3ad\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_title_hover_color_responsive\":\"globals\\/colors?id=secondary\",\"st_readmore_hover_color_responsive\":\"globals\\/colors?id=secondary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#646974\",\"st_excerpt_color_responsive\":\"#646974\",\"st_title_normal_color_responsive\":\"#272B36\",\"st_thumbnail_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_title_hover_color_responsive\":\"#FA8D25\",\"st_readmore_normal_color_responsive\":\"#FA8D25\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":false}],\"isInner\":false}]'),(2113,346,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(2114,346,'_elementor_pro_version','3.10.1'),(2115,347,'_elementor_edit_mode','builder'),(2116,347,'_elementor_template_type','wp-page'),(2117,347,'_elementor_version','3.23.2'),(2118,347,'_wp_page_template','default'),(2119,347,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2120,347,'_elementor_data','[{\"id\":\"35495243\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"Eldery male gardener using scissors for bushes\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"160\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0,\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_size_tablet\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"top center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00160E\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b\":\"#00000054\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_slideshow_gallery\":[{\"id\":154,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-02-5.jpg\"},{\"id\":155,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-03-3.jpg\"},{\"id\":156,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-04-3.jpg\"},{\"id\":157,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-01-5.jpg\"}],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"739a26d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":65,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=06a34e7\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"132d1a8e\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Complete For All\",\"sg_title_focused\":\" Landscape \",\"sg_title_after\":\" Service And Maintenance\",\"sg_title_html_tag\":\"h1\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=primary\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"7c49583a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"635cb25b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"23cf340e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37.85499999999999687361196265555918216705322265625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":48,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1c4c950d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4768b6f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":62.14500000000000312638803734444081783294677734375,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"flex-start\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":52,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"34c0badb\",\"elType\":\"widget\",\"settings\":{\"sg_video_button_title\":\"Play Video\",\"sg_video_button_icon\":{\"value\":\"jki jki-play\",\"library\":\"jkiticon\"},\"sg_video_url\":\"#\",\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_width_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_line_height_responsive\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#FFD402\",\"st_button_normal_glow_color_responsive\":\"#00694361\",\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"_element_width\":\"auto\",\"__globals__\":{\"st_button_normal_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=accent\",\"st_border_normal_border_border_color\":\"\",\"st_button_hover_text_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_glow_color_responsive\":\"\"},\"st_button_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_button_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_width_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_line_height_responsive_mobile\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"st_border_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_border_normal_border_border_color\":\"#FFD027\",\"st_button_line_height_responsive_tablet\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"st_button_normal_background_background_color\":\"#006943\",\"st_button_hover_text_color_responsive\":\"#006943\",\"st_button_hover_background_background_color\":\"#FFD402\",\"sg_video_auto_play\":\"\",\"sg_video_mute\":\"\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_video_button\"},{\"id\":\"232ec8da\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Intro\",\"align\":\"right\",\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"hide_mobile\":\"hidden-mobile\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#00160E\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49b348ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"edc2dbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.00200000000000244426701101474463939666748046875,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"4e2246bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Prestige Luxury Cleanings LLC\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"139cc45f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Landscaping And Garden Care Services\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dc78e71\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"597dc67d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"26cf3840\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"3b19bda0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":167,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"980\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a46c929\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"7c4d8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Public Liability Insurance\",\"_id\":\"a978734\"},{\"text\":\"Environmentally Friendly\",\"_id\":\"1cd10a1\"},{\"text\":\"On Time, Every Time\",\"_id\":\"c6767db\"},{\"text\":\"Beautiful Garden Designs\",\"_id\":\"d4743f4\"},{\"text\":\"Modern Machinery And Tool\",\"_id\":\"535c17d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"398321ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4c7c15d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.9129999999999967030817060731351375579833984375,\"_inline_size_tablet\":100,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5683e90d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":162,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"860\",\"height\":\"980\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b6190b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":163,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"-59\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"250636f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"713aa588\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"51a71b71\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#00160E\",\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=primary\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=06a34e7\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"st_content_title_color_responsive\":\"#7F7F7F\",\"st_super_color_responsive\":\"#FFD402\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\",\"sg_setting_html_tag\":\"span\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5557874f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"73847855\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":174,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/garden-maintenance-performed-by-pro-gardener-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"b1058a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":224,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":478,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":325,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"69098afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"40\",\"bottom\":\"80\",\"left\":\"40\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"7cb7bf82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91cb5d9\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26358abf\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Have The Perfect Solution For Your Landscape Problems\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15a36cc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42c8d36c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"7114454f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"76f24ca8\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Variation Gardening\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"138cc39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"28a78a06\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Expert Landscapers\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c5ac2bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"38fdb183\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"3ce0b95b\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Affordable Price\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-save-money-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4c80f133\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"7451fb11\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Free Consultation\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-Consultancy-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e93f2c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"39a46e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"6773b2a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"87647bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Providing Services For All Your Residential And Commercial Needs.\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3d4509\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6960c5\",\"elType\":\"section\",\"settings\":{\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"20701e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"a2e2fb9\",\"elType\":\"widget\",\"settings\":{\"premium_carousel_slider_content\":[\"Service 5\",\"Service 4\",\"Service 3\",\"Service 2\",\"service 1\"],\"premium_carousel_templates_repeater\":[],\"premium_carousel_responsive_desktop\":3,\"premium_carousel_responsive_tabs\":2,\"premium_carousel_nav_options\":\"none\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"premium_carousel_autoplay_speed\":10000,\"premium_carousel_arrow_icon_prev\":\"left_arrow_chevron\",\"premium_carousel_arrow_icon_next\":\"right_arrow_chevron\",\"premium_carousel_arrow_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"premium_carousel_arrow_position\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"premium_carousel_arrows_radius_normal\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"__globals__\":{\"premium_carousel_arrow_color\":\"globals\\/colors?id=06a34e7\",\"premium_carousel_arrow_bg_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"premium-carousel-widget\"},{\"id\":\"aed5322\",\"elType\":\"section\",\"settings\":{\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"5188113\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"d9b24b7\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"View All\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_text_decoration\":\"none\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_color_responsive\":\"#3F5A29\",\"st_button_normal_background_background_color\":\"#FFD402\",\"st_button_hover_color_responsive\":\"#FFD402\",\"st_button_hover_background_background_color\":\"#3F5A29\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30164d28\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"6e6d8a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":142,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-services.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"bd233da\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6535a16\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"937e2e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"85e7aee\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Lawn Services\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"d9723d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"c908972\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37c1cce6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":143,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/driveway-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5b3e60ba\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3b291bbf\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"20b91942\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5649f719\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Driveway Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6300b69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"256ddf68\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3735f0b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":144,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/deck-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"741128a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3691562\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"3c8a0e6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5eb1b3b9\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Deck Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"25f37292\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"61c9ff8e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d41e618\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"8781ee3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":145,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/weed-control.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"bd84c7d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"14f7965\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"fb2459e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"0582197\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Weed Control \",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"f7b0fa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"0197d9e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f3de9c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":146,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/grass-feed.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"75ba950\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"23edbf4\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"ad70b3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"b1c4ac7\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Grass Feed\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6f592ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"0043a3b\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"790dd775\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"360\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"160\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"140\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"background_overlay_color_b\":\"#000414\",\"background_overlay_image\":{\"id\":186,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/a-gardener-watering-plants-in-a-flowerbed-2RT8DWL-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"a2ed5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"7e37f762\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Landscaping\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a092069\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d5099\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need Someone To Take Care Your Garden & Lawn?\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=07ee36d\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1198756c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"66521a56\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":20,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":4,\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"1a89d099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.5090000000000003410605131648480892181396484375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"id\":191,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/happy-gardeners-with-plants-and-lawn-mower-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"space-between\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_color\":\"#FFFFFF00\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":9,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"46b821c1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":219,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":183,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"449971a9\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Make Appointment & Take Care Your Garden\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=secondary\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=93191b3\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_content_title_color_hover_responsive\":\"#FFFFFF\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#FFFFFF\",\"st_icon_color_responsive\":\"#00E5CC\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#00E5CC\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":false},{\"id\":\"13747b6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.4909999999999996589394868351519107818603515625,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1a13f42e\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"178***1721830795182\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fde8487\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"59883b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1617542a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Process\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29c7aa96\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Complete Every Step Carefully\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ced0d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d62463d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"18cf7834\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"41f79872\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-consult-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consultation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65e1b761\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"span\",\"title_color\":\"#FFD402\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#006943\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12cdbf13\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"4175d29\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-pencil_art-light\",\"library\":\"jkiticon\"},\"title_text\":\"Design Installation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2adabf01\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b628\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"569b3221\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consturction \",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"67d6b2e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6fff79c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"53c9a76e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"title_text\":\"Finished Work\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"555aace0\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d57540b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"71\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardening-background-with-garden-tolls-A9BGNJU.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"147831a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5a53d120\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"20\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Years of Experience\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"488f4727\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"6b8f6eae\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"76666759\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"6f532f9e\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"2850\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Happy Customers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"265fd738\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5473dc22\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"64\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Expert Landscapers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b38731e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"4945f2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"627cd42c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"65e3182\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.56499999999999772626324556767940521240234375,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"43108b53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Projects\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45328989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Project We Have Done\\n\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"f382082\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.49900000000000233058017329312860965728759765625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":40,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"55ecfb57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"67afcbfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.0330000000000012505552149377763271331787109375,\"_inline_size_tablet\":23,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"4989aa04\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Projects\",\"align\":\"right\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"left\",\"hover_animation\":\"float\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"32515d84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"3f5753f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"21982cfb\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":196,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Cutting-Leaf.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Cutting Leaf\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"404dc561\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"58d29b54\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":197,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Home-Garden.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Home Garden\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"3bff1dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"3c24185a\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":195,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/build-backyard.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Build Backyard\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_image_height_responsive_tablet\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b3cb58d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_image\":{\"id\":201,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-moving-aerial-photo-Z8KDGJ9-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_color\":\"#0000007D\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"79705206\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"51c9a732\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73b2fe0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"What They Says About Us\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4876e632\",\"elType\":\"widget\",\"settings\":{\"sg_layout_testimonial_choose\":\"style-2\",\"sg_testimonials_image_size_imagesize_size\":\"medium\",\"sg_testimonials_list\":[{\"sg_testimonials_list_client_avatar\":{\"id\":\"75\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/3SUMAU.jpg\"},\"_id\":\"6e9b2e1\",\"sg_testimonials_list_client_name\":\"Regan Traynor\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"76\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/CASCKD8.jpg\"},\"sg_testimonials_list_client_name\":\"Maisha Dunn\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"d069a43\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"77\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/MKLVKTE.jpg\"},\"sg_testimonials_list_client_name\":\"Reis Leonard\",\"sg_testimonials_list_designation\":\"Businessman\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"05c24f5\"}],\"st_wrapper_alignment_responsive\":\"left\",\"st_client_name_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_description_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_client_name_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_client_designation_normal_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_client_designation_normal_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=d343bdf\",\"st_rating_color_responsive\":\"\",\"st_client_name_normal_color_responsive\":\"\",\"st_quote_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_layout_background_background_color\":\"\"},\"st_layout_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_layout_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_wrapper_fix_height\":\"\",\"sg_setting_autoplay\":\"yes\",\"sg_setting_autoplay_pause\":\"\",\"sg_setting_arrow\":\"\",\"sg_setting_arrow_position\":\"middle-edge\",\"sg_setting_dots\":\"\",\"sg_setting_quote\":\"yes\",\"sg_setting_rating\":\"\",\"st_layout_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_layout_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_slide_show_responsive\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"sg_setting_quote_icon\":{\"value\":\"jki jki-quote-light\",\"library\":\"jkiticon\"},\"sg_layout_image_position\":\"below\",\"st_layout_background_background_background\":\"classic\",\"st_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position\":\"\",\"st_quote_override_position_top_responsive\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"st_quote_override_position_left_responsive\":{\"unit\":\"px\",\"size\":442,\"sizes\":[]},\"st_client_name_normal_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_quote_normal_font_size_responsive\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"st_client_image_margin_responsive\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_rating_font_size_responsive\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"st_rating_margin_right_responsive\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_setting_slide_show_responsive_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"st_wrapper_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position_top_responsive_tablet\":{\"unit\":\"px\",\"size\":249,\"sizes\":[]},\"st_quote_override_position_top_responsive_mobile\":{\"unit\":\"px\",\"size\":193,\"sizes\":[]},\"st_quote_override_position_left_responsive_tablet\":{\"unit\":\"px\",\"size\":265,\"sizes\":[]},\"st_quote_override_position_left_responsive_mobile\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]},\"st_quote_normal_font_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"st_description_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_normal_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64afd05f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"746d276b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"30338dfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f950be4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ca735b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5d6ca3ad\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_title_hover_color_responsive\":\"globals\\/colors?id=secondary\",\"st_readmore_hover_color_responsive\":\"globals\\/colors?id=secondary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#646974\",\"st_excerpt_color_responsive\":\"#646974\",\"st_title_normal_color_responsive\":\"#272B36\",\"st_thumbnail_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_title_hover_color_responsive\":\"#FA8D25\",\"st_readmore_normal_color_responsive\":\"#FA8D25\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":false}],\"isInner\":false}]'),(2121,347,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(2122,347,'_elementor_pro_version','3.10.1'),(2123,348,'_elementor_edit_mode','builder'),(2124,348,'_elementor_template_type','wp-page'),(2125,348,'_elementor_version','3.23.2'),(2126,348,'_wp_page_template','default'),(2127,348,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2128,348,'_elementor_data','[{\"id\":\"35495243\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"Eldery male gardener using scissors for bushes\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"160\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0,\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_size_tablet\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"top center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00160E\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b\":\"#00000054\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_slideshow_gallery\":[{\"id\":154,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-02-5.jpg\"},{\"id\":155,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-03-3.jpg\"},{\"id\":156,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-04-3.jpg\"},{\"id\":157,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-01-5.jpg\"}],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"739a26d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":65,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=06a34e7\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"132d1a8e\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"For All \",\"sg_title_focused\":\" Luxury\",\"sg_title_after\":\"Cleaning And Maintenance Services\",\"sg_title_html_tag\":\"h1\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=primary\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"7c49583a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"635cb25b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"23cf340e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37.85499999999999687361196265555918216705322265625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":48,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1c4c950d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4768b6f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":62.14500000000000312638803734444081783294677734375,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"flex-start\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":52,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"34c0badb\",\"elType\":\"widget\",\"settings\":{\"sg_video_button_title\":\"Play Video\",\"sg_video_button_icon\":{\"value\":\"jki jki-play\",\"library\":\"jkiticon\"},\"sg_video_url\":\"#\",\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_width_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_line_height_responsive\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#FFD402\",\"st_button_normal_glow_color_responsive\":\"#00694361\",\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"_element_width\":\"auto\",\"__globals__\":{\"st_button_normal_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=accent\",\"st_border_normal_border_border_color\":\"\",\"st_button_hover_text_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_glow_color_responsive\":\"\"},\"st_button_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_button_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_width_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_line_height_responsive_mobile\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"st_border_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_border_normal_border_border_color\":\"#FFD027\",\"st_button_line_height_responsive_tablet\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"st_button_normal_background_background_color\":\"#006943\",\"st_button_hover_text_color_responsive\":\"#006943\",\"st_button_hover_background_background_color\":\"#FFD402\",\"sg_video_auto_play\":\"\",\"sg_video_mute\":\"\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_video_button\"},{\"id\":\"232ec8da\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Intro\",\"align\":\"right\",\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"hide_mobile\":\"hidden-mobile\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#00160E\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49b348ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"edc2dbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.00200000000000244426701101474463939666748046875,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"4e2246bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Prestige Luxury Cleanings LLC\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"139cc45f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Lawn and Driveway Cleaning Services\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dc78e71\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"597dc67d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"26cf3840\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"3b19bda0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":167,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"980\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a46c929\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"7c4d8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Public Liability Insurance\",\"_id\":\"a978734\"},{\"text\":\"Environmentally Friendly\",\"_id\":\"1cd10a1\"},{\"text\":\"On Time, Every Time\",\"_id\":\"c6767db\"},{\"text\":\"Beautiful Garden Designs\",\"_id\":\"d4743f4\"},{\"text\":\"Modern Machinery And Tool\",\"_id\":\"535c17d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"398321ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4c7c15d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.9129999999999967030817060731351375579833984375,\"_inline_size_tablet\":100,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5683e90d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":162,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"860\",\"height\":\"980\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b6190b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":163,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"-59\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"250636f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"713aa588\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"51a71b71\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#00160E\",\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=primary\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=06a34e7\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"st_content_title_color_responsive\":\"#7F7F7F\",\"st_super_color_responsive\":\"#FFD402\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\",\"sg_setting_html_tag\":\"span\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5557874f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"73847855\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":345,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Pressure-Wash.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"b1058a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":224,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":478,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":325,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"69098afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"40\",\"bottom\":\"80\",\"left\":\"40\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"7cb7bf82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91cb5d9\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26358abf\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Have The Perfect Solution For Your Lawn and Driveway Problems\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15a36cc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42c8d36c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"7114454f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"76f24ca8\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Variation Gardening\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"138cc39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"28a78a06\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Expert Landscapers\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c5ac2bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"38fdb183\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"3ce0b95b\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Affordable Price\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-save-money-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4c80f133\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"7451fb11\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Free Consultation\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-Consultancy-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e93f2c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"39a46e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"6773b2a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"87647bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Providing Services For All Your Residential And Commercial Needs\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3d4509\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6960c5\",\"elType\":\"section\",\"settings\":{\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"20701e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"a2e2fb9\",\"elType\":\"widget\",\"settings\":{\"premium_carousel_slider_content\":[\"Service 5\",\"Service 4\",\"Service 3\",\"Service 2\",\"service 1\"],\"premium_carousel_templates_repeater\":[],\"premium_carousel_responsive_desktop\":3,\"premium_carousel_responsive_tabs\":2,\"premium_carousel_nav_options\":\"none\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"premium_carousel_autoplay_speed\":10000,\"premium_carousel_arrow_icon_prev\":\"left_arrow_chevron\",\"premium_carousel_arrow_icon_next\":\"right_arrow_chevron\",\"premium_carousel_arrow_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"premium_carousel_arrow_position\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"premium_carousel_arrows_radius_normal\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"__globals__\":{\"premium_carousel_arrow_color\":\"globals\\/colors?id=06a34e7\",\"premium_carousel_arrow_bg_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"premium-carousel-widget\"},{\"id\":\"aed5322\",\"elType\":\"section\",\"settings\":{\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"5188113\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"d9b24b7\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"View All\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_text_decoration\":\"none\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_color_responsive\":\"#3F5A29\",\"st_button_normal_background_background_color\":\"#FFD402\",\"st_button_hover_color_responsive\":\"#FFD402\",\"st_button_hover_background_background_color\":\"#3F5A29\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30164d28\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"6e6d8a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":142,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-services.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"bd233da\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6535a16\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"937e2e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"85e7aee\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Lawn Services\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"d9723d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"c908972\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37c1cce6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":143,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/driveway-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5b3e60ba\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3b291bbf\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"20b91942\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5649f719\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Driveway Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6300b69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"256ddf68\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3735f0b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":144,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/deck-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"741128a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3691562\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"3c8a0e6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5eb1b3b9\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Deck Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"25f37292\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"61c9ff8e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d41e618\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"8781ee3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":145,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/weed-control.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"bd84c7d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"14f7965\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"fb2459e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"0582197\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Weed Control \",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"f7b0fa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"0197d9e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f3de9c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":146,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/grass-feed.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"75ba950\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"23edbf4\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"ad70b3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"b1c4ac7\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Grass Feed\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6f592ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"0043a3b\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"790dd775\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"360\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"160\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"140\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"background_overlay_color_b\":\"#000414\",\"background_overlay_image\":{\"id\":186,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/a-gardener-watering-plants-in-a-flowerbed-2RT8DWL-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"a2ed5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"7e37f762\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Landscaping\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a092069\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d5099\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need Someone To Take Care Your Lawn and Driveway?\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=07ee36d\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1198756c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"66521a56\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":20,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":4,\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"1a89d099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.5090000000000003410605131648480892181396484375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"id\":191,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/happy-gardeners-with-plants-and-lawn-mower-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"space-between\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_color\":\"#FFFFFF00\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":9,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"46b821c1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":219,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":183,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"449971a9\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Make Appointment & Take Care Your Garden\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=secondary\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=93191b3\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_content_title_color_hover_responsive\":\"#FFFFFF\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#FFFFFF\",\"st_icon_color_responsive\":\"#00E5CC\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#00E5CC\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":false},{\"id\":\"13747b6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.4909999999999996589394868351519107818603515625,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1a13f42e\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"178***1721830795182\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fde8487\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"59883b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1617542a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Process\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29c7aa96\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Complete Every Step Carefully\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ced0d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d62463d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"18cf7834\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"41f79872\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-consult-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consultation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65e1b761\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"span\",\"title_color\":\"#FFD402\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#006943\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12cdbf13\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"4175d29\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-pencil_art-light\",\"library\":\"jkiticon\"},\"title_text\":\"Design Installation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2adabf01\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b628\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"569b3221\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consturction \",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"67d6b2e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6fff79c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"53c9a76e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"title_text\":\"Finished Work\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"555aace0\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d57540b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"71\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardening-background-with-garden-tolls-A9BGNJU.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"147831a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5a53d120\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"20\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Years of Experience\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"488f4727\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"6b8f6eae\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"76666759\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"6f532f9e\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"2850\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Happy Customers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"265fd738\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5473dc22\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"64\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Expert Landscapers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b38731e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"4945f2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"627cd42c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"65e3182\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.56499999999999772626324556767940521240234375,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"43108b53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Projects\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45328989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Project We Have Done\\n\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"f382082\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.49900000000000233058017329312860965728759765625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":40,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"55ecfb57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"67afcbfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.0330000000000012505552149377763271331787109375,\"_inline_size_tablet\":23,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"4989aa04\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Projects\",\"align\":\"right\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"left\",\"hover_animation\":\"float\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"32515d84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"3f5753f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"21982cfb\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":196,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Cutting-Leaf.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Cutting Leaf\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"404dc561\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"58d29b54\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":197,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Home-Garden.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Home Garden\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"3bff1dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"3c24185a\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":195,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/build-backyard.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Build Backyard\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_image_height_responsive_tablet\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b3cb58d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_image\":{\"id\":201,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-moving-aerial-photo-Z8KDGJ9-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_color\":\"#0000007D\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"79705206\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"51c9a732\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73b2fe0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"What They Says About Us\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4876e632\",\"elType\":\"widget\",\"settings\":{\"sg_layout_testimonial_choose\":\"style-2\",\"sg_testimonials_image_size_imagesize_size\":\"medium\",\"sg_testimonials_list\":[{\"sg_testimonials_list_client_avatar\":{\"id\":\"75\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/3SUMAU.jpg\"},\"_id\":\"6e9b2e1\",\"sg_testimonials_list_client_name\":\"Regan Traynor\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"76\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/CASCKD8.jpg\"},\"sg_testimonials_list_client_name\":\"Maisha Dunn\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"d069a43\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"77\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/MKLVKTE.jpg\"},\"sg_testimonials_list_client_name\":\"Reis Leonard\",\"sg_testimonials_list_designation\":\"Businessman\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"05c24f5\"}],\"st_wrapper_alignment_responsive\":\"left\",\"st_client_name_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_description_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_client_name_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_client_designation_normal_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_client_designation_normal_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=d343bdf\",\"st_rating_color_responsive\":\"\",\"st_client_name_normal_color_responsive\":\"\",\"st_quote_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_layout_background_background_color\":\"\"},\"st_layout_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_layout_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_wrapper_fix_height\":\"\",\"sg_setting_autoplay\":\"yes\",\"sg_setting_autoplay_pause\":\"\",\"sg_setting_arrow\":\"\",\"sg_setting_arrow_position\":\"middle-edge\",\"sg_setting_dots\":\"\",\"sg_setting_quote\":\"yes\",\"sg_setting_rating\":\"\",\"st_layout_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_layout_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_slide_show_responsive\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"sg_setting_quote_icon\":{\"value\":\"jki jki-quote-light\",\"library\":\"jkiticon\"},\"sg_layout_image_position\":\"below\",\"st_layout_background_background_background\":\"classic\",\"st_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position\":\"\",\"st_quote_override_position_top_responsive\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"st_quote_override_position_left_responsive\":{\"unit\":\"px\",\"size\":442,\"sizes\":[]},\"st_client_name_normal_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_quote_normal_font_size_responsive\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"st_client_image_margin_responsive\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_rating_font_size_responsive\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"st_rating_margin_right_responsive\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_setting_slide_show_responsive_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"st_wrapper_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position_top_responsive_tablet\":{\"unit\":\"px\",\"size\":249,\"sizes\":[]},\"st_quote_override_position_top_responsive_mobile\":{\"unit\":\"px\",\"size\":193,\"sizes\":[]},\"st_quote_override_position_left_responsive_tablet\":{\"unit\":\"px\",\"size\":265,\"sizes\":[]},\"st_quote_override_position_left_responsive_mobile\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]},\"st_quote_normal_font_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"st_description_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_normal_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64afd05f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"746d276b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"30338dfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f950be4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ca735b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5d6ca3ad\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_title_hover_color_responsive\":\"globals\\/colors?id=secondary\",\"st_readmore_hover_color_responsive\":\"globals\\/colors?id=secondary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#646974\",\"st_excerpt_color_responsive\":\"#646974\",\"st_title_normal_color_responsive\":\"#272B36\",\"st_thumbnail_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_title_hover_color_responsive\":\"#FA8D25\",\"st_readmore_normal_color_responsive\":\"#FA8D25\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":false}],\"isInner\":false}]'),(2129,348,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(2130,348,'_elementor_pro_version','3.10.1'),(2132,349,'_elementor_edit_mode','builder'),(2133,349,'_elementor_template_type','wp-page'),(2134,349,'_elementor_version','3.23.2'),(2135,349,'_wp_page_template','default'),(2136,349,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2137,349,'_elementor_data','[{\"id\":\"35495243\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"Eldery male gardener using scissors for bushes\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"160\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0,\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_size_tablet\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"top center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00160E\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b\":\"#00000054\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_slideshow_gallery\":[{\"id\":154,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-02-5.jpg\"},{\"id\":155,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-03-3.jpg\"},{\"id\":156,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-04-3.jpg\"},{\"id\":157,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-01-5.jpg\"}],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"739a26d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":65,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=06a34e7\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"132d1a8e\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"For All \",\"sg_title_focused\":\" Luxury\",\"sg_title_after\":\"Cleaning And Maintenance Services\",\"sg_title_html_tag\":\"h1\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=primary\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"7c49583a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"635cb25b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"23cf340e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37.85499999999999687361196265555918216705322265625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":48,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1c4c950d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4768b6f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":62.14500000000000312638803734444081783294677734375,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"flex-start\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":52,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"34c0badb\",\"elType\":\"widget\",\"settings\":{\"sg_video_button_title\":\"Play Video\",\"sg_video_button_icon\":{\"value\":\"jki jki-play\",\"library\":\"jkiticon\"},\"sg_video_url\":\"#\",\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_width_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_line_height_responsive\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#FFD402\",\"st_button_normal_glow_color_responsive\":\"#00694361\",\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"_element_width\":\"auto\",\"__globals__\":{\"st_button_normal_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=accent\",\"st_border_normal_border_border_color\":\"\",\"st_button_hover_text_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_glow_color_responsive\":\"\"},\"st_button_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_button_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_width_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_line_height_responsive_mobile\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"st_border_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_border_normal_border_border_color\":\"#FFD027\",\"st_button_line_height_responsive_tablet\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"st_button_normal_background_background_color\":\"#006943\",\"st_button_hover_text_color_responsive\":\"#006943\",\"st_button_hover_background_background_color\":\"#FFD402\",\"sg_video_auto_play\":\"\",\"sg_video_mute\":\"\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_video_button\"},{\"id\":\"232ec8da\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Intro\",\"align\":\"right\",\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"hide_mobile\":\"hidden-mobile\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#00160E\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49b348ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"edc2dbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.00200000000000244426701101474463939666748046875,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"4e2246bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Prestige Luxury Cleanings LLC\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"139cc45f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Lawn and Driveway Cleaning Services\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dc78e71\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"597dc67d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"26cf3840\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"3b19bda0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":167,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"980\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a46c929\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"7c4d8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Public Liability Insurance\",\"_id\":\"a978734\"},{\"text\":\"Environmentally Friendly\",\"_id\":\"1cd10a1\"},{\"text\":\"On Time, Every Time\",\"_id\":\"c6767db\"},{\"text\":\"Beautiful Garden Designs\",\"_id\":\"d4743f4\"},{\"text\":\"Modern Machinery And Tool\",\"_id\":\"535c17d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"398321ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4c7c15d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.9129999999999967030817060731351375579833984375,\"_inline_size_tablet\":100,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5683e90d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":162,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"860\",\"height\":\"980\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b6190b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":163,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"-59\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"250636f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"713aa588\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"51a71b71\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#00160E\",\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=primary\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=06a34e7\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"st_content_title_color_responsive\":\"#7F7F7F\",\"st_super_color_responsive\":\"#FFD402\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\",\"sg_setting_html_tag\":\"span\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5557874f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"73847855\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":345,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Pressure-Wash.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"b1058a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":224,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":478,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":325,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"69098afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"40\",\"bottom\":\"80\",\"left\":\"40\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"7cb7bf82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91cb5d9\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26358abf\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Have The Perfect Solution For Your Lawn and Driveway Problems\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15a36cc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42c8d36c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"7114454f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"76f24ca8\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Variation Gardening\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"138cc39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"28a78a06\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Expert Landscapers\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c5ac2bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"38fdb183\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"3ce0b95b\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Affordable Price\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-save-money-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4c80f133\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"7451fb11\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Free Consultation\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-Consultancy-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e93f2c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"39a46e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"6773b2a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"87647bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Providing Services For All Your Residential And Commercial Needs\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3d4509\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6960c5\",\"elType\":\"section\",\"settings\":{\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"20701e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"a2e2fb9\",\"elType\":\"widget\",\"settings\":{\"premium_carousel_slider_content\":[\"Service 5\",\"Service 4\",\"Service 3\",\"Service 2\",\"service 1\"],\"premium_carousel_templates_repeater\":[],\"premium_carousel_responsive_desktop\":3,\"premium_carousel_responsive_tabs\":2,\"premium_carousel_nav_options\":\"none\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"premium_carousel_autoplay_speed\":10000,\"premium_carousel_arrow_icon_prev\":\"left_arrow_chevron\",\"premium_carousel_arrow_icon_next\":\"right_arrow_chevron\",\"premium_carousel_arrow_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"premium_carousel_arrow_position\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"premium_carousel_arrows_radius_normal\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"__globals__\":{\"premium_carousel_arrow_color\":\"globals\\/colors?id=06a34e7\",\"premium_carousel_arrow_bg_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"premium-carousel-widget\"},{\"id\":\"aed5322\",\"elType\":\"section\",\"settings\":{\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"5188113\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"d9b24b7\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"View All\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_text_decoration\":\"none\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_color_responsive\":\"#3F5A29\",\"st_button_normal_background_background_color\":\"#FFD402\",\"st_button_hover_color_responsive\":\"#FFD402\",\"st_button_hover_background_background_color\":\"#3F5A29\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30164d28\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"6e6d8a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":142,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-services.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"bd233da\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6535a16\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"937e2e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"85e7aee\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Lawn Services\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"d9723d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"c908972\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37c1cce6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":143,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/driveway-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5b3e60ba\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3b291bbf\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"20b91942\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5649f719\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Driveway Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6300b69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"256ddf68\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3735f0b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":144,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/deck-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"741128a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3691562\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"3c8a0e6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5eb1b3b9\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Deck Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"25f37292\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"61c9ff8e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d41e618\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"8781ee3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":145,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/weed-control.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"bd84c7d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"14f7965\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"fb2459e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"0582197\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Weed Control \",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"f7b0fa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"0197d9e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f3de9c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":146,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/grass-feed.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"75ba950\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"23edbf4\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"ad70b3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"b1c4ac7\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Grass Feed\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6f592ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"0043a3b\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"790dd775\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"360\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"160\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"140\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"background_overlay_color_b\":\"#000414\",\"background_overlay_image\":{\"id\":186,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/a-gardener-watering-plants-in-a-flowerbed-2RT8DWL-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"a2ed5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"7e37f762\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Landscaping\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a092069\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d5099\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need Someone To Take Care Your Lawn and Driveway?\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=07ee36d\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1198756c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"66521a56\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":20,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":4,\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"1a89d099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.5090000000000003410605131648480892181396484375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"id\":191,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/happy-gardeners-with-plants-and-lawn-mower-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"space-between\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_color\":\"#FFFFFF00\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":9,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"46b821c1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":219,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":183,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"449971a9\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Make Appointment & Take Care Your Garden\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=secondary\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=93191b3\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_content_title_color_hover_responsive\":\"#FFFFFF\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#FFFFFF\",\"st_icon_color_responsive\":\"#00E5CC\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#00E5CC\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":false},{\"id\":\"13747b6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.4909999999999996589394868351519107818603515625,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1a13f42e\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"178***1721830795182\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fde8487\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"59883b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1617542a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Process\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29c7aa96\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Complete Every Step Carefully\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ced0d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d62463d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"18cf7834\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"41f79872\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-consult-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consultation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65e1b761\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"span\",\"title_color\":\"#FFD402\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#006943\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12cdbf13\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"4175d29\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-pencil_art-light\",\"library\":\"jkiticon\"},\"title_text\":\"Design Installation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2adabf01\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b628\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"569b3221\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consturction \",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"67d6b2e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6fff79c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"53c9a76e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"title_text\":\"Finished Work\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"555aace0\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d57540b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"71\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardening-background-with-garden-tolls-A9BGNJU.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"147831a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5a53d120\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"20\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Years of Experience\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"488f4727\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"6b8f6eae\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"76666759\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"6f532f9e\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"2850\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Happy Customers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"265fd738\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5473dc22\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"64\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Expert Landscapers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b38731e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"4945f2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"627cd42c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"65e3182\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.56499999999999772626324556767940521240234375,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"43108b53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Projects\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45328989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Project We Have Done\\n\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"f382082\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.49900000000000233058017329312860965728759765625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":40,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"55ecfb57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"67afcbfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.0330000000000012505552149377763271331787109375,\"_inline_size_tablet\":23,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"4989aa04\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Projects\",\"align\":\"right\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"left\",\"hover_animation\":\"float\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"32515d84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"3f5753f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"21982cfb\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":196,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Cutting-Leaf.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Cutting Leaf\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"404dc561\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"58d29b54\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":197,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Home-Garden.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Home Garden\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"3bff1dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"3c24185a\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":195,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/build-backyard.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Build Backyard\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_image_height_responsive_tablet\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b3cb58d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_image\":{\"id\":201,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-moving-aerial-photo-Z8KDGJ9-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_color\":\"#0000007D\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"79705206\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"51c9a732\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73b2fe0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"What They Says About Us\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4876e632\",\"elType\":\"widget\",\"settings\":{\"sg_layout_testimonial_choose\":\"style-2\",\"sg_testimonials_image_size_imagesize_size\":\"medium\",\"sg_testimonials_list\":[{\"sg_testimonials_list_client_avatar\":{\"id\":\"75\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/3SUMAU.jpg\"},\"_id\":\"6e9b2e1\",\"sg_testimonials_list_client_name\":\"Regan Traynor\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"76\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/CASCKD8.jpg\"},\"sg_testimonials_list_client_name\":\"Maisha Dunn\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"d069a43\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"77\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/MKLVKTE.jpg\"},\"sg_testimonials_list_client_name\":\"Reis Leonard\",\"sg_testimonials_list_designation\":\"Businessman\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"05c24f5\"}],\"st_wrapper_alignment_responsive\":\"left\",\"st_client_name_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_description_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_client_name_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_client_designation_normal_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_client_designation_normal_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=d343bdf\",\"st_rating_color_responsive\":\"\",\"st_client_name_normal_color_responsive\":\"\",\"st_quote_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_layout_background_background_color\":\"\"},\"st_layout_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_layout_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_wrapper_fix_height\":\"\",\"sg_setting_autoplay\":\"yes\",\"sg_setting_autoplay_pause\":\"\",\"sg_setting_arrow\":\"\",\"sg_setting_arrow_position\":\"middle-edge\",\"sg_setting_dots\":\"\",\"sg_setting_quote\":\"yes\",\"sg_setting_rating\":\"\",\"st_layout_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_layout_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_slide_show_responsive\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"sg_setting_quote_icon\":{\"value\":\"jki jki-quote-light\",\"library\":\"jkiticon\"},\"sg_layout_image_position\":\"below\",\"st_layout_background_background_background\":\"classic\",\"st_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position\":\"\",\"st_quote_override_position_top_responsive\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"st_quote_override_position_left_responsive\":{\"unit\":\"px\",\"size\":442,\"sizes\":[]},\"st_client_name_normal_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_quote_normal_font_size_responsive\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"st_client_image_margin_responsive\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_rating_font_size_responsive\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"st_rating_margin_right_responsive\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_setting_slide_show_responsive_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"st_wrapper_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position_top_responsive_tablet\":{\"unit\":\"px\",\"size\":249,\"sizes\":[]},\"st_quote_override_position_top_responsive_mobile\":{\"unit\":\"px\",\"size\":193,\"sizes\":[]},\"st_quote_override_position_left_responsive_tablet\":{\"unit\":\"px\",\"size\":265,\"sizes\":[]},\"st_quote_override_position_left_responsive_mobile\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]},\"st_quote_normal_font_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"st_description_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_normal_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64afd05f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"746d276b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"30338dfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f950be4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ca735b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5d6ca3ad\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_title_hover_color_responsive\":\"globals\\/colors?id=secondary\",\"st_readmore_hover_color_responsive\":\"globals\\/colors?id=secondary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#646974\",\"st_excerpt_color_responsive\":\"#646974\",\"st_title_normal_color_responsive\":\"#272B36\",\"st_thumbnail_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_title_hover_color_responsive\":\"#FA8D25\",\"st_readmore_normal_color_responsive\":\"#FA8D25\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":false}],\"isInner\":false}]'),(2138,349,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(2139,349,'_elementor_pro_version','3.10.1'),(2140,349,'_elementor_css','a:6:{s:4:\"time\";i:1721850883;s:5:\"fonts\";a:1:{i:0;s:5:\"Inter\";}s:5:\"icons\";a:3:{i:0;s:0:\"\";i:1;s:8:\"jkiticon\";i:3;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2141,350,'_elementor_edit_mode','builder'),(2142,350,'_elementor_template_type','wp-page'),(2143,350,'_elementor_version','3.23.2'),(2144,350,'_wp_page_template','default'),(2145,350,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'); INSERT INTO `victorq_postmeta` VALUES (2146,350,'_elementor_data','[{\"id\":\"35495243\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"Eldery male gardener using scissors for bushes\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"160\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0,\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_size_tablet\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"top center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00160E\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b\":\"#00000054\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_slideshow_gallery\":[{\"id\":154,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-02-5.jpg\"},{\"id\":155,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-03-3.jpg\"},{\"id\":156,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-04-3.jpg\"},{\"id\":157,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-01-5.jpg\"}],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"739a26d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":65,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=06a34e7\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"132d1a8e\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"For All \",\"sg_title_focused\":\" Luxury\",\"sg_title_after\":\"Cleaning And Maintenance Services\",\"sg_title_html_tag\":\"h1\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=primary\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"7c49583a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"635cb25b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"23cf340e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37.85499999999999687361196265555918216705322265625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":48,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1c4c950d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4768b6f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":62.14500000000000312638803734444081783294677734375,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"flex-start\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":52,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"34c0badb\",\"elType\":\"widget\",\"settings\":{\"sg_video_button_title\":\"Play Video\",\"sg_video_button_icon\":{\"value\":\"jki jki-play\",\"library\":\"jkiticon\"},\"sg_video_url\":\"#\",\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_width_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_line_height_responsive\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#FFD402\",\"st_button_normal_glow_color_responsive\":\"#00694361\",\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"_element_width\":\"auto\",\"__globals__\":{\"st_button_normal_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=accent\",\"st_border_normal_border_border_color\":\"\",\"st_button_hover_text_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_glow_color_responsive\":\"\"},\"st_button_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_button_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_width_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_line_height_responsive_mobile\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"st_border_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_border_normal_border_border_color\":\"#FFD027\",\"st_button_line_height_responsive_tablet\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"st_button_normal_background_background_color\":\"#006943\",\"st_button_hover_text_color_responsive\":\"#006943\",\"st_button_hover_background_background_color\":\"#FFD402\",\"sg_video_auto_play\":\"\",\"sg_video_mute\":\"\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_video_button\"},{\"id\":\"232ec8da\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Intro\",\"align\":\"right\",\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"hide_mobile\":\"hidden-mobile\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#00160E\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49b348ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"edc2dbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.00200000000000244426701101474463939666748046875,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"4e2246bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Prestige Luxury Cleanings LLC\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"139cc45f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Lawn and Driveway Cleaning Services\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dc78e71\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"597dc67d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"26cf3840\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"3b19bda0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":167,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"980\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a46c929\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"7c4d8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Public Liability Insurance\",\"_id\":\"a978734\"},{\"text\":\"Environmentally Friendly\",\"_id\":\"1cd10a1\"},{\"text\":\"On Time, Every Time\",\"_id\":\"c6767db\"},{\"text\":\"Beautiful Garden Designs\",\"_id\":\"d4743f4\"},{\"text\":\"Modern Machinery And Tool\",\"_id\":\"535c17d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"398321ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4c7c15d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.9129999999999967030817060731351375579833984375,\"_inline_size_tablet\":100,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5683e90d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":162,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"860\",\"height\":\"980\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b6190b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":163,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"-59\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"250636f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"713aa588\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"51a71b71\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#00160E\",\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=primary\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=06a34e7\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"st_content_title_color_responsive\":\"#7F7F7F\",\"st_super_color_responsive\":\"#FFD402\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\",\"sg_setting_html_tag\":\"span\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5557874f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"73847855\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":345,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Pressure-Wash.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"b1058a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":224,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":478,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":325,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"69098afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"40\",\"bottom\":\"80\",\"left\":\"40\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"7cb7bf82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91cb5d9\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26358abf\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Have The Perfect Solution For Your Lawn and Driveway Problems\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15a36cc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42c8d36c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"7114454f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"76f24ca8\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Variation Gardening\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"138cc39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"28a78a06\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Expert Landscapers\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c5ac2bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"38fdb183\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"3ce0b95b\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Affordable Price\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-save-money-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4c80f133\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"7451fb11\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Free Consultation\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-Consultancy-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e93f2c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"39a46e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"6773b2a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"87647bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Providing Services For All Your Residential And Commercial Needs\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3d4509\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6960c5\",\"elType\":\"section\",\"settings\":{\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"20701e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"a2e2fb9\",\"elType\":\"widget\",\"settings\":{\"premium_carousel_slider_content\":[\"Service 5\",\"Service 4\",\"Service 3\",\"Service 2\",\"service 1\"],\"premium_carousel_templates_repeater\":[],\"premium_carousel_responsive_desktop\":3,\"premium_carousel_responsive_tabs\":2,\"premium_carousel_nav_options\":\"none\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"premium_carousel_autoplay_speed\":10000,\"premium_carousel_arrow_icon_prev\":\"left_arrow_chevron\",\"premium_carousel_arrow_icon_next\":\"right_arrow_chevron\",\"premium_carousel_arrow_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"premium_carousel_arrow_position\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"premium_carousel_arrows_radius_normal\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"__globals__\":{\"premium_carousel_arrow_color\":\"globals\\/colors?id=06a34e7\",\"premium_carousel_arrow_bg_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"premium-carousel-widget\"},{\"id\":\"aed5322\",\"elType\":\"section\",\"settings\":{\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"5188113\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"d9b24b7\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"View All\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_text_decoration\":\"none\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_color_responsive\":\"#3F5A29\",\"st_button_normal_background_background_color\":\"#FFD402\",\"st_button_hover_color_responsive\":\"#FFD402\",\"st_button_hover_background_background_color\":\"#3F5A29\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30164d28\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"6e6d8a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":142,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-services.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"bd233da\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6535a16\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"937e2e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"85e7aee\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Lawn Services\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"d9723d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"c908972\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37c1cce6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":143,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/driveway-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5b3e60ba\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3b291bbf\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"20b91942\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5649f719\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Driveway Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6300b69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"256ddf68\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3735f0b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":144,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/deck-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"741128a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3691562\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"3c8a0e6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5eb1b3b9\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Deck Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"25f37292\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"61c9ff8e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d41e618\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"8781ee3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":145,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/weed-control.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"bd84c7d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"14f7965\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"fb2459e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"0582197\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Weed Control \",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"f7b0fa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"0197d9e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f3de9c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":146,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/grass-feed.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"75ba950\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"23edbf4\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"ad70b3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"b1c4ac7\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Grass Feed\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6f592ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"0043a3b\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"790dd775\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"360\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"160\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"140\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"background_overlay_color_b\":\"#000414\",\"background_overlay_image\":{\"id\":186,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/a-gardener-watering-plants-in-a-flowerbed-2RT8DWL-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"a2ed5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"7e37f762\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Landscaping\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a092069\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d5099\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need Someone To Take Care Your Lawn and Driveway?\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=07ee36d\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1198756c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"66521a56\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":20,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":4,\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"1a89d099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.5090000000000003410605131648480892181396484375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"id\":191,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/happy-gardeners-with-plants-and-lawn-mower-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"space-between\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_color\":\"#FFFFFF00\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":9,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"46b821c1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":219,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":183,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"449971a9\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Make Appointment & Take Care Your Garden\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=secondary\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=93191b3\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_content_title_color_hover_responsive\":\"#FFFFFF\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#FFFFFF\",\"st_icon_color_responsive\":\"#00E5CC\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#00E5CC\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":false},{\"id\":\"13747b6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.4909999999999996589394868351519107818603515625,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1a13f42e\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"178***1721830795182\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fde8487\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"59883b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1617542a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Process\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29c7aa96\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Complete Every Step Carefully\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ced0d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d62463d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"18cf7834\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"41f79872\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-consult-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consultation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65e1b761\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"span\",\"title_color\":\"#FFD402\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#006943\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12cdbf13\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"4175d29\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-pencil_art-light\",\"library\":\"jkiticon\"},\"title_text\":\"Design Installation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2adabf01\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b628\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"569b3221\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consturction \",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"67d6b2e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6fff79c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"53c9a76e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"title_text\":\"Finished Work\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"555aace0\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d57540b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"71\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardening-background-with-garden-tolls-A9BGNJU.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"147831a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5a53d120\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"20\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Years of Experience\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"488f4727\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"6b8f6eae\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"76666759\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"6f532f9e\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"2850\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Happy Customers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"265fd738\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5473dc22\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"64\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Expert Landscapers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b38731e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"4945f2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"627cd42c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"65e3182\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.56499999999999772626324556767940521240234375,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"43108b53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Projects\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45328989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Project We Have Done\\n\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"f382082\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.49900000000000233058017329312860965728759765625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":40,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"55ecfb57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"67afcbfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.0330000000000012505552149377763271331787109375,\"_inline_size_tablet\":23,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"4989aa04\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Projects\",\"align\":\"right\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"left\",\"hover_animation\":\"float\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"32515d84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"3f5753f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"21982cfb\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":196,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Cutting-Leaf.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Cutting Leaf\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"404dc561\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"58d29b54\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":197,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Home-Garden.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Home Garden\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"3bff1dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"3c24185a\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":195,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/build-backyard.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Build Backyard\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_image_height_responsive_tablet\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b3cb58d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_image\":{\"id\":201,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-moving-aerial-photo-Z8KDGJ9-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_color\":\"#0000007D\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"79705206\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"51c9a732\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73b2fe0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"What They Says About Us\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4876e632\",\"elType\":\"widget\",\"settings\":{\"sg_layout_testimonial_choose\":\"style-2\",\"sg_testimonials_image_size_imagesize_size\":\"medium\",\"sg_testimonials_list\":[{\"sg_testimonials_list_client_avatar\":{\"id\":\"75\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/3SUMAU.jpg\"},\"_id\":\"6e9b2e1\",\"sg_testimonials_list_client_name\":\"Regan Traynor\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"76\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/CASCKD8.jpg\"},\"sg_testimonials_list_client_name\":\"Maisha Dunn\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"d069a43\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"77\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/MKLVKTE.jpg\"},\"sg_testimonials_list_client_name\":\"Reis Leonard\",\"sg_testimonials_list_designation\":\"Businessman\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"05c24f5\"}],\"st_wrapper_alignment_responsive\":\"left\",\"st_client_name_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_description_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_client_name_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_client_designation_normal_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_client_designation_normal_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=d343bdf\",\"st_rating_color_responsive\":\"\",\"st_client_name_normal_color_responsive\":\"\",\"st_quote_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_layout_background_background_color\":\"\"},\"st_layout_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_layout_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_wrapper_fix_height\":\"\",\"sg_setting_autoplay\":\"yes\",\"sg_setting_autoplay_pause\":\"\",\"sg_setting_arrow\":\"\",\"sg_setting_arrow_position\":\"middle-edge\",\"sg_setting_dots\":\"\",\"sg_setting_quote\":\"yes\",\"sg_setting_rating\":\"\",\"st_layout_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_layout_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_slide_show_responsive\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"sg_setting_quote_icon\":{\"value\":\"jki jki-quote-light\",\"library\":\"jkiticon\"},\"sg_layout_image_position\":\"below\",\"st_layout_background_background_background\":\"classic\",\"st_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position\":\"\",\"st_quote_override_position_top_responsive\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"st_quote_override_position_left_responsive\":{\"unit\":\"px\",\"size\":442,\"sizes\":[]},\"st_client_name_normal_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_quote_normal_font_size_responsive\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"st_client_image_margin_responsive\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_rating_font_size_responsive\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"st_rating_margin_right_responsive\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_setting_slide_show_responsive_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"st_wrapper_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position_top_responsive_tablet\":{\"unit\":\"px\",\"size\":249,\"sizes\":[]},\"st_quote_override_position_top_responsive_mobile\":{\"unit\":\"px\",\"size\":193,\"sizes\":[]},\"st_quote_override_position_left_responsive_tablet\":{\"unit\":\"px\",\"size\":265,\"sizes\":[]},\"st_quote_override_position_left_responsive_mobile\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]},\"st_quote_normal_font_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"st_description_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_normal_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64afd05f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"746d276b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"30338dfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f950be4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ca735b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5d6ca3ad\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_title_hover_color_responsive\":\"globals\\/colors?id=secondary\",\"st_readmore_hover_color_responsive\":\"globals\\/colors?id=secondary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#646974\",\"st_excerpt_color_responsive\":\"#646974\",\"st_title_normal_color_responsive\":\"#272B36\",\"st_thumbnail_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_title_hover_color_responsive\":\"#FA8D25\",\"st_readmore_normal_color_responsive\":\"#FA8D25\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":false}],\"isInner\":false}]'),(2147,350,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(2148,350,'_elementor_pro_version','3.10.1'),(2149,350,'_elementor_css','a:6:{s:4:\"time\";i:1721850883;s:5:\"fonts\";a:1:{i:0;s:5:\"Inter\";}s:5:\"icons\";a:3:{i:0;s:0:\"\";i:1;s:8:\"jkiticon\";i:3;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2150,351,'_elementor_edit_mode','builder'),(2151,351,'_elementor_template_type','wp-page'),(2152,351,'_elementor_version','3.23.2'),(2153,351,'_wp_page_template','default'),(2154,351,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2155,351,'_elementor_data','[{\"id\":\"35495243\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"Eldery male gardener using scissors for bushes\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"160\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0,\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_size_tablet\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"top center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00160E\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b\":\"#00000054\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_slideshow_gallery\":[{\"id\":154,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-02-5.jpg\"},{\"id\":155,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-03-3.jpg\"},{\"id\":156,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-04-3.jpg\"},{\"id\":157,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-01-5.jpg\"}],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"739a26d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":65,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=06a34e7\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"132d1a8e\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"For All \",\"sg_title_focused\":\" Luxury\",\"sg_title_after\":\"Cleaning And Maintenance Services\",\"sg_title_html_tag\":\"h1\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=primary\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":87.606999999999999317878973670303821563720703125}},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"7c49583a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":87.832999999999998408384271897375583648681640625}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"635cb25b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"23cf340e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37.85499999999999687361196265555918216705322265625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":48,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1c4c950d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4768b6f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":62.14500000000000312638803734444081783294677734375,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"flex-start\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":52,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"34c0badb\",\"elType\":\"widget\",\"settings\":{\"sg_video_button_title\":\"Play Video\",\"sg_video_button_icon\":{\"value\":\"jki jki-play\",\"library\":\"jkiticon\"},\"sg_video_url\":\"#\",\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_width_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_line_height_responsive\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#FFD402\",\"st_button_normal_glow_color_responsive\":\"#00694361\",\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"_element_width\":\"auto\",\"__globals__\":{\"st_button_normal_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=accent\",\"st_border_normal_border_border_color\":\"\",\"st_button_hover_text_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_glow_color_responsive\":\"\"},\"st_button_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_button_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_width_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_line_height_responsive_mobile\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"st_border_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_border_normal_border_border_color\":\"#FFD027\",\"st_button_line_height_responsive_tablet\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"st_button_normal_background_background_color\":\"#006943\",\"st_button_hover_text_color_responsive\":\"#006943\",\"st_button_hover_background_background_color\":\"#FFD402\",\"sg_video_auto_play\":\"\",\"sg_video_mute\":\"\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_video_button\"},{\"id\":\"232ec8da\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Intro\",\"align\":\"right\",\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"hide_mobile\":\"hidden-mobile\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#00160E\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49b348ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"edc2dbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.00200000000000244426701101474463939666748046875,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"4e2246bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Prestige Luxury Cleanings LLC\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"139cc45f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Lawn and Driveway Cleaning Services\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dc78e71\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"597dc67d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"26cf3840\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"3b19bda0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":167,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"980\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a46c929\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"7c4d8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Public Liability Insurance\",\"_id\":\"a978734\"},{\"text\":\"Environmentally Friendly\",\"_id\":\"1cd10a1\"},{\"text\":\"On Time, Every Time\",\"_id\":\"c6767db\"},{\"text\":\"Beautiful Garden Designs\",\"_id\":\"d4743f4\"},{\"text\":\"Modern Machinery And Tool\",\"_id\":\"535c17d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"398321ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4c7c15d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.9129999999999967030817060731351375579833984375,\"_inline_size_tablet\":100,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5683e90d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":162,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"860\",\"height\":\"980\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b6190b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":163,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"-59\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"250636f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"713aa588\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"51a71b71\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#00160E\",\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=primary\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=06a34e7\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"st_content_title_color_responsive\":\"#7F7F7F\",\"st_super_color_responsive\":\"#FFD402\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\",\"sg_setting_html_tag\":\"span\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5557874f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"73847855\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":345,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Pressure-Wash.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"b1058a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":224,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":478,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":325,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"69098afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"40\",\"bottom\":\"80\",\"left\":\"40\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"7cb7bf82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91cb5d9\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26358abf\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Have The Perfect Solution For Your Lawn and Driveway Problems\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15a36cc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42c8d36c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"7114454f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"76f24ca8\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Variation Gardening\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"138cc39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"28a78a06\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Expert Landscapers\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c5ac2bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"38fdb183\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"3ce0b95b\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Affordable Price\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-save-money-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4c80f133\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"7451fb11\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Free Consultation\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-Consultancy-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e93f2c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"39a46e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"6773b2a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"87647bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Providing Services For All Your Residential And Commercial Needs\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3d4509\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6960c5\",\"elType\":\"section\",\"settings\":{\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"20701e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"a2e2fb9\",\"elType\":\"widget\",\"settings\":{\"premium_carousel_slider_content\":[\"Service 5\",\"Service 4\",\"Service 3\",\"Service 2\",\"service 1\"],\"premium_carousel_templates_repeater\":[],\"premium_carousel_responsive_desktop\":3,\"premium_carousel_responsive_tabs\":2,\"premium_carousel_nav_options\":\"none\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"premium_carousel_autoplay_speed\":10000,\"premium_carousel_arrow_icon_prev\":\"left_arrow_chevron\",\"premium_carousel_arrow_icon_next\":\"right_arrow_chevron\",\"premium_carousel_arrow_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"premium_carousel_arrow_position\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"premium_carousel_arrows_radius_normal\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"__globals__\":{\"premium_carousel_arrow_color\":\"globals\\/colors?id=06a34e7\",\"premium_carousel_arrow_bg_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"premium-carousel-widget\"},{\"id\":\"aed5322\",\"elType\":\"section\",\"settings\":{\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"5188113\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"d9b24b7\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"View All\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_text_decoration\":\"none\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_color_responsive\":\"#3F5A29\",\"st_button_normal_background_background_color\":\"#FFD402\",\"st_button_hover_color_responsive\":\"#FFD402\",\"st_button_hover_background_background_color\":\"#3F5A29\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30164d28\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"6e6d8a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":142,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-services.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"bd233da\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6535a16\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"937e2e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"85e7aee\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Lawn Services\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"d9723d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"c908972\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37c1cce6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":143,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/driveway-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5b3e60ba\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3b291bbf\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"20b91942\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5649f719\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Driveway Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6300b69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"256ddf68\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3735f0b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":144,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/deck-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"741128a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3691562\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"3c8a0e6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5eb1b3b9\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Deck Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"25f37292\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"61c9ff8e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d41e618\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"8781ee3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":145,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/weed-control.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"bd84c7d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"14f7965\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"fb2459e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"0582197\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Weed Control \",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"f7b0fa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"0197d9e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f3de9c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":146,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/grass-feed.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"75ba950\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"23edbf4\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"ad70b3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"b1c4ac7\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Grass Feed\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6f592ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"0043a3b\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"790dd775\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"360\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"160\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"140\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"background_overlay_color_b\":\"#000414\",\"background_overlay_image\":{\"id\":186,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/a-gardener-watering-plants-in-a-flowerbed-2RT8DWL-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"a2ed5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"7e37f762\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Landscaping\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a092069\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d5099\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need Someone To Take Care Your Lawn and Driveway?\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=07ee36d\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1198756c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"66521a56\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":20,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":4,\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"1a89d099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.5090000000000003410605131648480892181396484375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"id\":191,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/happy-gardeners-with-plants-and-lawn-mower-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"space-between\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_color\":\"#FFFFFF00\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":9,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"46b821c1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":219,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":183,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"449971a9\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Make Appointment & Take Care Your Garden\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=secondary\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=93191b3\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_content_title_color_hover_responsive\":\"#FFFFFF\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#FFFFFF\",\"st_icon_color_responsive\":\"#00E5CC\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#00E5CC\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":false},{\"id\":\"13747b6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.4909999999999996589394868351519107818603515625,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1a13f42e\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"178***1721830795182\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fde8487\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"59883b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1617542a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Process\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29c7aa96\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Complete Every Step Carefully\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ced0d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d62463d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"18cf7834\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"41f79872\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-consult-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consultation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65e1b761\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"span\",\"title_color\":\"#FFD402\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#006943\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12cdbf13\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"4175d29\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-pencil_art-light\",\"library\":\"jkiticon\"},\"title_text\":\"Design Installation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2adabf01\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b628\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"569b3221\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consturction \",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"67d6b2e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6fff79c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"53c9a76e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"title_text\":\"Finished Work\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"555aace0\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d57540b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"71\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardening-background-with-garden-tolls-A9BGNJU.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"147831a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5a53d120\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"20\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Years of Experience\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"488f4727\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"6b8f6eae\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"76666759\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"6f532f9e\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"2850\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Happy Customers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"265fd738\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5473dc22\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"64\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Expert Landscapers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b38731e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"4945f2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"627cd42c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"65e3182\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.56499999999999772626324556767940521240234375,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"43108b53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Projects\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45328989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Project We Have Done\\n\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"f382082\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.49900000000000233058017329312860965728759765625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":40,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"55ecfb57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"67afcbfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.0330000000000012505552149377763271331787109375,\"_inline_size_tablet\":23,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"4989aa04\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Projects\",\"align\":\"right\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"left\",\"hover_animation\":\"float\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"32515d84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"3f5753f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"21982cfb\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":196,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Cutting-Leaf.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Cutting Leaf\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"404dc561\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"58d29b54\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":197,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Home-Garden.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Home Garden\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"3bff1dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"3c24185a\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":195,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/build-backyard.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Build Backyard\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_image_height_responsive_tablet\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b3cb58d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_image\":{\"id\":201,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-moving-aerial-photo-Z8KDGJ9-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_color\":\"#0000007D\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"79705206\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"51c9a732\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73b2fe0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"What They Say About Us\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4876e632\",\"elType\":\"widget\",\"settings\":{\"sg_layout_testimonial_choose\":\"style-2\",\"sg_testimonials_image_size_imagesize_size\":\"medium\",\"sg_testimonials_list\":[{\"sg_testimonials_list_client_avatar\":{\"id\":\"75\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/3SUMAU.jpg\"},\"_id\":\"6e9b2e1\",\"sg_testimonials_list_client_name\":\"Regan Traynor\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"76\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/CASCKD8.jpg\"},\"sg_testimonials_list_client_name\":\"Maisha Dunn\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"d069a43\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"77\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/MKLVKTE.jpg\"},\"sg_testimonials_list_client_name\":\"Reis Leonard\",\"sg_testimonials_list_designation\":\"Businessman\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"05c24f5\"}],\"st_wrapper_alignment_responsive\":\"left\",\"st_client_name_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_description_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_client_name_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_client_designation_normal_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_client_designation_normal_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=d343bdf\",\"st_rating_color_responsive\":\"\",\"st_client_name_normal_color_responsive\":\"\",\"st_quote_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_layout_background_background_color\":\"\"},\"st_layout_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_layout_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_wrapper_fix_height\":\"\",\"sg_setting_autoplay\":\"yes\",\"sg_setting_autoplay_pause\":\"\",\"sg_setting_arrow\":\"\",\"sg_setting_arrow_position\":\"middle-edge\",\"sg_setting_dots\":\"\",\"sg_setting_quote\":\"yes\",\"sg_setting_rating\":\"\",\"st_layout_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_layout_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_slide_show_responsive\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"sg_setting_quote_icon\":{\"value\":\"jki jki-quote-light\",\"library\":\"jkiticon\"},\"sg_layout_image_position\":\"below\",\"st_layout_background_background_background\":\"classic\",\"st_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position\":\"\",\"st_quote_override_position_top_responsive\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"st_quote_override_position_left_responsive\":{\"unit\":\"px\",\"size\":442,\"sizes\":[]},\"st_client_name_normal_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_quote_normal_font_size_responsive\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"st_client_image_margin_responsive\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_rating_font_size_responsive\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"st_rating_margin_right_responsive\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_setting_slide_show_responsive_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"st_wrapper_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position_top_responsive_tablet\":{\"unit\":\"px\",\"size\":249,\"sizes\":[]},\"st_quote_override_position_top_responsive_mobile\":{\"unit\":\"px\",\"size\":193,\"sizes\":[]},\"st_quote_override_position_left_responsive_tablet\":{\"unit\":\"px\",\"size\":265,\"sizes\":[]},\"st_quote_override_position_left_responsive_mobile\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]},\"st_quote_normal_font_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"st_description_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_normal_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64afd05f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"746d276b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"30338dfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f950be4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ca735b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5d6ca3ad\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_title_hover_color_responsive\":\"globals\\/colors?id=secondary\",\"st_readmore_hover_color_responsive\":\"globals\\/colors?id=secondary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#646974\",\"st_excerpt_color_responsive\":\"#646974\",\"st_title_normal_color_responsive\":\"#272B36\",\"st_thumbnail_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_title_hover_color_responsive\":\"#FA8D25\",\"st_readmore_normal_color_responsive\":\"#FA8D25\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":false}],\"isInner\":false}]'),(2156,351,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(2157,351,'_elementor_pro_version','3.10.1'),(2158,351,'_elementor_css','a:6:{s:4:\"time\";i:1721850883;s:5:\"fonts\";a:1:{i:0;s:5:\"Inter\";}s:5:\"icons\";a:3:{i:0;s:0:\"\";i:1;s:8:\"jkiticon\";i:3;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2159,352,'_elementor_edit_mode','builder'),(2160,352,'_elementor_template_type','wp-page'),(2161,352,'_elementor_version','3.23.2'),(2162,352,'_wp_page_template','default'),(2163,352,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2164,352,'_elementor_data','[{\"id\":\"35495243\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"Eldery male gardener using scissors for bushes\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"160\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0,\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_size_tablet\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"top center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00160E\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b\":\"#00000054\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_slideshow_gallery\":[{\"id\":154,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-02-5.jpg\"},{\"id\":155,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-03-3.jpg\"},{\"id\":156,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-04-3.jpg\"},{\"id\":157,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-01-5.jpg\"}],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"739a26d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":65,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=06a34e7\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"132d1a8e\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"For All \",\"sg_title_focused\":\" Luxury\",\"sg_title_after\":\"Cleaning And Maintenance Services\",\"sg_title_html_tag\":\"h1\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=primary\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":87.606999999999999317878973670303821563720703125}},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"7c49583a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":87.832999999999998408384271897375583648681640625}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"635cb25b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"23cf340e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37.85499999999999687361196265555918216705322265625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":48,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1c4c950d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4768b6f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":62.14500000000000312638803734444081783294677734375,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"flex-start\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":52,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"34c0badb\",\"elType\":\"widget\",\"settings\":{\"sg_video_button_title\":\"Play Video\",\"sg_video_button_icon\":{\"value\":\"jki jki-play\",\"library\":\"jkiticon\"},\"sg_video_url\":\"#\",\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_width_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_line_height_responsive\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#FFD402\",\"st_button_normal_glow_color_responsive\":\"#00694361\",\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"_element_width\":\"auto\",\"__globals__\":{\"st_button_normal_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=accent\",\"st_border_normal_border_border_color\":\"\",\"st_button_hover_text_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_glow_color_responsive\":\"\"},\"st_button_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_button_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_width_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_line_height_responsive_mobile\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"st_border_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_border_normal_border_border_color\":\"#FFD027\",\"st_button_line_height_responsive_tablet\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"st_button_normal_background_background_color\":\"#006943\",\"st_button_hover_text_color_responsive\":\"#006943\",\"st_button_hover_background_background_color\":\"#FFD402\",\"sg_video_auto_play\":\"\",\"sg_video_mute\":\"\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_video_button\"},{\"id\":\"232ec8da\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Intro\",\"align\":\"right\",\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"hide_mobile\":\"hidden-mobile\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#00160E\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49b348ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"edc2dbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.00200000000000244426701101474463939666748046875,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"4e2246bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Prestige Luxury Cleanings LLC\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"139cc45f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Lawn and Driveway Cleaning Services\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dc78e71\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"597dc67d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"26cf3840\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"3b19bda0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":167,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"980\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a46c929\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"7c4d8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Public Liability Insurance\",\"_id\":\"a978734\"},{\"text\":\"Environmentally Friendly\",\"_id\":\"1cd10a1\"},{\"text\":\"On Time, Every Time\",\"_id\":\"c6767db\"},{\"text\":\"Beautiful Garden Designs\",\"_id\":\"d4743f4\"},{\"text\":\"Modern Machinery And Tool\",\"_id\":\"535c17d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"398321ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4c7c15d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.9129999999999967030817060731351375579833984375,\"_inline_size_tablet\":100,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5683e90d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":162,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"860\",\"height\":\"980\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b6190b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":163,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"-59\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"250636f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"713aa588\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"51a71b71\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#00160E\",\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=primary\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=06a34e7\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"st_content_title_color_responsive\":\"#7F7F7F\",\"st_super_color_responsive\":\"#FFD402\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\",\"sg_setting_html_tag\":\"span\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5557874f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"73847855\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":345,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Pressure-Wash.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"b1058a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":224,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":478,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":325,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"69098afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"40\",\"bottom\":\"80\",\"left\":\"40\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"7cb7bf82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91cb5d9\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26358abf\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Have The Perfect Solution For Your Lawn and Driveway Problems\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15a36cc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42c8d36c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"7114454f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"76f24ca8\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Variation Gardening\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"138cc39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"28a78a06\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Expert Landscapers\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c5ac2bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"38fdb183\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"3ce0b95b\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Affordable Price\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-save-money-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4c80f133\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"7451fb11\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Free Consultation\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-Consultancy-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e93f2c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"39a46e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"6773b2a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"87647bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Providing Services For All Your Residential And Commercial Needs\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3d4509\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6960c5\",\"elType\":\"section\",\"settings\":{\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"20701e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"a2e2fb9\",\"elType\":\"widget\",\"settings\":{\"premium_carousel_slider_content\":[\"Service 5\",\"Service 4\",\"Service 3\",\"Service 2\",\"service 1\"],\"premium_carousel_templates_repeater\":[],\"premium_carousel_responsive_desktop\":3,\"premium_carousel_responsive_tabs\":2,\"premium_carousel_nav_options\":\"none\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"premium_carousel_autoplay_speed\":10000,\"premium_carousel_arrow_icon_prev\":\"left_arrow_chevron\",\"premium_carousel_arrow_icon_next\":\"right_arrow_chevron\",\"premium_carousel_arrow_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"premium_carousel_arrow_position\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"premium_carousel_arrows_radius_normal\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"__globals__\":{\"premium_carousel_arrow_color\":\"globals\\/colors?id=06a34e7\",\"premium_carousel_arrow_bg_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"premium-carousel-widget\"},{\"id\":\"aed5322\",\"elType\":\"section\",\"settings\":{\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"5188113\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"d9b24b7\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"View All\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_text_decoration\":\"none\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_color_responsive\":\"#3F5A29\",\"st_button_normal_background_background_color\":\"#FFD402\",\"st_button_hover_color_responsive\":\"#FFD402\",\"st_button_hover_background_background_color\":\"#3F5A29\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30164d28\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"6e6d8a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":142,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-services.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"bd233da\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6535a16\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"937e2e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"85e7aee\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Lawn Services\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"d9723d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"c908972\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37c1cce6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":143,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/driveway-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5b3e60ba\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3b291bbf\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"20b91942\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5649f719\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Driveway Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6300b69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"256ddf68\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3735f0b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":144,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/deck-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"741128a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3691562\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"3c8a0e6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5eb1b3b9\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Deck Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"25f37292\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"61c9ff8e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d41e618\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"8781ee3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":145,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/weed-control.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"bd84c7d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"14f7965\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"fb2459e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"0582197\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Weed Control \",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"f7b0fa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"0197d9e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f3de9c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":146,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/grass-feed.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"75ba950\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"23edbf4\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"ad70b3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"b1c4ac7\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Grass Feed\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6f592ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"0043a3b\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"790dd775\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"360\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"160\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"140\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"background_overlay_color_b\":\"#000414\",\"background_overlay_image\":{\"id\":186,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/a-gardener-watering-plants-in-a-flowerbed-2RT8DWL-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"a2ed5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"7e37f762\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Landscaping\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a092069\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d5099\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need Someone To Take Care Your Lawn and Driveway?\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=07ee36d\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1198756c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"66521a56\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":20,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":4,\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"1a89d099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.5090000000000003410605131648480892181396484375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"id\":191,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/happy-gardeners-with-plants-and-lawn-mower-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"space-between\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_color\":\"#FFFFFF00\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":9,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"46b821c1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":219,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":183,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"449971a9\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Make Appointment & Take Care Your Garden\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=secondary\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=93191b3\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_content_title_color_hover_responsive\":\"#FFFFFF\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#FFFFFF\",\"st_icon_color_responsive\":\"#00E5CC\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#00E5CC\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":false},{\"id\":\"13747b6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.4909999999999996589394868351519107818603515625,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1a13f42e\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"178***1721830795182\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fde8487\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"59883b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1617542a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Process\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29c7aa96\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Complete Every Step Carefully\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ced0d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d62463d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"18cf7834\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"41f79872\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-consult-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consultation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65e1b761\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"span\",\"title_color\":\"#FFD402\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#006943\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12cdbf13\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"4175d29\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-pencil_art-light\",\"library\":\"jkiticon\"},\"title_text\":\"Design Installation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2adabf01\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b628\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"569b3221\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consturction \",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"67d6b2e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6fff79c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"53c9a76e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"title_text\":\"Finished Work\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"555aace0\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d57540b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"71\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardening-background-with-garden-tolls-A9BGNJU.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"147831a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5a53d120\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"20\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Years of Experience\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"488f4727\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"6b8f6eae\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"76666759\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"6f532f9e\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"2850\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Happy Customers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"265fd738\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5473dc22\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"64\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Expert Landscapers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b38731e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"4945f2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"627cd42c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"65e3182\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.56499999999999772626324556767940521240234375,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"43108b53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Projects\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45328989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Project We Have Done\\n\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"f382082\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.49900000000000233058017329312860965728759765625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":40,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"55ecfb57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"67afcbfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.0330000000000012505552149377763271331787109375,\"_inline_size_tablet\":23,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"4989aa04\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Projects\",\"align\":\"right\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"left\",\"hover_animation\":\"float\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"32515d84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"3f5753f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"21982cfb\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":196,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Cutting-Leaf.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Cutting Leaf\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"404dc561\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"58d29b54\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":197,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Home-Garden.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Home Garden\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"3bff1dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"3c24185a\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":195,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/build-backyard.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Build Backyard\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_image_height_responsive_tablet\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b3cb58d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_image\":{\"id\":201,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-moving-aerial-photo-Z8KDGJ9-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_color\":\"#0000007D\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"79705206\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"51c9a732\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73b2fe0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"What They Say About Us\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4876e632\",\"elType\":\"widget\",\"settings\":{\"sg_layout_testimonial_choose\":\"style-2\",\"sg_testimonials_image_size_imagesize_size\":\"medium\",\"sg_testimonials_list\":[{\"sg_testimonials_list_client_avatar\":{\"id\":\"75\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/3SUMAU.jpg\"},\"_id\":\"6e9b2e1\",\"sg_testimonials_list_client_name\":\"Regan Traynor\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"76\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/CASCKD8.jpg\"},\"sg_testimonials_list_client_name\":\"Maisha Dunn\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"d069a43\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"77\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/MKLVKTE.jpg\"},\"sg_testimonials_list_client_name\":\"Reis Leonard\",\"sg_testimonials_list_designation\":\"Businessman\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"05c24f5\"}],\"st_wrapper_alignment_responsive\":\"left\",\"st_client_name_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_description_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_client_name_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_client_designation_normal_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_client_designation_normal_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=d343bdf\",\"st_rating_color_responsive\":\"\",\"st_client_name_normal_color_responsive\":\"\",\"st_quote_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_layout_background_background_color\":\"\"},\"st_layout_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_layout_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_wrapper_fix_height\":\"\",\"sg_setting_autoplay\":\"yes\",\"sg_setting_autoplay_pause\":\"\",\"sg_setting_arrow\":\"\",\"sg_setting_arrow_position\":\"middle-edge\",\"sg_setting_dots\":\"\",\"sg_setting_quote\":\"yes\",\"sg_setting_rating\":\"\",\"st_layout_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_layout_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_slide_show_responsive\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"sg_setting_quote_icon\":{\"value\":\"jki jki-quote-light\",\"library\":\"jkiticon\"},\"sg_layout_image_position\":\"below\",\"st_layout_background_background_background\":\"classic\",\"st_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position\":\"\",\"st_quote_override_position_top_responsive\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"st_quote_override_position_left_responsive\":{\"unit\":\"px\",\"size\":442,\"sizes\":[]},\"st_client_name_normal_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_quote_normal_font_size_responsive\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"st_client_image_margin_responsive\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_rating_font_size_responsive\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"st_rating_margin_right_responsive\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_setting_slide_show_responsive_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"st_wrapper_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position_top_responsive_tablet\":{\"unit\":\"px\",\"size\":249,\"sizes\":[]},\"st_quote_override_position_top_responsive_mobile\":{\"unit\":\"px\",\"size\":193,\"sizes\":[]},\"st_quote_override_position_left_responsive_tablet\":{\"unit\":\"px\",\"size\":265,\"sizes\":[]},\"st_quote_override_position_left_responsive_mobile\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]},\"st_quote_normal_font_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"st_description_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_normal_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64afd05f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"746d276b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"30338dfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f950be4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ca735b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5d6ca3ad\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_title_hover_color_responsive\":\"globals\\/colors?id=secondary\",\"st_readmore_hover_color_responsive\":\"globals\\/colors?id=secondary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#646974\",\"st_excerpt_color_responsive\":\"#646974\",\"st_title_normal_color_responsive\":\"#272B36\",\"st_thumbnail_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_title_hover_color_responsive\":\"#FA8D25\",\"st_readmore_normal_color_responsive\":\"#FA8D25\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":false}],\"isInner\":false}]'),(2165,352,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(2166,352,'_elementor_pro_version','3.10.1'),(2167,353,'_elementor_edit_mode','builder'),(2168,353,'_elementor_template_type','wp-page'),(2169,353,'_elementor_version','3.23.2'),(2170,353,'_wp_page_template','default'),(2171,353,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2172,353,'_elementor_data','[{\"id\":\"35495243\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"Eldery male gardener using scissors for bushes\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"160\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0,\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_size_tablet\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"top center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00160E\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b\":\"#00000054\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_slideshow_gallery\":[{\"id\":154,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-02-5.jpg\"},{\"id\":155,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-03-3.jpg\"},{\"id\":156,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-04-3.jpg\"},{\"id\":157,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-01-5.jpg\"}],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"739a26d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":65,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=06a34e7\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"132d1a8e\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"For All \",\"sg_title_focused\":\" Luxury\",\"sg_title_after\":\"Cleaning And Maintenance Services\",\"sg_title_html_tag\":\"h1\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=primary\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":87.606999999999999317878973670303821563720703125}},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"7c49583a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":87.832999999999998408384271897375583648681640625}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"635cb25b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"23cf340e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37.85499999999999687361196265555918216705322265625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":48,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1c4c950d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4768b6f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":62.14500000000000312638803734444081783294677734375,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"flex-start\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":52,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"34c0badb\",\"elType\":\"widget\",\"settings\":{\"sg_video_button_title\":\"Play Video\",\"sg_video_button_icon\":{\"value\":\"jki jki-play\",\"library\":\"jkiticon\"},\"sg_video_url\":\"#\",\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_width_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_line_height_responsive\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#FFD402\",\"st_button_normal_glow_color_responsive\":\"#00694361\",\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"_element_width\":\"auto\",\"__globals__\":{\"st_button_normal_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=accent\",\"st_border_normal_border_border_color\":\"\",\"st_button_hover_text_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_glow_color_responsive\":\"\"},\"st_button_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_button_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_width_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_line_height_responsive_mobile\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"st_border_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_border_normal_border_border_color\":\"#FFD027\",\"st_button_line_height_responsive_tablet\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"st_button_normal_background_background_color\":\"#006943\",\"st_button_hover_text_color_responsive\":\"#006943\",\"st_button_hover_background_background_color\":\"#FFD402\",\"sg_video_auto_play\":\"\",\"sg_video_mute\":\"\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_video_button\"},{\"id\":\"232ec8da\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Intro\",\"align\":\"right\",\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"hide_mobile\":\"hidden-mobile\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#00160E\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49b348ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"edc2dbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.00200000000000244426701101474463939666748046875,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"4e2246bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Prestige Luxury Cleanings LLC\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"139cc45f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Lawn and Driveway Cleaning Services\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dc78e71\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"597dc67d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"26cf3840\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"3b19bda0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":167,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"980\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a46c929\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"7c4d8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Public Liability Insurance\",\"_id\":\"a978734\"},{\"text\":\"Environmentally Friendly\",\"_id\":\"1cd10a1\"},{\"text\":\"On Time, Every Time\",\"_id\":\"c6767db\"},{\"text\":\"Beautiful Garden Designs\",\"_id\":\"d4743f4\"},{\"text\":\"Modern Machinery And Tool\",\"_id\":\"535c17d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"398321ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4c7c15d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.9129999999999967030817060731351375579833984375,\"_inline_size_tablet\":100,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5683e90d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":162,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"860\",\"height\":\"980\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b6190b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":163,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"-59\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"250636f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"713aa588\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"51a71b71\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#00160E\",\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=primary\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=06a34e7\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"st_content_title_color_responsive\":\"#7F7F7F\",\"st_super_color_responsive\":\"#FFD402\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\",\"sg_setting_html_tag\":\"span\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5557874f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"73847855\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":345,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Pressure-Wash.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"b1058a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":224,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":478,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":325,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"69098afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"40\",\"bottom\":\"80\",\"left\":\"40\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"7cb7bf82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91cb5d9\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26358abf\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Have The Perfect Solution For Your Lawn and Driveway Problems\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15a36cc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42c8d36c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"7114454f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"76f24ca8\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Variation Gardening\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"138cc39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"28a78a06\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Expert Landscapers\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c5ac2bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"38fdb183\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"3ce0b95b\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Affordable Price\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-save-money-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4c80f133\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"7451fb11\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Free Consultation\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-Consultancy-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e93f2c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"39a46e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"6773b2a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"87647bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Providing Services For All Your Residential And Commercial Needs\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3d4509\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6960c5\",\"elType\":\"section\",\"settings\":{\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"20701e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"a2e2fb9\",\"elType\":\"widget\",\"settings\":{\"premium_carousel_slider_content\":[\"Service 5\",\"Service 4\",\"Service 3\",\"Service 2\",\"service 1\"],\"premium_carousel_templates_repeater\":[],\"premium_carousel_responsive_desktop\":3,\"premium_carousel_responsive_tabs\":2,\"premium_carousel_nav_options\":\"none\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"premium_carousel_autoplay_speed\":10000,\"premium_carousel_arrow_icon_prev\":\"left_arrow_chevron\",\"premium_carousel_arrow_icon_next\":\"right_arrow_chevron\",\"premium_carousel_arrow_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"premium_carousel_arrow_position\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"premium_carousel_arrows_radius_normal\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"__globals__\":{\"premium_carousel_arrow_color\":\"globals\\/colors?id=06a34e7\",\"premium_carousel_arrow_bg_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"premium-carousel-widget\"},{\"id\":\"aed5322\",\"elType\":\"section\",\"settings\":{\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"5188113\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"d9b24b7\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"View All\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_text_decoration\":\"none\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_color_responsive\":\"#3F5A29\",\"st_button_normal_background_background_color\":\"#FFD402\",\"st_button_hover_color_responsive\":\"#FFD402\",\"st_button_hover_background_background_color\":\"#3F5A29\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30164d28\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"6e6d8a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":142,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-services.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"bd233da\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6535a16\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"937e2e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"85e7aee\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Lawn Services\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"d9723d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"c908972\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37c1cce6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":143,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/driveway-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5b3e60ba\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3b291bbf\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"20b91942\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5649f719\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Driveway Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6300b69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"256ddf68\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3735f0b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":144,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/deck-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"741128a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3691562\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"3c8a0e6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5eb1b3b9\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Deck Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"25f37292\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"61c9ff8e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d41e618\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"8781ee3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":145,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/weed-control.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"bd84c7d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"14f7965\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"fb2459e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"0582197\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Weed Control \",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"f7b0fa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"0197d9e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f3de9c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":146,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/grass-feed.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"75ba950\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"23edbf4\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"ad70b3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"b1c4ac7\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Grass Feed\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6f592ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"0043a3b\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"790dd775\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"360\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"160\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"140\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"background_overlay_color_b\":\"#000414\",\"background_overlay_image\":{\"id\":186,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/a-gardener-watering-plants-in-a-flowerbed-2RT8DWL-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"a2ed5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"7e37f762\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Landscaping\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a092069\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d5099\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need Someone To Take Care Your Lawn and Driveway?\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=07ee36d\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1198756c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"66521a56\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":20,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":4,\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"1a89d099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.5090000000000003410605131648480892181396484375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"id\":191,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/happy-gardeners-with-plants-and-lawn-mower-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"space-between\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_color\":\"#FFFFFF00\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":9,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"46b821c1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":219,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":183,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"449971a9\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Make Appointment & Take Care Your Garden\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=secondary\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=93191b3\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_content_title_color_hover_responsive\":\"#FFFFFF\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#FFFFFF\",\"st_icon_color_responsive\":\"#00E5CC\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#00E5CC\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":false},{\"id\":\"13747b6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.4909999999999996589394868351519107818603515625,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1a13f42e\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"178***1721830795182\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fde8487\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"59883b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1617542a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Process\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29c7aa96\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Complete Every Step Carefully\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ced0d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d62463d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"18cf7834\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"41f79872\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-consult-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consultation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65e1b761\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"span\",\"title_color\":\"#FFD402\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#006943\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12cdbf13\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"4175d29\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-pencil_art-light\",\"library\":\"jkiticon\"},\"title_text\":\"Design Installation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2adabf01\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b628\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"569b3221\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consturction \",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"67d6b2e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6fff79c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"53c9a76e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"title_text\":\"Finished Work\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"555aace0\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d57540b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"71\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardening-background-with-garden-tolls-A9BGNJU.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"147831a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5a53d120\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"20\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Years of Experience\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"488f4727\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"6b8f6eae\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"76666759\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"6f532f9e\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"2850\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Happy Customers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"265fd738\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5473dc22\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"64\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Expert Landscapers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b38731e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"4945f2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"627cd42c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"65e3182\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.56499999999999772626324556767940521240234375,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"43108b53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Projects\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45328989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Project We Have Done\\n\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"f382082\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.49900000000000233058017329312860965728759765625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":40,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"55ecfb57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"67afcbfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.0330000000000012505552149377763271331787109375,\"_inline_size_tablet\":23,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"4989aa04\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Projects\",\"align\":\"right\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"left\",\"hover_animation\":\"float\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"32515d84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"3f5753f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"21982cfb\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":196,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Cutting-Leaf.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Cutting Leaf\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"404dc561\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"58d29b54\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":197,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Home-Garden.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Home Garden\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"3bff1dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"3c24185a\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":195,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/build-backyard.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Build Backyard\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_image_height_responsive_tablet\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b3cb58d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_image\":{\"id\":201,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-moving-aerial-photo-Z8KDGJ9-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_color\":\"#0000007D\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"79705206\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"51c9a732\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73b2fe0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"What They Say About Us\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4876e632\",\"elType\":\"widget\",\"settings\":{\"sg_layout_testimonial_choose\":\"style-2\",\"sg_testimonials_image_size_imagesize_size\":\"medium\",\"sg_testimonials_list\":[{\"sg_testimonials_list_client_avatar\":{\"id\":\"75\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/3SUMAU.jpg\"},\"_id\":\"6e9b2e1\",\"sg_testimonials_list_client_name\":\"Regan Traynor\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"76\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/CASCKD8.jpg\"},\"sg_testimonials_list_client_name\":\"Maisha Dunn\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"d069a43\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"77\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/MKLVKTE.jpg\"},\"sg_testimonials_list_client_name\":\"Reis Leonard\",\"sg_testimonials_list_designation\":\"Businessman\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"05c24f5\"}],\"st_wrapper_alignment_responsive\":\"left\",\"st_client_name_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_description_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_client_name_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_client_designation_normal_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_client_designation_normal_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=d343bdf\",\"st_rating_color_responsive\":\"\",\"st_client_name_normal_color_responsive\":\"\",\"st_quote_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_layout_background_background_color\":\"\"},\"st_layout_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_layout_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_wrapper_fix_height\":\"\",\"sg_setting_autoplay\":\"yes\",\"sg_setting_autoplay_pause\":\"\",\"sg_setting_arrow\":\"\",\"sg_setting_arrow_position\":\"middle-edge\",\"sg_setting_dots\":\"\",\"sg_setting_quote\":\"yes\",\"sg_setting_rating\":\"\",\"st_layout_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_layout_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_slide_show_responsive\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"sg_setting_quote_icon\":{\"value\":\"jki jki-quote-light\",\"library\":\"jkiticon\"},\"sg_layout_image_position\":\"below\",\"st_layout_background_background_background\":\"classic\",\"st_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position\":\"\",\"st_quote_override_position_top_responsive\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"st_quote_override_position_left_responsive\":{\"unit\":\"px\",\"size\":442,\"sizes\":[]},\"st_client_name_normal_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_quote_normal_font_size_responsive\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"st_client_image_margin_responsive\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_rating_font_size_responsive\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"st_rating_margin_right_responsive\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_setting_slide_show_responsive_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"st_wrapper_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position_top_responsive_tablet\":{\"unit\":\"px\",\"size\":249,\"sizes\":[]},\"st_quote_override_position_top_responsive_mobile\":{\"unit\":\"px\",\"size\":193,\"sizes\":[]},\"st_quote_override_position_left_responsive_tablet\":{\"unit\":\"px\",\"size\":265,\"sizes\":[]},\"st_quote_override_position_left_responsive_mobile\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]},\"st_quote_normal_font_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"st_description_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_normal_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64afd05f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"746d276b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"30338dfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f950be4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ca735b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5d6ca3ad\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_title_hover_color_responsive\":\"globals\\/colors?id=secondary\",\"st_readmore_hover_color_responsive\":\"globals\\/colors?id=secondary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#646974\",\"st_excerpt_color_responsive\":\"#646974\",\"st_title_normal_color_responsive\":\"#272B36\",\"st_thumbnail_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_title_hover_color_responsive\":\"#FA8D25\",\"st_readmore_normal_color_responsive\":\"#FA8D25\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":false}],\"isInner\":false}]'),(2173,353,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(2174,353,'_elementor_pro_version','3.10.1'),(2175,354,'_elementor_edit_mode','builder'),(2176,354,'_elementor_template_type','wp-page'),(2177,354,'_elementor_version','3.23.2'),(2178,354,'_wp_page_template','default'),(2179,354,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2180,354,'_elementor_data','[{\"id\":\"35495243\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"Eldery male gardener using scissors for bushes\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"160\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0,\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_size_tablet\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"top center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00160E\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b\":\"#00000054\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_slideshow_gallery\":[{\"id\":154,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-02-5.jpg\"},{\"id\":155,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-03-3.jpg\"},{\"id\":156,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-04-3.jpg\"},{\"id\":157,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-01-5.jpg\"}],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"739a26d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":65,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"56\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=06a34e7\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"132d1a8e\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"For All \",\"sg_title_focused\":\" Luxury\",\"sg_title_after\":\"Cleaning And Maintenance Services\",\"sg_title_html_tag\":\"h1\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=primary\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":87.606999999999999317878973670303821563720703125}},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"7c49583a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":87.832999999999998408384271897375583648681640625}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"635cb25b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"23cf340e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37.85499999999999687361196265555918216705322265625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":48,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1c4c950d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4768b6f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":62.14500000000000312638803734444081783294677734375,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"flex-start\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":52,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"34c0badb\",\"elType\":\"widget\",\"settings\":{\"sg_video_button_title\":\"Play Video\",\"sg_video_button_icon\":{\"value\":\"jki jki-play\",\"library\":\"jkiticon\"},\"sg_video_url\":\"#\",\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_width_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_line_height_responsive\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#FFD402\",\"st_button_normal_glow_color_responsive\":\"#00694361\",\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"_element_width\":\"auto\",\"__globals__\":{\"st_button_normal_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=accent\",\"st_border_normal_border_border_color\":\"\",\"st_button_hover_text_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_glow_color_responsive\":\"\"},\"st_button_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_button_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_width_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_line_height_responsive_mobile\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"st_border_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_border_normal_border_border_color\":\"#FFD027\",\"st_button_line_height_responsive_tablet\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"st_button_normal_background_background_color\":\"#006943\",\"st_button_hover_text_color_responsive\":\"#006943\",\"st_button_hover_background_background_color\":\"#FFD402\",\"sg_video_auto_play\":\"\",\"sg_video_mute\":\"\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_video_button\"},{\"id\":\"232ec8da\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Intro\",\"align\":\"right\",\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"hide_mobile\":\"hidden-mobile\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#00160E\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49b348ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"edc2dbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.00200000000000244426701101474463939666748046875,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"4e2246bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Prestige Luxury Cleanings LLC\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"139cc45f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Lawn and Driveway Cleaning Services\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dc78e71\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"597dc67d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"26cf3840\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"3b19bda0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":167,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"980\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a46c929\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"7c4d8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Public Liability Insurance\",\"_id\":\"a978734\"},{\"text\":\"Environmentally Friendly\",\"_id\":\"1cd10a1\"},{\"text\":\"On Time, Every Time\",\"_id\":\"c6767db\"},{\"text\":\"Beautiful Garden Designs\",\"_id\":\"d4743f4\"},{\"text\":\"Modern Machinery And Tool\",\"_id\":\"535c17d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"398321ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4c7c15d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.9129999999999967030817060731351375579833984375,\"_inline_size_tablet\":100,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5683e90d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":162,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"860\",\"height\":\"980\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b6190b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":163,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"-59\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"250636f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"713aa588\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"51a71b71\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#00160E\",\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=primary\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=06a34e7\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"st_content_title_color_responsive\":\"#7F7F7F\",\"st_super_color_responsive\":\"#FFD402\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\",\"sg_setting_html_tag\":\"span\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5557874f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"73847855\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":345,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Pressure-Wash.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"b1058a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":224,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":478,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":325,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"69098afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"40\",\"bottom\":\"80\",\"left\":\"40\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"7cb7bf82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91cb5d9\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26358abf\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Have The Perfect Solution For Your Lawn and Driveway Problems\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15a36cc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42c8d36c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"7114454f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"76f24ca8\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Variation Gardening\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"138cc39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"28a78a06\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Expert Landscapers\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c5ac2bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"38fdb183\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"3ce0b95b\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Affordable Price\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-save-money-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4c80f133\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"7451fb11\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Free Consultation\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-Consultancy-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e93f2c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"39a46e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"6773b2a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"87647bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Providing Services For All Your Residential And Commercial Needs\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3d4509\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6960c5\",\"elType\":\"section\",\"settings\":{\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"20701e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"a2e2fb9\",\"elType\":\"widget\",\"settings\":{\"premium_carousel_slider_content\":[\"Service 5\",\"Service 4\",\"Service 3\",\"Service 2\",\"service 1\"],\"premium_carousel_templates_repeater\":[],\"premium_carousel_responsive_desktop\":3,\"premium_carousel_responsive_tabs\":2,\"premium_carousel_nav_options\":\"none\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"premium_carousel_autoplay_speed\":10000,\"premium_carousel_arrow_icon_prev\":\"left_arrow_chevron\",\"premium_carousel_arrow_icon_next\":\"right_arrow_chevron\",\"premium_carousel_arrow_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"premium_carousel_arrow_position\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"premium_carousel_arrows_radius_normal\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"__globals__\":{\"premium_carousel_arrow_color\":\"globals\\/colors?id=06a34e7\",\"premium_carousel_arrow_bg_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"premium-carousel-widget\"},{\"id\":\"aed5322\",\"elType\":\"section\",\"settings\":{\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"5188113\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"d9b24b7\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"View All\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_text_decoration\":\"none\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_color_responsive\":\"#3F5A29\",\"st_button_normal_background_background_color\":\"#FFD402\",\"st_button_hover_color_responsive\":\"#FFD402\",\"st_button_hover_background_background_color\":\"#3F5A29\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30164d28\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"6e6d8a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":142,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-services.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"bd233da\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6535a16\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"937e2e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"85e7aee\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Lawn Services\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"d9723d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"c908972\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37c1cce6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":143,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/driveway-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5b3e60ba\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3b291bbf\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"20b91942\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5649f719\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Driveway Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6300b69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"256ddf68\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3735f0b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":144,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/deck-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"741128a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3691562\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"3c8a0e6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5eb1b3b9\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Deck Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"25f37292\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"61c9ff8e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d41e618\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"8781ee3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":145,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/weed-control.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"bd84c7d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"14f7965\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"fb2459e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"0582197\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Weed Control \",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"f7b0fa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"0197d9e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f3de9c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":146,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/grass-feed.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"75ba950\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"23edbf4\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"ad70b3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"b1c4ac7\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Grass Feed\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6f592ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"0043a3b\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"790dd775\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"360\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"160\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"140\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"background_overlay_color_b\":\"#000414\",\"background_overlay_image\":{\"id\":186,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/a-gardener-watering-plants-in-a-flowerbed-2RT8DWL-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"a2ed5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"7e37f762\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Landscaping\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a092069\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d5099\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need Someone To Take Care Your Lawn and Driveway?\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=07ee36d\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1198756c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"66521a56\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":20,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":4,\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"1a89d099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.5090000000000003410605131648480892181396484375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"id\":191,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/happy-gardeners-with-plants-and-lawn-mower-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"space-between\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_color\":\"#FFFFFF00\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":9,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"46b821c1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":219,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":183,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"449971a9\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Make Appointment & Take Care Your Garden\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=secondary\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=93191b3\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_content_title_color_hover_responsive\":\"#FFFFFF\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#FFFFFF\",\"st_icon_color_responsive\":\"#00E5CC\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#00E5CC\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":false},{\"id\":\"13747b6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.4909999999999996589394868351519107818603515625,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1a13f42e\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"178***1721830795182\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fde8487\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"59883b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1617542a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Process\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29c7aa96\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Complete Every Step Carefully\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ced0d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d62463d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"18cf7834\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"41f79872\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-consult-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consultation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65e1b761\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"span\",\"title_color\":\"#FFD402\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#006943\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12cdbf13\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"4175d29\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-pencil_art-light\",\"library\":\"jkiticon\"},\"title_text\":\"Design Installation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2adabf01\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b628\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"569b3221\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consturction \",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"67d6b2e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6fff79c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"53c9a76e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"title_text\":\"Finished Work\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"555aace0\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d57540b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"71\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardening-background-with-garden-tolls-A9BGNJU.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"147831a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5a53d120\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"20\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Years of Experience\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"488f4727\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"6b8f6eae\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"76666759\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"6f532f9e\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"2850\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Happy Customers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"265fd738\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5473dc22\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"64\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Expert Landscapers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b38731e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"4945f2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"627cd42c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"65e3182\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.56499999999999772626324556767940521240234375,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"43108b53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Projects\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45328989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Project We Have Done\\n\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"f382082\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.49900000000000233058017329312860965728759765625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":40,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"55ecfb57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"67afcbfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.0330000000000012505552149377763271331787109375,\"_inline_size_tablet\":23,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"4989aa04\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Projects\",\"align\":\"right\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"left\",\"hover_animation\":\"float\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"32515d84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"3f5753f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"21982cfb\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":196,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Cutting-Leaf.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Cutting Leaf\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"404dc561\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"58d29b54\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":197,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Home-Garden.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Home Garden\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"3bff1dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"3c24185a\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":195,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/build-backyard.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Build Backyard\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_image_height_responsive_tablet\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b3cb58d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_image\":{\"id\":201,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-moving-aerial-photo-Z8KDGJ9-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_color\":\"#0000007D\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"79705206\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"51c9a732\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73b2fe0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"What They Say About Us\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4876e632\",\"elType\":\"widget\",\"settings\":{\"sg_layout_testimonial_choose\":\"style-2\",\"sg_testimonials_image_size_imagesize_size\":\"medium\",\"sg_testimonials_list\":[{\"sg_testimonials_list_client_avatar\":{\"id\":\"75\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/3SUMAU.jpg\"},\"_id\":\"6e9b2e1\",\"sg_testimonials_list_client_name\":\"Regan Traynor\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"76\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/CASCKD8.jpg\"},\"sg_testimonials_list_client_name\":\"Maisha Dunn\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"d069a43\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"77\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/MKLVKTE.jpg\"},\"sg_testimonials_list_client_name\":\"Reis Leonard\",\"sg_testimonials_list_designation\":\"Businessman\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"05c24f5\"}],\"st_wrapper_alignment_responsive\":\"left\",\"st_client_name_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_description_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_client_name_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_client_designation_normal_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_client_designation_normal_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=d343bdf\",\"st_rating_color_responsive\":\"\",\"st_client_name_normal_color_responsive\":\"\",\"st_quote_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_layout_background_background_color\":\"\"},\"st_layout_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_layout_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_wrapper_fix_height\":\"\",\"sg_setting_autoplay\":\"yes\",\"sg_setting_autoplay_pause\":\"\",\"sg_setting_arrow\":\"\",\"sg_setting_arrow_position\":\"middle-edge\",\"sg_setting_dots\":\"\",\"sg_setting_quote\":\"yes\",\"sg_setting_rating\":\"\",\"st_layout_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_layout_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_slide_show_responsive\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"sg_setting_quote_icon\":{\"value\":\"jki jki-quote-light\",\"library\":\"jkiticon\"},\"sg_layout_image_position\":\"below\",\"st_layout_background_background_background\":\"classic\",\"st_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position\":\"\",\"st_quote_override_position_top_responsive\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"st_quote_override_position_left_responsive\":{\"unit\":\"px\",\"size\":442,\"sizes\":[]},\"st_client_name_normal_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_quote_normal_font_size_responsive\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"st_client_image_margin_responsive\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_rating_font_size_responsive\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"st_rating_margin_right_responsive\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_setting_slide_show_responsive_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"st_wrapper_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position_top_responsive_tablet\":{\"unit\":\"px\",\"size\":249,\"sizes\":[]},\"st_quote_override_position_top_responsive_mobile\":{\"unit\":\"px\",\"size\":193,\"sizes\":[]},\"st_quote_override_position_left_responsive_tablet\":{\"unit\":\"px\",\"size\":265,\"sizes\":[]},\"st_quote_override_position_left_responsive_mobile\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]},\"st_quote_normal_font_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"st_description_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_normal_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64afd05f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"746d276b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"30338dfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f950be4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ca735b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5d6ca3ad\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_title_hover_color_responsive\":\"globals\\/colors?id=secondary\",\"st_readmore_hover_color_responsive\":\"globals\\/colors?id=secondary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#646974\",\"st_excerpt_color_responsive\":\"#646974\",\"st_title_normal_color_responsive\":\"#272B36\",\"st_thumbnail_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_title_hover_color_responsive\":\"#FA8D25\",\"st_readmore_normal_color_responsive\":\"#FA8D25\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":false}],\"isInner\":false}]'),(2181,354,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(2182,354,'_elementor_pro_version','3.10.1'),(2183,355,'_elementor_edit_mode','builder'),(2184,355,'_elementor_template_type','wp-page'),(2185,355,'_elementor_version','3.23.2'),(2186,355,'_wp_page_template','default'),(2187,355,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'); INSERT INTO `victorq_postmeta` VALUES (2188,355,'_elementor_data','[{\"id\":\"35495243\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"Eldery male gardener using scissors for bushes\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"160\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0,\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_size_tablet\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"top center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00160E\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b\":\"#00000054\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_slideshow_gallery\":[{\"id\":154,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-02-5.jpg\"},{\"id\":155,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-03-3.jpg\"},{\"id\":156,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-04-3.jpg\"},{\"id\":157,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-01-5.jpg\"}],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"739a26d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":65,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"56\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=06a34e7\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"132d1a8e\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"For All \",\"sg_title_focused\":\" Luxury\",\"sg_title_after\":\"Cleaning And Maintenance Services\",\"sg_title_html_tag\":\"h1\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=primary\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":87.606999999999999317878973670303821563720703125}},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"7c49583a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":87.832999999999998408384271897375583648681640625}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"635cb25b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"23cf340e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37.85499999999999687361196265555918216705322265625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":48,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1c4c950d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4768b6f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":62.14500000000000312638803734444081783294677734375,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"flex-start\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":52,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"34c0badb\",\"elType\":\"widget\",\"settings\":{\"sg_video_button_title\":\"Play Video\",\"sg_video_button_icon\":{\"value\":\"jki jki-play\",\"library\":\"jkiticon\"},\"sg_video_url\":\"#\",\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_width_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_line_height_responsive\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#FFD402\",\"st_button_normal_glow_color_responsive\":\"#00694361\",\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"_element_width\":\"auto\",\"__globals__\":{\"st_button_normal_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=accent\",\"st_border_normal_border_border_color\":\"\",\"st_button_hover_text_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_glow_color_responsive\":\"\"},\"st_button_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_button_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_width_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_line_height_responsive_mobile\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"st_border_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_border_normal_border_border_color\":\"#FFD027\",\"st_button_line_height_responsive_tablet\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"st_button_normal_background_background_color\":\"#006943\",\"st_button_hover_text_color_responsive\":\"#006943\",\"st_button_hover_background_background_color\":\"#FFD402\",\"sg_video_auto_play\":\"\",\"sg_video_mute\":\"\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_video_button\"},{\"id\":\"232ec8da\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Intro\",\"align\":\"right\",\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"hide_mobile\":\"hidden-mobile\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#00160E\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49b348ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"edc2dbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.00200000000000244426701101474463939666748046875,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"4e2246bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Prestige Luxury Cleanings LLC\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"139cc45f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Lawn and Driveway Cleaning Services\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dc78e71\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"597dc67d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"26cf3840\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"3b19bda0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":167,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"980\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a46c929\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"7c4d8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Public Liability Insurance\",\"_id\":\"a978734\"},{\"text\":\"Environmentally Friendly\",\"_id\":\"1cd10a1\"},{\"text\":\"On Time, Every Time\",\"_id\":\"c6767db\"},{\"text\":\"Beautiful Garden Designs\",\"_id\":\"d4743f4\"},{\"text\":\"Modern Machinery And Tool\",\"_id\":\"535c17d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"398321ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4c7c15d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.9129999999999967030817060731351375579833984375,\"_inline_size_tablet\":100,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5683e90d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":162,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"860\",\"height\":\"980\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b6190b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":163,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"-59\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"250636f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"713aa588\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"51a71b71\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#00160E\",\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=primary\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=06a34e7\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"st_content_title_color_responsive\":\"#7F7F7F\",\"st_super_color_responsive\":\"#FFD402\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\",\"sg_setting_html_tag\":\"span\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5557874f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"73847855\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":345,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Pressure-Wash.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"b1058a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":224,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":478,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":325,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"69098afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"40\",\"bottom\":\"80\",\"left\":\"40\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"7cb7bf82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91cb5d9\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26358abf\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Have The Perfect Solution For Your Lawn and Driveway Problems\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15a36cc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42c8d36c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"7114454f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"76f24ca8\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Variation Gardening\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"138cc39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"28a78a06\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Expert Landscapers\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c5ac2bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"38fdb183\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"3ce0b95b\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Affordable Price\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-save-money-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4c80f133\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"7451fb11\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Free Consultation\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-Consultancy-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e93f2c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"39a46e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"6773b2a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"87647bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Providing Services For All Your Residential And Commercial Needs\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3d4509\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6960c5\",\"elType\":\"section\",\"settings\":{\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"20701e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"a2e2fb9\",\"elType\":\"widget\",\"settings\":{\"premium_carousel_slider_content\":[\"Service 5\",\"Service 4\",\"Service 3\",\"Service 2\",\"service 1\"],\"premium_carousel_templates_repeater\":[],\"premium_carousel_responsive_desktop\":3,\"premium_carousel_responsive_tabs\":2,\"premium_carousel_nav_options\":\"none\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"premium_carousel_autoplay_speed\":10000,\"premium_carousel_arrow_icon_prev\":\"left_arrow_chevron\",\"premium_carousel_arrow_icon_next\":\"right_arrow_chevron\",\"premium_carousel_arrow_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"premium_carousel_arrow_position\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"premium_carousel_arrows_radius_normal\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"__globals__\":{\"premium_carousel_arrow_color\":\"globals\\/colors?id=06a34e7\",\"premium_carousel_arrow_bg_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"premium-carousel-widget\"},{\"id\":\"aed5322\",\"elType\":\"section\",\"settings\":{\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"5188113\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"d9b24b7\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"View All\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_text_decoration\":\"none\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_color_responsive\":\"#3F5A29\",\"st_button_normal_background_background_color\":\"#FFD402\",\"st_button_hover_color_responsive\":\"#FFD402\",\"st_button_hover_background_background_color\":\"#3F5A29\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30164d28\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"6e6d8a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":142,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-services.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"bd233da\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6535a16\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"937e2e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"85e7aee\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Lawn Services\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"d9723d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"c908972\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37c1cce6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":143,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/driveway-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5b3e60ba\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3b291bbf\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"20b91942\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5649f719\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Driveway Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6300b69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"256ddf68\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3735f0b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":144,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/deck-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"741128a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3691562\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"3c8a0e6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5eb1b3b9\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Deck Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"25f37292\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"61c9ff8e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d41e618\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"8781ee3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":145,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/weed-control.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"bd84c7d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"14f7965\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"fb2459e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"0582197\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Weed Control \",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"f7b0fa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"0197d9e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f3de9c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":146,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/grass-feed.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"75ba950\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"23edbf4\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"ad70b3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"b1c4ac7\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Grass Feed\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6f592ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"0043a3b\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"790dd775\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"360\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"160\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"140\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"background_overlay_color_b\":\"#000414\",\"background_overlay_image\":{\"id\":186,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/a-gardener-watering-plants-in-a-flowerbed-2RT8DWL-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"a2ed5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"7e37f762\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Landscaping\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a092069\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d5099\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need Someone To Take Care Your Lawn and Driveway?\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=07ee36d\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1198756c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"66521a56\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":20,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":4,\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"1a89d099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.5090000000000003410605131648480892181396484375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"id\":191,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/happy-gardeners-with-plants-and-lawn-mower-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"space-between\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_color\":\"#FFFFFF00\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":9,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"46b821c1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":219,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":183,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"449971a9\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Make Appointment & Take Care Your Garden\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=secondary\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=93191b3\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_content_title_color_hover_responsive\":\"#FFFFFF\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#FFFFFF\",\"st_icon_color_responsive\":\"#00E5CC\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#00E5CC\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":false},{\"id\":\"13747b6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.4909999999999996589394868351519107818603515625,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1a13f42e\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"178***1721830795182\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fde8487\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"59883b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1617542a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Process\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29c7aa96\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Complete Every Step Carefully\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ced0d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d62463d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"18cf7834\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"41f79872\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-consult-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consultation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65e1b761\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"span\",\"title_color\":\"#FFD402\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#006943\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12cdbf13\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"4175d29\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-pencil_art-light\",\"library\":\"jkiticon\"},\"title_text\":\"Design Installation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2adabf01\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b628\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"569b3221\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consturction \",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"67d6b2e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6fff79c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"53c9a76e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"title_text\":\"Finished Work\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"555aace0\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d57540b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"71\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardening-background-with-garden-tolls-A9BGNJU.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"147831a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5a53d120\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"20\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Years of Experience\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"488f4727\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"6b8f6eae\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"76666759\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"6f532f9e\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"2850\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Happy Customers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"265fd738\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5473dc22\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"64\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Expert Landscapers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b38731e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"4945f2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"627cd42c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"65e3182\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.56499999999999772626324556767940521240234375,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"43108b53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Projects\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45328989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Project We Have Done\\n\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"f382082\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.49900000000000233058017329312860965728759765625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":40,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"55ecfb57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"67afcbfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.0330000000000012505552149377763271331787109375,\"_inline_size_tablet\":23,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"4989aa04\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Projects\",\"align\":\"right\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"left\",\"hover_animation\":\"float\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"32515d84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"3f5753f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"21982cfb\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":196,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Cutting-Leaf.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Cutting Leaf\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"404dc561\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"58d29b54\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":197,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Home-Garden.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Home Garden\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"3bff1dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"3c24185a\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":195,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/build-backyard.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Build Backyard\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_image_height_responsive_tablet\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b3cb58d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_image\":{\"id\":201,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-moving-aerial-photo-Z8KDGJ9-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_color\":\"#0000007D\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"79705206\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"51c9a732\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73b2fe0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"What They Say About Us\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4876e632\",\"elType\":\"widget\",\"settings\":{\"sg_layout_testimonial_choose\":\"style-2\",\"sg_testimonials_image_size_imagesize_size\":\"medium\",\"sg_testimonials_list\":[{\"sg_testimonials_list_client_avatar\":{\"id\":\"75\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/3SUMAU.jpg\"},\"_id\":\"6e9b2e1\",\"sg_testimonials_list_client_name\":\"Regan Traynor\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"76\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/CASCKD8.jpg\"},\"sg_testimonials_list_client_name\":\"Maisha Dunn\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"d069a43\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"77\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/MKLVKTE.jpg\"},\"sg_testimonials_list_client_name\":\"Reis Leonard\",\"sg_testimonials_list_designation\":\"Businessman\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"05c24f5\"}],\"st_wrapper_alignment_responsive\":\"left\",\"st_client_name_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_description_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_client_name_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_client_designation_normal_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_client_designation_normal_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=d343bdf\",\"st_rating_color_responsive\":\"\",\"st_client_name_normal_color_responsive\":\"\",\"st_quote_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_layout_background_background_color\":\"\"},\"st_layout_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_layout_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_wrapper_fix_height\":\"\",\"sg_setting_autoplay\":\"yes\",\"sg_setting_autoplay_pause\":\"\",\"sg_setting_arrow\":\"\",\"sg_setting_arrow_position\":\"middle-edge\",\"sg_setting_dots\":\"\",\"sg_setting_quote\":\"yes\",\"sg_setting_rating\":\"\",\"st_layout_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_layout_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_slide_show_responsive\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"sg_setting_quote_icon\":{\"value\":\"jki jki-quote-light\",\"library\":\"jkiticon\"},\"sg_layout_image_position\":\"below\",\"st_layout_background_background_background\":\"classic\",\"st_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position\":\"\",\"st_quote_override_position_top_responsive\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"st_quote_override_position_left_responsive\":{\"unit\":\"px\",\"size\":442,\"sizes\":[]},\"st_client_name_normal_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_quote_normal_font_size_responsive\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"st_client_image_margin_responsive\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_rating_font_size_responsive\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"st_rating_margin_right_responsive\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_setting_slide_show_responsive_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"st_wrapper_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position_top_responsive_tablet\":{\"unit\":\"px\",\"size\":249,\"sizes\":[]},\"st_quote_override_position_top_responsive_mobile\":{\"unit\":\"px\",\"size\":193,\"sizes\":[]},\"st_quote_override_position_left_responsive_tablet\":{\"unit\":\"px\",\"size\":265,\"sizes\":[]},\"st_quote_override_position_left_responsive_mobile\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]},\"st_quote_normal_font_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"st_description_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_normal_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64afd05f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"746d276b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"30338dfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f950be4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ca735b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5d6ca3ad\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_title_hover_color_responsive\":\"globals\\/colors?id=secondary\",\"st_readmore_hover_color_responsive\":\"globals\\/colors?id=secondary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#646974\",\"st_excerpt_color_responsive\":\"#646974\",\"st_title_normal_color_responsive\":\"#272B36\",\"st_thumbnail_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_title_hover_color_responsive\":\"#FA8D25\",\"st_readmore_normal_color_responsive\":\"#FA8D25\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":false}],\"isInner\":false}]'),(2189,355,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(2190,355,'_elementor_pro_version','3.10.1'),(2191,356,'_elementor_edit_mode','builder'),(2192,356,'_elementor_template_type','wp-page'),(2193,356,'_elementor_version','3.23.2'),(2194,356,'_wp_page_template','default'),(2195,356,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2196,356,'_elementor_data','[{\"id\":\"35495243\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"Eldery male gardener using scissors for bushes\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"160\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0,\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_size_tablet\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"top center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00160E\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b\":\"#00000054\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_slideshow_gallery\":[{\"id\":154,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-02-5.jpg\"},{\"id\":155,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-03-3.jpg\"},{\"id\":156,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-04-3.jpg\"},{\"id\":157,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-01-5.jpg\"}],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"739a26d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":65,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"56\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=06a34e7\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"132d1a8e\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"For All \",\"sg_title_focused\":\" Luxury\",\"sg_title_after\":\"Cleaning And Maintenance Services\",\"sg_title_html_tag\":\"h1\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=primary\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":87.606999999999999317878973670303821563720703125}},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"7c49583a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":87.832999999999998408384271897375583648681640625}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"635cb25b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"23cf340e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37.85499999999999687361196265555918216705322265625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":48,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1c4c950d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4768b6f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":62.14500000000000312638803734444081783294677734375,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"flex-start\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":52,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"34c0badb\",\"elType\":\"widget\",\"settings\":{\"sg_video_button_title\":\"Play Video\",\"sg_video_button_icon\":{\"value\":\"jki jki-play\",\"library\":\"jkiticon\"},\"sg_video_url\":\"#\",\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_width_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_line_height_responsive\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#FFD402\",\"st_button_normal_glow_color_responsive\":\"#00694361\",\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"_element_width\":\"auto\",\"__globals__\":{\"st_button_normal_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=accent\",\"st_border_normal_border_border_color\":\"\",\"st_button_hover_text_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_glow_color_responsive\":\"\"},\"st_button_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_button_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_width_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_line_height_responsive_mobile\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"st_border_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_border_normal_border_border_color\":\"#FFD027\",\"st_button_line_height_responsive_tablet\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"st_button_normal_background_background_color\":\"#006943\",\"st_button_hover_text_color_responsive\":\"#006943\",\"st_button_hover_background_background_color\":\"#FFD402\",\"sg_video_auto_play\":\"\",\"sg_video_mute\":\"\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_video_button\"},{\"id\":\"232ec8da\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Intro\",\"align\":\"right\",\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"hide_mobile\":\"hidden-mobile\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#00160E\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49b348ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"edc2dbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.00200000000000244426701101474463939666748046875,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"4e2246bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Prestige Luxury Cleanings LLC\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"139cc45f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Lawn and Driveway Cleaning Services\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dc78e71\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"597dc67d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"26cf3840\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"3b19bda0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":167,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"980\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a46c929\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"7c4d8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Public Liability Insurance\",\"_id\":\"a978734\"},{\"text\":\"Environmentally Friendly\",\"_id\":\"1cd10a1\"},{\"text\":\"On Time, Every Time\",\"_id\":\"c6767db\"},{\"text\":\"Beautiful Garden Designs\",\"_id\":\"d4743f4\"},{\"text\":\"Modern Machinery And Tool\",\"_id\":\"535c17d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"398321ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4c7c15d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.9129999999999967030817060731351375579833984375,\"_inline_size_tablet\":100,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5683e90d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":162,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"860\",\"height\":\"980\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b6190b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":163,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"-59\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"250636f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"713aa588\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"51a71b71\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#00160E\",\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=primary\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=06a34e7\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"st_content_title_color_responsive\":\"#7F7F7F\",\"st_super_color_responsive\":\"#FFD402\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\",\"sg_setting_html_tag\":\"span\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5557874f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"73847855\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":345,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Pressure-Wash.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"b1058a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":224,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":478,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":325,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"69098afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"40\",\"bottom\":\"80\",\"left\":\"40\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"7cb7bf82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91cb5d9\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26358abf\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Have The Perfect Solution For Your Lawn and Driveway Problems\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15a36cc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42c8d36c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"7114454f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"76f24ca8\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Variation Gardening\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"138cc39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"28a78a06\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Expert Landscapers\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c5ac2bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"38fdb183\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"3ce0b95b\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Affordable Price\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-save-money-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4c80f133\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"7451fb11\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Free Consultation\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-Consultancy-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e93f2c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"39a46e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"6773b2a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"87647bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Providing Services For All Your Residential And Commercial Needs\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3d4509\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6960c5\",\"elType\":\"section\",\"settings\":{\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"20701e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"a2e2fb9\",\"elType\":\"widget\",\"settings\":{\"premium_carousel_slider_content\":[\"Service 5\",\"Service 4\",\"Service 3\",\"Service 2\",\"service 1\"],\"premium_carousel_templates_repeater\":[],\"premium_carousel_responsive_desktop\":3,\"premium_carousel_responsive_tabs\":2,\"premium_carousel_nav_options\":\"none\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"premium_carousel_autoplay_speed\":10000,\"premium_carousel_arrow_icon_prev\":\"left_arrow_chevron\",\"premium_carousel_arrow_icon_next\":\"right_arrow_chevron\",\"premium_carousel_arrow_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"premium_carousel_arrow_position\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"premium_carousel_arrows_radius_normal\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"__globals__\":{\"premium_carousel_arrow_color\":\"globals\\/colors?id=06a34e7\",\"premium_carousel_arrow_bg_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"premium-carousel-widget\"},{\"id\":\"aed5322\",\"elType\":\"section\",\"settings\":{\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"5188113\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"d9b24b7\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"View All\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_text_decoration\":\"none\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_color_responsive\":\"#3F5A29\",\"st_button_normal_background_background_color\":\"#FFD402\",\"st_button_hover_color_responsive\":\"#FFD402\",\"st_button_hover_background_background_color\":\"#3F5A29\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30164d28\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"6e6d8a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":142,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-services.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"bd233da\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6535a16\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"937e2e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"85e7aee\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Lawn Services\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"d9723d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"c908972\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37c1cce6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":143,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/driveway-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5b3e60ba\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3b291bbf\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"20b91942\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5649f719\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Driveway Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6300b69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"256ddf68\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3735f0b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":144,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/deck-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"741128a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3691562\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"3c8a0e6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5eb1b3b9\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Deck Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"25f37292\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"61c9ff8e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d41e618\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"8781ee3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":145,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/weed-control.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"bd84c7d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"14f7965\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"fb2459e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"0582197\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Weed Control \",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"f7b0fa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"0197d9e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f3de9c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":146,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/grass-feed.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"75ba950\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"23edbf4\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"ad70b3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"b1c4ac7\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Grass Feed\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6f592ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"0043a3b\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"790dd775\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"360\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"160\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"140\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"background_overlay_color_b\":\"#000414\",\"background_overlay_image\":{\"id\":186,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/a-gardener-watering-plants-in-a-flowerbed-2RT8DWL-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"a2ed5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"7e37f762\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Landscaping\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a092069\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d5099\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need Someone To Take Care Your Lawn and Driveway?\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=07ee36d\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1198756c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"66521a56\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":20,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":4,\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"1a89d099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.5090000000000003410605131648480892181396484375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"id\":191,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/happy-gardeners-with-plants-and-lawn-mower-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"space-between\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_color\":\"#FFFFFF00\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":9,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"46b821c1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":219,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":183,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"449971a9\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Make Appointment & Take Care Your Garden\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=secondary\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=93191b3\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_content_title_color_hover_responsive\":\"#FFFFFF\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#FFFFFF\",\"st_icon_color_responsive\":\"#00E5CC\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#00E5CC\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":false},{\"id\":\"13747b6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.4909999999999996589394868351519107818603515625,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1a13f42e\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"178***1721830795182\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fde8487\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"59883b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1617542a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Process\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29c7aa96\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Complete Every Step Carefully\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ced0d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d62463d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"18cf7834\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"41f79872\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-consult-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consultation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65e1b761\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"span\",\"title_color\":\"#FFD402\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#006943\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12cdbf13\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"4175d29\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-pencil_art-light\",\"library\":\"jkiticon\"},\"title_text\":\"Design Installation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2adabf01\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b628\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"569b3221\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consturction \",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"67d6b2e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6fff79c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"53c9a76e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"title_text\":\"Finished Work\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"555aace0\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d57540b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"71\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardening-background-with-garden-tolls-A9BGNJU.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"147831a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5a53d120\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"20\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Years of Experience\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"488f4727\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"6b8f6eae\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"76666759\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"6f532f9e\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"2850\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Happy Customers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"265fd738\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5473dc22\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"64\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Expert Landscapers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b38731e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"4945f2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"627cd42c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"65e3182\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.56499999999999772626324556767940521240234375,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"43108b53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Projects\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45328989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Project We Have Done\\n\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"f382082\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.49900000000000233058017329312860965728759765625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":40,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"55ecfb57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"67afcbfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.0330000000000012505552149377763271331787109375,\"_inline_size_tablet\":23,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"4989aa04\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Projects\",\"align\":\"right\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"left\",\"hover_animation\":\"float\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"32515d84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"3f5753f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"21982cfb\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":196,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Cutting-Leaf.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Cutting Leaf\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"404dc561\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"58d29b54\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":197,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Home-Garden.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Home Garden\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"3bff1dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"3c24185a\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":195,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/build-backyard.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Build Backyard\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_image_height_responsive_tablet\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b3cb58d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_image\":{\"id\":201,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-moving-aerial-photo-Z8KDGJ9-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_color\":\"#0000007D\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"79705206\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"51c9a732\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73b2fe0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"What They Say About Us\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4876e632\",\"elType\":\"widget\",\"settings\":{\"sg_layout_testimonial_choose\":\"style-2\",\"sg_testimonials_image_size_imagesize_size\":\"medium\",\"sg_testimonials_list\":[{\"sg_testimonials_list_client_avatar\":{\"id\":\"75\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/3SUMAU.jpg\"},\"_id\":\"6e9b2e1\",\"sg_testimonials_list_client_name\":\"Regan Traynor\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"76\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/CASCKD8.jpg\"},\"sg_testimonials_list_client_name\":\"Maisha Dunn\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"d069a43\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"77\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/MKLVKTE.jpg\"},\"sg_testimonials_list_client_name\":\"Reis Leonard\",\"sg_testimonials_list_designation\":\"Businessman\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"05c24f5\"}],\"st_wrapper_alignment_responsive\":\"left\",\"st_client_name_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_description_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_client_name_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_client_designation_normal_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_client_designation_normal_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=d343bdf\",\"st_rating_color_responsive\":\"\",\"st_client_name_normal_color_responsive\":\"\",\"st_quote_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_layout_background_background_color\":\"\"},\"st_layout_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_layout_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_wrapper_fix_height\":\"\",\"sg_setting_autoplay\":\"yes\",\"sg_setting_autoplay_pause\":\"\",\"sg_setting_arrow\":\"\",\"sg_setting_arrow_position\":\"middle-edge\",\"sg_setting_dots\":\"\",\"sg_setting_quote\":\"yes\",\"sg_setting_rating\":\"\",\"st_layout_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_layout_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_slide_show_responsive\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"sg_setting_quote_icon\":{\"value\":\"jki jki-quote-light\",\"library\":\"jkiticon\"},\"sg_layout_image_position\":\"below\",\"st_layout_background_background_background\":\"classic\",\"st_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position\":\"\",\"st_quote_override_position_top_responsive\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"st_quote_override_position_left_responsive\":{\"unit\":\"px\",\"size\":442,\"sizes\":[]},\"st_client_name_normal_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_quote_normal_font_size_responsive\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"st_client_image_margin_responsive\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_rating_font_size_responsive\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"st_rating_margin_right_responsive\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_setting_slide_show_responsive_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"st_wrapper_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position_top_responsive_tablet\":{\"unit\":\"px\",\"size\":249,\"sizes\":[]},\"st_quote_override_position_top_responsive_mobile\":{\"unit\":\"px\",\"size\":193,\"sizes\":[]},\"st_quote_override_position_left_responsive_tablet\":{\"unit\":\"px\",\"size\":265,\"sizes\":[]},\"st_quote_override_position_left_responsive_mobile\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]},\"st_quote_normal_font_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"st_description_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_normal_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64afd05f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"746d276b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"30338dfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f950be4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ca735b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5d6ca3ad\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_title_hover_color_responsive\":\"globals\\/colors?id=secondary\",\"st_readmore_hover_color_responsive\":\"globals\\/colors?id=secondary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#646974\",\"st_excerpt_color_responsive\":\"#646974\",\"st_title_normal_color_responsive\":\"#272B36\",\"st_thumbnail_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_title_hover_color_responsive\":\"#FA8D25\",\"st_readmore_normal_color_responsive\":\"#FA8D25\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":false}],\"isInner\":false}]'),(2197,356,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(2198,356,'_elementor_pro_version','3.10.1'),(2199,357,'_elementor_edit_mode','builder'),(2200,357,'_elementor_template_type','wp-page'),(2201,357,'_elementor_version','3.23.2'),(2202,357,'_wp_page_template','default'),(2203,357,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2204,357,'_elementor_data','[{\"id\":\"35495243\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"Eldery male gardener using scissors for bushes\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"160\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0,\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_size_tablet\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"top center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00160E\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b\":\"#00000054\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_slideshow_gallery\":[{\"id\":154,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-02-5.jpg\"},{\"id\":155,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-03-3.jpg\"},{\"id\":156,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-04-3.jpg\"},{\"id\":157,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-01-5.jpg\"}],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"739a26d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":65,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"56\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=06a34e7\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"132d1a8e\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"For All \",\"sg_title_focused\":\" Luxury\",\"sg_title_after\":\"Cleaning And Maintenance Services\",\"sg_title_html_tag\":\"h1\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=primary\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":87.606999999999999317878973670303821563720703125}},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"7c49583a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":87.832999999999998408384271897375583648681640625}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"635cb25b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"23cf340e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37.85499999999999687361196265555918216705322265625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":48,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1c4c950d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4768b6f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":62.14500000000000312638803734444081783294677734375,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"flex-start\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":52,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"34c0badb\",\"elType\":\"widget\",\"settings\":{\"sg_video_button_title\":\"Play Video\",\"sg_video_button_icon\":{\"value\":\"jki jki-play\",\"library\":\"jkiticon\"},\"sg_video_url\":\"#\",\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_width_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_line_height_responsive\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#FFD402\",\"st_button_normal_glow_color_responsive\":\"#00694361\",\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"_element_width\":\"auto\",\"__globals__\":{\"st_button_normal_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=accent\",\"st_border_normal_border_border_color\":\"\",\"st_button_hover_text_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_glow_color_responsive\":\"\"},\"st_button_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_button_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_width_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_line_height_responsive_mobile\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"st_border_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_border_normal_border_border_color\":\"#FFD027\",\"st_button_line_height_responsive_tablet\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"st_button_normal_background_background_color\":\"#006943\",\"st_button_hover_text_color_responsive\":\"#006943\",\"st_button_hover_background_background_color\":\"#FFD402\",\"sg_video_auto_play\":\"\",\"sg_video_mute\":\"\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_video_button\"},{\"id\":\"232ec8da\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Intro\",\"align\":\"right\",\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"hide_mobile\":\"hidden-mobile\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#00160E\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49b348ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"edc2dbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.00200000000000244426701101474463939666748046875,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"4e2246bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Prestige Luxury Cleanings LLC\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"139cc45f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Lawn and Driveway Cleaning Services\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dc78e71\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"597dc67d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"26cf3840\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"3b19bda0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":167,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"980\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a46c929\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"7c4d8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Public Liability Insurance\",\"_id\":\"a978734\"},{\"text\":\"Environmentally Friendly\",\"_id\":\"1cd10a1\"},{\"text\":\"On Time, Every Time\",\"_id\":\"c6767db\"},{\"text\":\"Beautiful Garden Designs\",\"_id\":\"d4743f4\"},{\"text\":\"Modern Machinery And Tool\",\"_id\":\"535c17d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"398321ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4c7c15d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.9129999999999967030817060731351375579833984375,\"_inline_size_tablet\":100,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5683e90d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":162,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"860\",\"height\":\"980\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b6190b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":163,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"-59\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"250636f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"713aa588\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"51a71b71\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#00160E\",\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=primary\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=06a34e7\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"st_content_title_color_responsive\":\"#7F7F7F\",\"st_super_color_responsive\":\"#FFD402\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\",\"sg_setting_html_tag\":\"span\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5557874f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"73847855\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":345,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Pressure-Wash.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"b1058a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":224,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":478,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":325,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"69098afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"40\",\"bottom\":\"80\",\"left\":\"40\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"7cb7bf82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91cb5d9\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26358abf\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Have The Perfect Solution For Your Lawn and Driveway Problems\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15a36cc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42c8d36c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"7114454f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"76f24ca8\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Variation Gardening\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"138cc39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"28a78a06\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Expert Landscapers\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c5ac2bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"38fdb183\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"3ce0b95b\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Affordable Price\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-save-money-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4c80f133\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"7451fb11\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Free Consultation\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-Consultancy-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e93f2c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"39a46e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"6773b2a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"87647bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Providing Services For All Your Residential And Commercial Needs\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3d4509\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6960c5\",\"elType\":\"section\",\"settings\":{\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"20701e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"a2e2fb9\",\"elType\":\"widget\",\"settings\":{\"premium_carousel_slider_content\":[\"Service 5\",\"Service 4\",\"Service 3\",\"Service 2\",\"service 1\"],\"premium_carousel_templates_repeater\":[],\"premium_carousel_responsive_desktop\":3,\"premium_carousel_responsive_tabs\":2,\"premium_carousel_nav_options\":\"none\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"premium_carousel_autoplay_speed\":10000,\"premium_carousel_arrow_icon_prev\":\"left_arrow_chevron\",\"premium_carousel_arrow_icon_next\":\"right_arrow_chevron\",\"premium_carousel_arrow_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"premium_carousel_arrow_position\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"premium_carousel_arrows_radius_normal\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"__globals__\":{\"premium_carousel_arrow_color\":\"globals\\/colors?id=06a34e7\",\"premium_carousel_arrow_bg_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"premium-carousel-widget\"},{\"id\":\"aed5322\",\"elType\":\"section\",\"settings\":{\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"5188113\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"d9b24b7\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"View All\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_text_decoration\":\"none\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_color_responsive\":\"#3F5A29\",\"st_button_normal_background_background_color\":\"#FFD402\",\"st_button_hover_color_responsive\":\"#FFD402\",\"st_button_hover_background_background_color\":\"#3F5A29\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30164d28\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"6e6d8a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":142,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-services.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"bd233da\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6535a16\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"937e2e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"85e7aee\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Lawn Services\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"d9723d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"c908972\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37c1cce6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":143,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/driveway-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5b3e60ba\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3b291bbf\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"20b91942\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5649f719\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Driveway Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6300b69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"256ddf68\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3735f0b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":144,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/deck-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"741128a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3691562\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"3c8a0e6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5eb1b3b9\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Deck Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"25f37292\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"61c9ff8e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d41e618\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"8781ee3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":145,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/weed-control.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"bd84c7d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"14f7965\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"fb2459e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"0582197\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Weed Control \",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"f7b0fa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"0197d9e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f3de9c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":146,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/grass-feed.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"75ba950\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"23edbf4\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"ad70b3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"b1c4ac7\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Grass Feed\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6f592ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"0043a3b\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"790dd775\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"360\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"160\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"140\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"background_overlay_color_b\":\"#000414\",\"background_overlay_image\":{\"id\":186,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/a-gardener-watering-plants-in-a-flowerbed-2RT8DWL-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"a2ed5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"7e37f762\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Landscaping\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a092069\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d5099\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need Someone To Take Care Your Lawn and Driveway?\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=07ee36d\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1198756c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"66521a56\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":20,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":4,\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"1a89d099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.5090000000000003410605131648480892181396484375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"id\":191,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/happy-gardeners-with-plants-and-lawn-mower-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"space-between\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_color\":\"#FFFFFF00\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":9,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"46b821c1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":219,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":183,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"449971a9\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Make Appointment & Take Care Your Garden\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=secondary\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=93191b3\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_content_title_color_hover_responsive\":\"#FFFFFF\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#FFFFFF\",\"st_icon_color_responsive\":\"#00E5CC\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#00E5CC\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":false},{\"id\":\"13747b6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.4909999999999996589394868351519107818603515625,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1a13f42e\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"178***1721830795182\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fde8487\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"59883b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1617542a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Process\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29c7aa96\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Complete Every Step Carefully\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ced0d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d62463d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"18cf7834\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"41f79872\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-consult-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consultation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65e1b761\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"span\",\"title_color\":\"#FFD402\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#006943\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12cdbf13\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"4175d29\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-pencil_art-light\",\"library\":\"jkiticon\"},\"title_text\":\"Design Installation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2adabf01\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b628\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"569b3221\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consturction \",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"67d6b2e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6fff79c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"53c9a76e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"title_text\":\"Finished Work\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"555aace0\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d57540b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"71\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardening-background-with-garden-tolls-A9BGNJU.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"147831a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5a53d120\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"20\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Years of Experience\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"488f4727\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"6b8f6eae\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"76666759\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"6f532f9e\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"2850\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Happy Customers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"265fd738\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5473dc22\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"64\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Expert Landscapers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b38731e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"4945f2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"627cd42c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"65e3182\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.56499999999999772626324556767940521240234375,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"43108b53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Projects\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45328989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Project We Have Done\\n\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"f382082\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.49900000000000233058017329312860965728759765625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":40,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"55ecfb57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"67afcbfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.0330000000000012505552149377763271331787109375,\"_inline_size_tablet\":23,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"4989aa04\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Projects\",\"align\":\"right\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"left\",\"hover_animation\":\"float\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"32515d84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"3f5753f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"21982cfb\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":196,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Cutting-Leaf.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Cutting Leaf\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"404dc561\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"58d29b54\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":197,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Home-Garden.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Home Garden\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"3bff1dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"3c24185a\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":195,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/build-backyard.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Build Backyard\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_image_height_responsive_tablet\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b3cb58d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_image\":{\"id\":201,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-moving-aerial-photo-Z8KDGJ9-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_color\":\"#0000007D\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"79705206\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"51c9a732\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73b2fe0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"What They Say About Us\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4876e632\",\"elType\":\"widget\",\"settings\":{\"sg_layout_testimonial_choose\":\"style-2\",\"sg_testimonials_image_size_imagesize_size\":\"medium\",\"sg_testimonials_list\":[{\"sg_testimonials_list_client_avatar\":{\"id\":\"75\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/3SUMAU.jpg\"},\"_id\":\"6e9b2e1\",\"sg_testimonials_list_client_name\":\"Regan Traynor\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"76\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/CASCKD8.jpg\"},\"sg_testimonials_list_client_name\":\"Maisha Dunn\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"d069a43\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"77\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/MKLVKTE.jpg\"},\"sg_testimonials_list_client_name\":\"Reis Leonard\",\"sg_testimonials_list_designation\":\"Businessman\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"05c24f5\"}],\"st_wrapper_alignment_responsive\":\"left\",\"st_client_name_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_description_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_client_name_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_client_designation_normal_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_client_designation_normal_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=d343bdf\",\"st_rating_color_responsive\":\"\",\"st_client_name_normal_color_responsive\":\"\",\"st_quote_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_layout_background_background_color\":\"\"},\"st_layout_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_layout_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_wrapper_fix_height\":\"\",\"sg_setting_autoplay\":\"yes\",\"sg_setting_autoplay_pause\":\"\",\"sg_setting_arrow\":\"\",\"sg_setting_arrow_position\":\"middle-edge\",\"sg_setting_dots\":\"\",\"sg_setting_quote\":\"yes\",\"sg_setting_rating\":\"\",\"st_layout_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_layout_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_slide_show_responsive\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"sg_setting_quote_icon\":{\"value\":\"jki jki-quote-light\",\"library\":\"jkiticon\"},\"sg_layout_image_position\":\"below\",\"st_layout_background_background_background\":\"classic\",\"st_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position\":\"\",\"st_quote_override_position_top_responsive\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"st_quote_override_position_left_responsive\":{\"unit\":\"px\",\"size\":442,\"sizes\":[]},\"st_client_name_normal_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_quote_normal_font_size_responsive\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"st_client_image_margin_responsive\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_rating_font_size_responsive\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"st_rating_margin_right_responsive\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_setting_slide_show_responsive_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"st_wrapper_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position_top_responsive_tablet\":{\"unit\":\"px\",\"size\":249,\"sizes\":[]},\"st_quote_override_position_top_responsive_mobile\":{\"unit\":\"px\",\"size\":193,\"sizes\":[]},\"st_quote_override_position_left_responsive_tablet\":{\"unit\":\"px\",\"size\":265,\"sizes\":[]},\"st_quote_override_position_left_responsive_mobile\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]},\"st_quote_normal_font_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"st_description_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_normal_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64afd05f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"746d276b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"30338dfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f950be4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ca735b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5d6ca3ad\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_title_hover_color_responsive\":\"globals\\/colors?id=secondary\",\"st_readmore_hover_color_responsive\":\"globals\\/colors?id=secondary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#646974\",\"st_excerpt_color_responsive\":\"#646974\",\"st_title_normal_color_responsive\":\"#272B36\",\"st_thumbnail_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_title_hover_color_responsive\":\"#FA8D25\",\"st_readmore_normal_color_responsive\":\"#FA8D25\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":false}],\"isInner\":false}]'),(2205,357,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(2206,357,'_elementor_pro_version','3.10.1'),(2208,358,'_elementor_edit_mode','builder'),(2209,358,'_elementor_template_type','wp-page'),(2210,358,'_elementor_version','3.23.2'),(2211,358,'_wp_page_template','default'),(2212,358,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2213,358,'_elementor_data','[{\"id\":\"35495243\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"Eldery male gardener using scissors for bushes\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"160\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0,\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_size_tablet\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"top center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00160E\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b\":\"#00000054\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_slideshow_gallery\":[{\"id\":154,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-02-5.jpg\"},{\"id\":155,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-03-3.jpg\"},{\"id\":156,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-04-3.jpg\"},{\"id\":157,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-01-5.jpg\"}],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"739a26d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":65,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"56\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=06a34e7\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"132d1a8e\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"For All \",\"sg_title_focused\":\" Luxury\",\"sg_title_after\":\"Cleaning And Maintenance Services\",\"sg_title_html_tag\":\"h1\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=primary\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":87.606999999999999317878973670303821563720703125}},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"7c49583a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":87.832999999999998408384271897375583648681640625}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"635cb25b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"23cf340e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37.85499999999999687361196265555918216705322265625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":48,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1c4c950d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4768b6f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":62.14500000000000312638803734444081783294677734375,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"flex-start\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":52,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"34c0badb\",\"elType\":\"widget\",\"settings\":{\"sg_video_button_title\":\"Play Video\",\"sg_video_button_icon\":{\"value\":\"jki jki-play\",\"library\":\"jkiticon\"},\"sg_video_url\":\"#\",\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_width_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_line_height_responsive\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#FFD402\",\"st_button_normal_glow_color_responsive\":\"#00694361\",\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"_element_width\":\"auto\",\"__globals__\":{\"st_button_normal_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=accent\",\"st_border_normal_border_border_color\":\"\",\"st_button_hover_text_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_glow_color_responsive\":\"\"},\"st_button_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_button_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_width_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_line_height_responsive_mobile\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"st_border_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_border_normal_border_border_color\":\"#FFD027\",\"st_button_line_height_responsive_tablet\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"st_button_normal_background_background_color\":\"#006943\",\"st_button_hover_text_color_responsive\":\"#006943\",\"st_button_hover_background_background_color\":\"#FFD402\",\"sg_video_auto_play\":\"\",\"sg_video_mute\":\"\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_video_button\"},{\"id\":\"232ec8da\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Intro\",\"align\":\"right\",\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"hide_mobile\":\"hidden-mobile\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#00160E\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49b348ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"edc2dbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.00200000000000244426701101474463939666748046875,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"4e2246bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Prestige Luxury Cleanings LLC\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"139cc45f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Lawn and Driveway Cleaning Services\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dc78e71\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"597dc67d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"26cf3840\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"3b19bda0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":167,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"980\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a46c929\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"7c4d8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Public Liability Insurance\",\"_id\":\"a978734\"},{\"text\":\"Environmentally Friendly\",\"_id\":\"1cd10a1\"},{\"text\":\"On Time, Every Time\",\"_id\":\"c6767db\"},{\"text\":\"Beautiful Garden Designs\",\"_id\":\"d4743f4\"},{\"text\":\"Modern Machinery And Tool\",\"_id\":\"535c17d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"398321ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4c7c15d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.9129999999999967030817060731351375579833984375,\"_inline_size_tablet\":100,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5683e90d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":162,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"860\",\"height\":\"980\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b6190b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":163,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"-59\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"250636f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"713aa588\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"51a71b71\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#00160E\",\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=primary\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=06a34e7\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"st_content_title_color_responsive\":\"#7F7F7F\",\"st_super_color_responsive\":\"#FFD402\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\",\"sg_setting_html_tag\":\"span\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5557874f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"73847855\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":345,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Pressure-Wash.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"b1058a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":224,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":478,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":325,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"69098afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"40\",\"bottom\":\"80\",\"left\":\"40\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"7cb7bf82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91cb5d9\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26358abf\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Have The Perfect Solution For Your Lawn and Driveway Problems\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15a36cc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42c8d36c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"7114454f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"76f24ca8\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Variation Gardening\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"138cc39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"28a78a06\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Expert Landscapers\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c5ac2bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"38fdb183\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"3ce0b95b\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Affordable Price\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-save-money-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4c80f133\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"7451fb11\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Free Consultation\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-Consultancy-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e93f2c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"39a46e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"6773b2a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"87647bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Providing Services For All Your Residential And Commercial Needs\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3d4509\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6960c5\",\"elType\":\"section\",\"settings\":{\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"20701e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"a2e2fb9\",\"elType\":\"widget\",\"settings\":{\"premium_carousel_slider_content\":[\"Service 5\",\"Service 4\",\"Service 3\",\"Service 2\",\"service 1\"],\"premium_carousel_templates_repeater\":[],\"premium_carousel_responsive_desktop\":3,\"premium_carousel_responsive_tabs\":2,\"premium_carousel_nav_options\":\"none\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"premium_carousel_autoplay_speed\":10000,\"premium_carousel_arrow_icon_prev\":\"left_arrow_chevron\",\"premium_carousel_arrow_icon_next\":\"right_arrow_chevron\",\"premium_carousel_arrow_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"premium_carousel_arrow_position\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"premium_carousel_arrows_radius_normal\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"__globals__\":{\"premium_carousel_arrow_color\":\"globals\\/colors?id=06a34e7\",\"premium_carousel_arrow_bg_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"premium-carousel-widget\"},{\"id\":\"aed5322\",\"elType\":\"section\",\"settings\":{\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"5188113\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"d9b24b7\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"View All\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_text_decoration\":\"none\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_color_responsive\":\"#3F5A29\",\"st_button_normal_background_background_color\":\"#FFD402\",\"st_button_hover_color_responsive\":\"#FFD402\",\"st_button_hover_background_background_color\":\"#3F5A29\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30164d28\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"6e6d8a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":142,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-services.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"bd233da\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6535a16\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"937e2e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"85e7aee\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Lawn Services\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"d9723d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"c908972\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37c1cce6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":143,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/driveway-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5b3e60ba\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3b291bbf\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"20b91942\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5649f719\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Driveway Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6300b69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"256ddf68\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3735f0b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":144,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/deck-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"741128a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3691562\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"3c8a0e6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5eb1b3b9\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Deck Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"25f37292\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"61c9ff8e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d41e618\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"8781ee3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":145,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/weed-control.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"bd84c7d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"14f7965\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"fb2459e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"0582197\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Weed Control \",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"f7b0fa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"0197d9e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f3de9c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":146,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/grass-feed.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"75ba950\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"23edbf4\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"ad70b3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"b1c4ac7\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Grass Feed\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6f592ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"0043a3b\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"790dd775\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"360\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"160\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"140\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"background_overlay_color_b\":\"#000414\",\"background_overlay_image\":{\"id\":186,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/a-gardener-watering-plants-in-a-flowerbed-2RT8DWL-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"a2ed5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"7e37f762\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Landscaping\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a092069\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d5099\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need Someone To Take Care Your Lawn and Driveway?\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=07ee36d\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1198756c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"66521a56\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":20,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":4,\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"1a89d099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.5090000000000003410605131648480892181396484375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"id\":191,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/happy-gardeners-with-plants-and-lawn-mower-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"space-between\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_color\":\"#FFFFFF00\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":9,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"46b821c1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":219,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":183,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"449971a9\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Make Appointment & Take Care Your Garden\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=secondary\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=93191b3\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_content_title_color_hover_responsive\":\"#FFFFFF\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#FFFFFF\",\"st_icon_color_responsive\":\"#00E5CC\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#00E5CC\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":false},{\"id\":\"13747b6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.4909999999999996589394868351519107818603515625,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1a13f42e\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"178***1721830795182\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fde8487\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"59883b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1617542a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Process\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29c7aa96\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Complete Every Step Carefully\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ced0d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d62463d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"18cf7834\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"41f79872\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-consult-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consultation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65e1b761\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"span\",\"title_color\":\"#FFD402\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#006943\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12cdbf13\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"4175d29\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-pencil_art-light\",\"library\":\"jkiticon\"},\"title_text\":\"Design Installation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2adabf01\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b628\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"569b3221\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consturction \",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"67d6b2e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6fff79c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"53c9a76e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"title_text\":\"Finished Work\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"555aace0\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d57540b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"71\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardening-background-with-garden-tolls-A9BGNJU.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"147831a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5a53d120\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"20\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Years of Experience\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"488f4727\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"6b8f6eae\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"76666759\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"6f532f9e\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"2850\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Happy Customers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"265fd738\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5473dc22\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"64\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Expert Landscapers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b38731e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"4945f2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"627cd42c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"65e3182\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.56499999999999772626324556767940521240234375,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"43108b53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Projects\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45328989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Project We Have Done\\n\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"f382082\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.49900000000000233058017329312860965728759765625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":40,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"55ecfb57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"67afcbfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.0330000000000012505552149377763271331787109375,\"_inline_size_tablet\":23,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"4989aa04\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Projects\",\"align\":\"right\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"left\",\"hover_animation\":\"float\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"32515d84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"3f5753f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"21982cfb\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":196,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Cutting-Leaf.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Cutting Leaf\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"404dc561\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"58d29b54\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":197,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Home-Garden.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Home Garden\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"3bff1dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"3c24185a\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":195,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/build-backyard.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Build Backyard\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_image_height_responsive_tablet\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b3cb58d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_image\":{\"id\":201,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-moving-aerial-photo-Z8KDGJ9-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_color\":\"#0000007D\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"79705206\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"51c9a732\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73b2fe0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"What They Say About Us\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4876e632\",\"elType\":\"widget\",\"settings\":{\"sg_layout_testimonial_choose\":\"style-2\",\"sg_testimonials_image_size_imagesize_size\":\"medium\",\"sg_testimonials_list\":[{\"sg_testimonials_list_client_avatar\":{\"id\":\"75\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/3SUMAU.jpg\"},\"_id\":\"6e9b2e1\",\"sg_testimonials_list_client_name\":\"Regan Traynor\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"76\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/CASCKD8.jpg\"},\"sg_testimonials_list_client_name\":\"Maisha Dunn\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"d069a43\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"77\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/MKLVKTE.jpg\"},\"sg_testimonials_list_client_name\":\"Reis Leonard\",\"sg_testimonials_list_designation\":\"Businessman\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"05c24f5\"}],\"st_wrapper_alignment_responsive\":\"left\",\"st_client_name_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_description_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_client_name_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_client_designation_normal_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_client_designation_normal_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=d343bdf\",\"st_rating_color_responsive\":\"\",\"st_client_name_normal_color_responsive\":\"\",\"st_quote_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_layout_background_background_color\":\"\"},\"st_layout_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_layout_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_wrapper_fix_height\":\"\",\"sg_setting_autoplay\":\"yes\",\"sg_setting_autoplay_pause\":\"\",\"sg_setting_arrow\":\"\",\"sg_setting_arrow_position\":\"middle-edge\",\"sg_setting_dots\":\"\",\"sg_setting_quote\":\"yes\",\"sg_setting_rating\":\"\",\"st_layout_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_layout_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_slide_show_responsive\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"sg_setting_quote_icon\":{\"value\":\"jki jki-quote-light\",\"library\":\"jkiticon\"},\"sg_layout_image_position\":\"below\",\"st_layout_background_background_background\":\"classic\",\"st_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position\":\"\",\"st_quote_override_position_top_responsive\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"st_quote_override_position_left_responsive\":{\"unit\":\"px\",\"size\":442,\"sizes\":[]},\"st_client_name_normal_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_quote_normal_font_size_responsive\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"st_client_image_margin_responsive\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_rating_font_size_responsive\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"st_rating_margin_right_responsive\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_setting_slide_show_responsive_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"st_wrapper_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position_top_responsive_tablet\":{\"unit\":\"px\",\"size\":249,\"sizes\":[]},\"st_quote_override_position_top_responsive_mobile\":{\"unit\":\"px\",\"size\":193,\"sizes\":[]},\"st_quote_override_position_left_responsive_tablet\":{\"unit\":\"px\",\"size\":265,\"sizes\":[]},\"st_quote_override_position_left_responsive_mobile\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]},\"st_quote_normal_font_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"st_description_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_normal_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64afd05f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"746d276b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"30338dfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f950be4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ca735b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5d6ca3ad\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_title_hover_color_responsive\":\"globals\\/colors?id=secondary\",\"st_readmore_hover_color_responsive\":\"globals\\/colors?id=secondary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#646974\",\"st_excerpt_color_responsive\":\"#646974\",\"st_title_normal_color_responsive\":\"#272B36\",\"st_thumbnail_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_title_hover_color_responsive\":\"#FA8D25\",\"st_readmore_normal_color_responsive\":\"#FA8D25\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":false}],\"isInner\":false}]'),(2214,358,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(2215,358,'_elementor_pro_version','3.10.1'),(2216,358,'_elementor_css','a:6:{s:4:\"time\";i:1721853709;s:5:\"fonts\";a:1:{i:0;s:5:\"Inter\";}s:5:\"icons\";a:3:{i:0;s:0:\"\";i:1;s:8:\"jkiticon\";i:3;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2217,359,'_elementor_edit_mode','builder'),(2218,359,'_elementor_template_type','wp-page'),(2219,359,'_elementor_version','3.23.2'),(2220,359,'_wp_page_template','default'),(2221,359,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2222,359,'_elementor_data','[{\"id\":\"35495243\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"Eldery male gardener using scissors for bushes\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"160\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0,\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_size_tablet\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"top center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00160E\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b\":\"#00000054\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_slideshow_gallery\":[{\"id\":154,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-02-5.jpg\"},{\"id\":155,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-03-3.jpg\"},{\"id\":156,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-04-3.jpg\"},{\"id\":157,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-01-5.jpg\"}],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"739a26d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":65,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"56\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=06a34e7\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"132d1a8e\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"For All \",\"sg_title_focused\":\" Luxury\",\"sg_title_after\":\"Cleaning And Maintenance Services\",\"sg_title_html_tag\":\"h1\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=primary\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":87.606999999999999317878973670303821563720703125}},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"7c49583a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":87.832999999999998408384271897375583648681640625}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"635cb25b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"23cf340e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37.85499999999999687361196265555918216705322265625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":48,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1c4c950d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4768b6f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":62.14500000000000312638803734444081783294677734375,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"flex-start\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":52,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"34c0badb\",\"elType\":\"widget\",\"settings\":{\"sg_video_button_title\":\"Play Video\",\"sg_video_button_icon\":{\"value\":\"jki jki-play\",\"library\":\"jkiticon\"},\"sg_video_url\":\"#\",\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_width_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_line_height_responsive\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#FFD402\",\"st_button_normal_glow_color_responsive\":\"#00694361\",\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"_element_width\":\"auto\",\"__globals__\":{\"st_button_normal_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=accent\",\"st_border_normal_border_border_color\":\"\",\"st_button_hover_text_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_glow_color_responsive\":\"\"},\"st_button_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_button_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_width_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_line_height_responsive_mobile\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"st_border_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_border_normal_border_border_color\":\"#FFD027\",\"st_button_line_height_responsive_tablet\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"st_button_normal_background_background_color\":\"#006943\",\"st_button_hover_text_color_responsive\":\"#006943\",\"st_button_hover_background_background_color\":\"#FFD402\",\"sg_video_auto_play\":\"\",\"sg_video_mute\":\"\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_video_button\"},{\"id\":\"232ec8da\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Intro\",\"align\":\"right\",\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"hide_mobile\":\"hidden-mobile\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#00160E\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49b348ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"edc2dbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.00200000000000244426701101474463939666748046875,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"4e2246bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Prestige Luxury Cleanings LLC\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"139cc45f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Lawn and Driveway Cleaning Services\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dc78e71\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"597dc67d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"26cf3840\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"3b19bda0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":167,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"980\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a46c929\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"7c4d8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Public Liability Insurance\",\"_id\":\"a978734\"},{\"text\":\"Environmentally Friendly\",\"_id\":\"1cd10a1\"},{\"text\":\"On Time, Every Time\",\"_id\":\"c6767db\"},{\"text\":\"Beautiful Garden Designs\",\"_id\":\"d4743f4\"},{\"text\":\"Modern Machinery And Tool\",\"_id\":\"535c17d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"398321ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4c7c15d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.9129999999999967030817060731351375579833984375,\"_inline_size_tablet\":100,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5683e90d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":162,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"860\",\"height\":\"980\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b6190b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":163,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"-59\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"250636f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"713aa588\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"51a71b71\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#00160E\",\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=primary\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=06a34e7\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"st_content_title_color_responsive\":\"#7F7F7F\",\"st_super_color_responsive\":\"#FFD402\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\",\"sg_setting_html_tag\":\"span\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5557874f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"73847855\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":345,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Pressure-Wash.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"b1058a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":224,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":478,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":325,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"69098afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"40\",\"bottom\":\"80\",\"left\":\"40\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"7cb7bf82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91cb5d9\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26358abf\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Have The Perfect Solution For Your Lawn and Driveway Problems\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15a36cc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42c8d36c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"7114454f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"76f24ca8\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Variation Gardening\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"138cc39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"28a78a06\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Expert Landscapers\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c5ac2bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"38fdb183\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"3ce0b95b\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Affordable Price\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-save-money-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4c80f133\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"7451fb11\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Free Consultation\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-Consultancy-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e93f2c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"39a46e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"6773b2a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"87647bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Providing Services For All Your Residential And Commercial Needs\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3d4509\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6960c5\",\"elType\":\"section\",\"settings\":{\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"20701e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"a2e2fb9\",\"elType\":\"widget\",\"settings\":{\"premium_carousel_slider_content\":[\"Service 5\",\"Service 4\",\"Service 3\",\"Service 2\",\"service 1\"],\"premium_carousel_templates_repeater\":[],\"premium_carousel_responsive_desktop\":3,\"premium_carousel_responsive_tabs\":2,\"premium_carousel_nav_options\":\"none\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"premium_carousel_autoplay_speed\":10000,\"premium_carousel_arrow_icon_prev\":\"left_arrow_chevron\",\"premium_carousel_arrow_icon_next\":\"right_arrow_chevron\",\"premium_carousel_arrow_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"premium_carousel_arrow_position\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"premium_carousel_arrows_radius_normal\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"__globals__\":{\"premium_carousel_arrow_color\":\"globals\\/colors?id=06a34e7\",\"premium_carousel_arrow_bg_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"premium-carousel-widget\"},{\"id\":\"aed5322\",\"elType\":\"section\",\"settings\":{\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"5188113\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"d9b24b7\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"View All\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_text_decoration\":\"none\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_color_responsive\":\"#3F5A29\",\"st_button_normal_background_background_color\":\"#FFD402\",\"st_button_hover_color_responsive\":\"#FFD402\",\"st_button_hover_background_background_color\":\"#3F5A29\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30164d28\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"6e6d8a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":142,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-services.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"bd233da\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6535a16\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"937e2e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"85e7aee\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Lawn Services\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"d9723d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"c908972\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37c1cce6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":143,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/driveway-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5b3e60ba\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3b291bbf\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"20b91942\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5649f719\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Driveway Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6300b69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"256ddf68\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3735f0b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":144,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/deck-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"741128a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3691562\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"3c8a0e6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5eb1b3b9\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Deck Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"25f37292\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"61c9ff8e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d41e618\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"8781ee3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":145,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/weed-control.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"bd84c7d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"14f7965\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"fb2459e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"0582197\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Weed Control \",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"f7b0fa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"0197d9e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f3de9c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":146,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/grass-feed.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"75ba950\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"23edbf4\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"ad70b3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"b1c4ac7\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Grass Feed\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6f592ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"0043a3b\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"790dd775\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"360\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"160\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"140\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"background_overlay_color_b\":\"#000414\",\"background_overlay_image\":{\"id\":186,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/a-gardener-watering-plants-in-a-flowerbed-2RT8DWL-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"a2ed5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"7e37f762\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Landscaping\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a092069\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d5099\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need Someone To Take Care Your Lawn and Driveway?\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=07ee36d\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1198756c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"66521a56\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":20,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":4,\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"1a89d099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.5090000000000003410605131648480892181396484375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"id\":191,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/happy-gardeners-with-plants-and-lawn-mower-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"space-between\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_color\":\"#FFFFFF00\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":9,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"46b821c1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":219,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":183,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"449971a9\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Make Appointment & Take Care Your Garden\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=secondary\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=93191b3\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_content_title_color_hover_responsive\":\"#FFFFFF\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#FFFFFF\",\"st_icon_color_responsive\":\"#00E5CC\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#00E5CC\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":false},{\"id\":\"13747b6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.4909999999999996589394868351519107818603515625,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1a13f42e\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"178***1721830795182\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fde8487\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"59883b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1617542a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Process\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29c7aa96\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Complete Every Step Carefully\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ced0d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d62463d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"18cf7834\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"41f79872\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-consult-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consultation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65e1b761\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"span\",\"title_color\":\"#FFD402\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#006943\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12cdbf13\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"4175d29\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-pencil_art-light\",\"library\":\"jkiticon\"},\"title_text\":\"Design Installation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2adabf01\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b628\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"569b3221\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consturction \",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"67d6b2e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6fff79c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"53c9a76e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"title_text\":\"Finished Work\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"555aace0\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d57540b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"71\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardening-background-with-garden-tolls-A9BGNJU.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"147831a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5a53d120\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"20\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Years of Experience\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"488f4727\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"6b8f6eae\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"76666759\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"6f532f9e\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"2850\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Happy Customers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"265fd738\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5473dc22\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"64\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Expert Landscapers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b38731e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"4945f2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"627cd42c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"65e3182\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.56499999999999772626324556767940521240234375,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"43108b53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Projects\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45328989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Project We Have Done\\n\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"f382082\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.49900000000000233058017329312860965728759765625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":40,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"55ecfb57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"67afcbfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.0330000000000012505552149377763271331787109375,\"_inline_size_tablet\":23,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"4989aa04\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Projects\",\"align\":\"right\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"left\",\"hover_animation\":\"float\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"32515d84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"3f5753f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"21982cfb\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":196,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Cutting-Leaf.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Cutting Leaf\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"404dc561\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"58d29b54\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":197,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Home-Garden.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Home Garden\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"3bff1dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"3c24185a\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":195,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/build-backyard.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Build Backyard\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_image_height_responsive_tablet\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b3cb58d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_image\":{\"id\":201,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-moving-aerial-photo-Z8KDGJ9-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_color\":\"#0000007D\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"79705206\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"51c9a732\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73b2fe0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"What They Say About Us\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4876e632\",\"elType\":\"widget\",\"settings\":{\"sg_layout_testimonial_choose\":\"style-2\",\"sg_testimonials_image_size_imagesize_size\":\"medium\",\"sg_testimonials_list\":[{\"sg_testimonials_list_client_avatar\":{\"id\":\"75\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/3SUMAU.jpg\"},\"_id\":\"6e9b2e1\",\"sg_testimonials_list_client_name\":\"Regan Traynor\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"76\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/CASCKD8.jpg\"},\"sg_testimonials_list_client_name\":\"Maisha Dunn\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"d069a43\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"77\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/MKLVKTE.jpg\"},\"sg_testimonials_list_client_name\":\"Reis Leonard\",\"sg_testimonials_list_designation\":\"Businessman\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"05c24f5\"}],\"st_wrapper_alignment_responsive\":\"left\",\"st_client_name_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_description_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_client_name_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_client_designation_normal_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_client_designation_normal_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=d343bdf\",\"st_rating_color_responsive\":\"\",\"st_client_name_normal_color_responsive\":\"\",\"st_quote_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_layout_background_background_color\":\"\"},\"st_layout_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_layout_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_wrapper_fix_height\":\"\",\"sg_setting_autoplay\":\"yes\",\"sg_setting_autoplay_pause\":\"\",\"sg_setting_arrow\":\"\",\"sg_setting_arrow_position\":\"middle-edge\",\"sg_setting_dots\":\"\",\"sg_setting_quote\":\"yes\",\"sg_setting_rating\":\"\",\"st_layout_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_layout_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_slide_show_responsive\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"sg_setting_quote_icon\":{\"value\":\"jki jki-quote-light\",\"library\":\"jkiticon\"},\"sg_layout_image_position\":\"below\",\"st_layout_background_background_background\":\"classic\",\"st_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position\":\"\",\"st_quote_override_position_top_responsive\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"st_quote_override_position_left_responsive\":{\"unit\":\"px\",\"size\":442,\"sizes\":[]},\"st_client_name_normal_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_quote_normal_font_size_responsive\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"st_client_image_margin_responsive\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_rating_font_size_responsive\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"st_rating_margin_right_responsive\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_setting_slide_show_responsive_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"st_wrapper_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position_top_responsive_tablet\":{\"unit\":\"px\",\"size\":249,\"sizes\":[]},\"st_quote_override_position_top_responsive_mobile\":{\"unit\":\"px\",\"size\":193,\"sizes\":[]},\"st_quote_override_position_left_responsive_tablet\":{\"unit\":\"px\",\"size\":265,\"sizes\":[]},\"st_quote_override_position_left_responsive_mobile\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]},\"st_quote_normal_font_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"st_description_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_normal_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64afd05f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"746d276b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"30338dfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f950be4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ca735b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5d6ca3ad\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_title_hover_color_responsive\":\"globals\\/colors?id=secondary\",\"st_readmore_hover_color_responsive\":\"globals\\/colors?id=secondary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#646974\",\"st_excerpt_color_responsive\":\"#646974\",\"st_title_normal_color_responsive\":\"#272B36\",\"st_thumbnail_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_title_hover_color_responsive\":\"#FA8D25\",\"st_readmore_normal_color_responsive\":\"#FA8D25\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":false}],\"isInner\":false}]'),(2223,359,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(2224,359,'_elementor_pro_version','3.10.1'),(2225,359,'_elementor_css','a:6:{s:4:\"time\";i:1721853709;s:5:\"fonts\";a:1:{i:0;s:5:\"Inter\";}s:5:\"icons\";a:3:{i:0;s:0:\"\";i:1;s:8:\"jkiticon\";i:3;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2226,360,'_elementor_edit_mode','builder'),(2227,360,'_elementor_template_type','wp-page'),(2228,360,'_elementor_version','3.23.2'),(2229,360,'_wp_page_template','default'),(2230,360,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'); INSERT INTO `victorq_postmeta` VALUES (2231,360,'_elementor_data','[{\"id\":\"35495243\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"Eldery male gardener using scissors for bushes\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"160\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0,\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_size_tablet\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"top center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00160E\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b\":\"#00000054\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_slideshow_gallery\":[{\"id\":154,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-02-5.jpg\"},{\"id\":155,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-03-3.jpg\"},{\"id\":156,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-04-3.jpg\"},{\"id\":157,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-01-5.jpg\"}],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"739a26d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":65,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"56\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=06a34e7\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"132d1a8e\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"For All \",\"sg_title_focused\":\" Luxury\",\"sg_title_after\":\"Cleaning And Maintenance Services\",\"sg_title_html_tag\":\"h1\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=primary\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":87.606999999999999317878973670303821563720703125}},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"7c49583a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":87.832999999999998408384271897375583648681640625}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"635cb25b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"23cf340e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37.85499999999999687361196265555918216705322265625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":48,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1c4c950d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4768b6f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":62.14500000000000312638803734444081783294677734375,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"flex-start\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":52,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"34c0badb\",\"elType\":\"widget\",\"settings\":{\"sg_video_button_title\":\"Play Video\",\"sg_video_button_icon\":{\"value\":\"jki jki-play\",\"library\":\"jkiticon\"},\"sg_video_url\":\"#\",\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_width_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_line_height_responsive\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#FFD402\",\"st_button_normal_glow_color_responsive\":\"#00694361\",\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"_element_width\":\"auto\",\"__globals__\":{\"st_button_normal_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=accent\",\"st_border_normal_border_border_color\":\"\",\"st_button_hover_text_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_glow_color_responsive\":\"\"},\"st_button_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_button_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_width_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_line_height_responsive_mobile\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"st_border_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_border_normal_border_border_color\":\"#FFD027\",\"st_button_line_height_responsive_tablet\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"st_button_normal_background_background_color\":\"#006943\",\"st_button_hover_text_color_responsive\":\"#006943\",\"st_button_hover_background_background_color\":\"#FFD402\",\"sg_video_auto_play\":\"\",\"sg_video_mute\":\"\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_video_button\"},{\"id\":\"232ec8da\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Intro\",\"align\":\"right\",\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"hide_mobile\":\"hidden-mobile\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#00160E\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49b348ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"edc2dbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.00200000000000244426701101474463939666748046875,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"4e2246bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Prestige Luxury Cleanings LLC\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"139cc45f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Lawn and Driveway Cleaning Services\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dc78e71\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"597dc67d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"26cf3840\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"3b19bda0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":167,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"980\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a46c929\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"7c4d8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Public Liability Insurance\",\"_id\":\"a978734\"},{\"text\":\"Environmentally Friendly\",\"_id\":\"1cd10a1\"},{\"text\":\"On Time, Every Time\",\"_id\":\"c6767db\"},{\"text\":\"Beautiful Garden Designs\",\"_id\":\"d4743f4\"},{\"text\":\"Modern Machinery And Tool\",\"_id\":\"535c17d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"398321ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4c7c15d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.9129999999999967030817060731351375579833984375,\"_inline_size_tablet\":100,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5683e90d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":162,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"860\",\"height\":\"980\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b6190b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":163,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"-59\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"250636f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"713aa588\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"51a71b71\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#00160E\",\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=primary\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=06a34e7\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"st_content_title_color_responsive\":\"#7F7F7F\",\"st_super_color_responsive\":\"#FFD402\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\",\"sg_setting_html_tag\":\"span\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5557874f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"73847855\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":345,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Pressure-Wash.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"b1058a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":224,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":478,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":325,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"69098afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"40\",\"bottom\":\"80\",\"left\":\"40\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"7cb7bf82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91cb5d9\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26358abf\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Have The Perfect Solution For Your Lawn and Driveway Problems\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15a36cc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42c8d36c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"7114454f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"76f24ca8\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Variation Gardening\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"138cc39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"28a78a06\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Expert Landscapers\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c5ac2bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"38fdb183\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"3ce0b95b\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Affordable Price\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-save-money-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4c80f133\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"7451fb11\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Free Consultation\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-Consultancy-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e93f2c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"39a46e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"6773b2a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"87647bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Providing Services For All Your Residential And Commercial Needs\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3d4509\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6960c5\",\"elType\":\"section\",\"settings\":{\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"20701e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"a2e2fb9\",\"elType\":\"widget\",\"settings\":{\"premium_carousel_slider_content\":[\"Service 4\",\"Service 3\",\"Service 2\",\"service 1\"],\"premium_carousel_templates_repeater\":[],\"premium_carousel_responsive_desktop\":3,\"premium_carousel_responsive_tabs\":2,\"premium_carousel_nav_options\":\"none\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"premium_carousel_autoplay_speed\":10000,\"premium_carousel_arrow_icon_prev\":\"left_arrow_chevron\",\"premium_carousel_arrow_icon_next\":\"right_arrow_chevron\",\"premium_carousel_arrow_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"premium_carousel_arrow_position\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"premium_carousel_arrows_radius_normal\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"__globals__\":{\"premium_carousel_arrow_color\":\"globals\\/colors?id=06a34e7\",\"premium_carousel_arrow_bg_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"premium-carousel-widget\"},{\"id\":\"aed5322\",\"elType\":\"section\",\"settings\":{\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"5188113\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"d9b24b7\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"View All\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_text_decoration\":\"none\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_color_responsive\":\"#3F5A29\",\"st_button_normal_background_background_color\":\"#FFD402\",\"st_button_hover_color_responsive\":\"#FFD402\",\"st_button_hover_background_background_color\":\"#3F5A29\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30164d28\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"6e6d8a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":142,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-services.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"bd233da\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6535a16\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"937e2e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"85e7aee\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Lawn Services\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"d9723d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"c908972\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37c1cce6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":143,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/driveway-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5b3e60ba\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3b291bbf\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"20b91942\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5649f719\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Driveway Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6300b69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"256ddf68\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3735f0b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":144,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/deck-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"741128a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3691562\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"3c8a0e6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5eb1b3b9\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Deck Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"25f37292\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"61c9ff8e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d41e618\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"8781ee3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":145,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/weed-control.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"bd84c7d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"14f7965\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"fb2459e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"0582197\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Weed Control \",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"f7b0fa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"0197d9e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f3de9c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":146,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/grass-feed.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"75ba950\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"23edbf4\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"ad70b3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"b1c4ac7\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Grass Feed\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6f592ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"0043a3b\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"790dd775\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"360\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"160\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"140\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"background_overlay_color_b\":\"#000414\",\"background_overlay_image\":{\"id\":186,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/a-gardener-watering-plants-in-a-flowerbed-2RT8DWL-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"a2ed5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"7e37f762\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Landscaping\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a092069\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d5099\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need Someone To Take Care Your Lawn and Driveway?\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=07ee36d\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1198756c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"66521a56\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":20,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":4,\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"1a89d099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.5090000000000003410605131648480892181396484375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"id\":191,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/happy-gardeners-with-plants-and-lawn-mower-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"space-between\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_color\":\"#FFFFFF00\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":9,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"46b821c1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":219,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":183,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"449971a9\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Make Appointment & Take Care Your Garden\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=secondary\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=93191b3\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_content_title_color_hover_responsive\":\"#FFFFFF\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#FFFFFF\",\"st_icon_color_responsive\":\"#00E5CC\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#00E5CC\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":false},{\"id\":\"13747b6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.4909999999999996589394868351519107818603515625,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1a13f42e\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"178***1721830795182\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fde8487\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"59883b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1617542a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Process\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29c7aa96\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Complete Every Step Carefully\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ced0d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d62463d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"18cf7834\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"41f79872\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-consult-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consultation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65e1b761\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"span\",\"title_color\":\"#FFD402\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#006943\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12cdbf13\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"4175d29\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-pencil_art-light\",\"library\":\"jkiticon\"},\"title_text\":\"Design Installation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2adabf01\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b628\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"569b3221\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consturction \",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"67d6b2e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6fff79c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"53c9a76e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"title_text\":\"Finished Work\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"555aace0\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d57540b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"71\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardening-background-with-garden-tolls-A9BGNJU.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"147831a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5a53d120\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"20\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Years of Experience\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"488f4727\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"6b8f6eae\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"76666759\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"6f532f9e\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"2850\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Happy Customers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"265fd738\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5473dc22\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"64\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Expert Landscapers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b38731e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"4945f2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"627cd42c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"65e3182\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.56499999999999772626324556767940521240234375,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"43108b53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Projects\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45328989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Project We Have Done\\n\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"f382082\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.49900000000000233058017329312860965728759765625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":40,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"55ecfb57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"67afcbfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.0330000000000012505552149377763271331787109375,\"_inline_size_tablet\":23,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"4989aa04\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Projects\",\"align\":\"right\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"left\",\"hover_animation\":\"float\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"32515d84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"3f5753f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"21982cfb\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":196,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Cutting-Leaf.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Cutting Leaf\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"404dc561\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"58d29b54\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":197,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Home-Garden.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Home Garden\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"3bff1dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"3c24185a\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":195,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/build-backyard.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Build Backyard\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_image_height_responsive_tablet\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b3cb58d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_image\":{\"id\":201,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-moving-aerial-photo-Z8KDGJ9-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_color\":\"#0000007D\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"79705206\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"51c9a732\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73b2fe0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"What They Say About Us\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4876e632\",\"elType\":\"widget\",\"settings\":{\"sg_layout_testimonial_choose\":\"style-2\",\"sg_testimonials_image_size_imagesize_size\":\"medium\",\"sg_testimonials_list\":[{\"sg_testimonials_list_client_avatar\":{\"id\":\"75\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/3SUMAU.jpg\"},\"_id\":\"6e9b2e1\",\"sg_testimonials_list_client_name\":\"Regan Traynor\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"76\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/CASCKD8.jpg\"},\"sg_testimonials_list_client_name\":\"Maisha Dunn\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"d069a43\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"77\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/MKLVKTE.jpg\"},\"sg_testimonials_list_client_name\":\"Reis Leonard\",\"sg_testimonials_list_designation\":\"Businessman\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"05c24f5\"}],\"st_wrapper_alignment_responsive\":\"left\",\"st_client_name_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_description_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_client_name_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_client_designation_normal_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_client_designation_normal_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=d343bdf\",\"st_rating_color_responsive\":\"\",\"st_client_name_normal_color_responsive\":\"\",\"st_quote_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_layout_background_background_color\":\"\"},\"st_layout_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_layout_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_wrapper_fix_height\":\"\",\"sg_setting_autoplay\":\"yes\",\"sg_setting_autoplay_pause\":\"\",\"sg_setting_arrow\":\"\",\"sg_setting_arrow_position\":\"middle-edge\",\"sg_setting_dots\":\"\",\"sg_setting_quote\":\"yes\",\"sg_setting_rating\":\"\",\"st_layout_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_layout_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_slide_show_responsive\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"sg_setting_quote_icon\":{\"value\":\"jki jki-quote-light\",\"library\":\"jkiticon\"},\"sg_layout_image_position\":\"below\",\"st_layout_background_background_background\":\"classic\",\"st_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position\":\"\",\"st_quote_override_position_top_responsive\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"st_quote_override_position_left_responsive\":{\"unit\":\"px\",\"size\":442,\"sizes\":[]},\"st_client_name_normal_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_quote_normal_font_size_responsive\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"st_client_image_margin_responsive\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_rating_font_size_responsive\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"st_rating_margin_right_responsive\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_setting_slide_show_responsive_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"st_wrapper_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position_top_responsive_tablet\":{\"unit\":\"px\",\"size\":249,\"sizes\":[]},\"st_quote_override_position_top_responsive_mobile\":{\"unit\":\"px\",\"size\":193,\"sizes\":[]},\"st_quote_override_position_left_responsive_tablet\":{\"unit\":\"px\",\"size\":265,\"sizes\":[]},\"st_quote_override_position_left_responsive_mobile\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]},\"st_quote_normal_font_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"st_description_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_normal_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64afd05f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"746d276b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"30338dfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f950be4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ca735b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5d6ca3ad\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_title_hover_color_responsive\":\"globals\\/colors?id=secondary\",\"st_readmore_hover_color_responsive\":\"globals\\/colors?id=secondary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#646974\",\"st_excerpt_color_responsive\":\"#646974\",\"st_title_normal_color_responsive\":\"#272B36\",\"st_thumbnail_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_title_hover_color_responsive\":\"#FA8D25\",\"st_readmore_normal_color_responsive\":\"#FA8D25\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":false}],\"isInner\":false}]'),(2232,360,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(2233,360,'_elementor_pro_version','3.10.1'),(2234,360,'_elementor_css','a:6:{s:4:\"time\";i:1721853709;s:5:\"fonts\";a:1:{i:0;s:5:\"Inter\";}s:5:\"icons\";a:3:{i:0;s:0:\"\";i:1;s:8:\"jkiticon\";i:3;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2243,362,'_wp_attached_file','2024/07/9e95ba14a10415ba80a97fb9792d1b71.jpg'),(2244,362,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:1369;s:4:\"file\";s:44:\"2024/07/9e95ba14a10415ba80a97fb9792d1b71.jpg\";s:8:\"filesize\";i:332127;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:44:\"9e95ba14a10415ba80a97fb9792d1b71-219x300.jpg\";s:5:\"width\";i:219;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24642;}s:5:\"large\";a:5:{s:4:\"file\";s:45:\"9e95ba14a10415ba80a97fb9792d1b71-748x1024.jpg\";s:5:\"width\";i:748;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:164232;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:44:\"9e95ba14a10415ba80a97fb9792d1b71-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9695;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:45:\"9e95ba14a10415ba80a97fb9792d1b71-768x1051.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1051;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:170788;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2245,363,'_wp_attached_file','2024/07/iStock-492496468.webp'),(2246,363,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1254;s:6:\"height\";i:837;s:4:\"file\";s:29:\"2024/07/iStock-492496468.webp\";s:8:\"filesize\";i:126048;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"iStock-492496468-300x200.webp\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:15904;}s:5:\"large\";a:5:{s:4:\"file\";s:30:\"iStock-492496468-1024x683.webp\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:89162;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"iStock-492496468-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:7540;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:29:\"iStock-492496468-768x513.webp\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:61942;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2247,364,'_elementor_edit_mode','builder'),(2248,364,'_elementor_template_type','wp-page'),(2249,364,'_elementor_version','3.23.2'),(2250,364,'_wp_page_template','default'),(2251,364,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2252,364,'_elementor_data','[{\"id\":\"35495243\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"Eldery male gardener using scissors for bushes\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"160\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0,\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_size_tablet\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"top center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00160E\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b\":\"#00000054\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_slideshow_gallery\":[{\"id\":154,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-02-5.jpg\"},{\"id\":155,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-03-3.jpg\"},{\"id\":156,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-04-3.jpg\"},{\"id\":157,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-01-5.jpg\"}],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"739a26d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":65,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"56\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=06a34e7\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"132d1a8e\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"For All \",\"sg_title_focused\":\" Luxury\",\"sg_title_after\":\"Cleaning And Maintenance Services\",\"sg_title_html_tag\":\"h1\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=primary\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":87.606999999999999317878973670303821563720703125}},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"7c49583a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":87.832999999999998408384271897375583648681640625}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"635cb25b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"23cf340e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37.85499999999999687361196265555918216705322265625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":48,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1c4c950d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4768b6f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":62.14500000000000312638803734444081783294677734375,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"flex-start\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":52,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"34c0badb\",\"elType\":\"widget\",\"settings\":{\"sg_video_button_title\":\"Play Video\",\"sg_video_button_icon\":{\"value\":\"jki jki-play\",\"library\":\"jkiticon\"},\"sg_video_url\":\"#\",\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_width_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_line_height_responsive\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#FFD402\",\"st_button_normal_glow_color_responsive\":\"#00694361\",\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"_element_width\":\"auto\",\"__globals__\":{\"st_button_normal_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=accent\",\"st_border_normal_border_border_color\":\"\",\"st_button_hover_text_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_glow_color_responsive\":\"\"},\"st_button_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_button_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_width_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_line_height_responsive_mobile\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"st_border_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_border_normal_border_border_color\":\"#FFD027\",\"st_button_line_height_responsive_tablet\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"st_button_normal_background_background_color\":\"#006943\",\"st_button_hover_text_color_responsive\":\"#006943\",\"st_button_hover_background_background_color\":\"#FFD402\",\"sg_video_auto_play\":\"\",\"sg_video_mute\":\"\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_video_button\"},{\"id\":\"232ec8da\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Intro\",\"align\":\"right\",\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"hide_mobile\":\"hidden-mobile\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#00160E\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49b348ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"edc2dbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.00200000000000244426701101474463939666748046875,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"4e2246bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Prestige Luxury Cleanings LLC\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"139cc45f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Lawn and Driveway Cleaning Services\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dc78e71\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"597dc67d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"26cf3840\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"3b19bda0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":167,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"980\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a46c929\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"7c4d8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Public Liability Insurance\",\"_id\":\"a978734\"},{\"text\":\"Environmentally Friendly\",\"_id\":\"1cd10a1\"},{\"text\":\"On Time, Every Time\",\"_id\":\"c6767db\"},{\"text\":\"Beautiful Garden Designs\",\"_id\":\"d4743f4\"},{\"text\":\"Modern Machinery And Tool\",\"_id\":\"535c17d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"398321ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4c7c15d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.9129999999999967030817060731351375579833984375,\"_inline_size_tablet\":100,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5683e90d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":162,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"860\",\"height\":\"980\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b6190b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":163,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"-59\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"250636f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"713aa588\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"51a71b71\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#00160E\",\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=primary\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=06a34e7\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"st_content_title_color_responsive\":\"#7F7F7F\",\"st_super_color_responsive\":\"#FFD402\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\",\"sg_setting_html_tag\":\"span\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5557874f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"73847855\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":345,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Pressure-Wash.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"b1058a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":224,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":478,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":325,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"69098afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"40\",\"bottom\":\"80\",\"left\":\"40\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"7cb7bf82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91cb5d9\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26358abf\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Have The Perfect Solution For Your Lawn and Driveway Problems\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15a36cc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42c8d36c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"7114454f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"76f24ca8\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Variation Gardening\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"138cc39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"28a78a06\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Expert Landscapers\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c5ac2bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"38fdb183\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"3ce0b95b\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Affordable Price\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-save-money-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4c80f133\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"7451fb11\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Free Consultation\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-Consultancy-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e93f2c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"39a46e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"6773b2a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"87647bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Providing Services For All Your Residential And Commercial Needs\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3d4509\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6960c5\",\"elType\":\"section\",\"settings\":{\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"20701e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"a2e2fb9\",\"elType\":\"widget\",\"settings\":{\"premium_carousel_slider_content\":[\"Service 4\",\"Service 3\",\"Service 2\",\"service 1\"],\"premium_carousel_templates_repeater\":[],\"premium_carousel_responsive_desktop\":3,\"premium_carousel_responsive_tabs\":2,\"premium_carousel_nav_options\":\"none\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"premium_carousel_autoplay_speed\":10000,\"premium_carousel_arrow_icon_prev\":\"left_arrow_chevron\",\"premium_carousel_arrow_icon_next\":\"right_arrow_chevron\",\"premium_carousel_arrow_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"premium_carousel_arrow_position\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"premium_carousel_arrows_radius_normal\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"__globals__\":{\"premium_carousel_arrow_color\":\"globals\\/colors?id=06a34e7\",\"premium_carousel_arrow_bg_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"premium-carousel-widget\"},{\"id\":\"aed5322\",\"elType\":\"section\",\"settings\":{\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"5188113\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"d9b24b7\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"View All\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_text_decoration\":\"none\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_color_responsive\":\"#3F5A29\",\"st_button_normal_background_background_color\":\"#FFD402\",\"st_button_hover_color_responsive\":\"#FFD402\",\"st_button_hover_background_background_color\":\"#3F5A29\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30164d28\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"6e6d8a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":142,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-services.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"bd233da\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6535a16\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"937e2e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"85e7aee\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Lawn Services\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"d9723d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"c908972\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37c1cce6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":143,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/driveway-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5b3e60ba\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3b291bbf\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"20b91942\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5649f719\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Driveway Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6300b69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"256ddf68\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3735f0b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":144,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/deck-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"741128a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3691562\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"3c8a0e6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5eb1b3b9\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Deck Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"25f37292\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"61c9ff8e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d41e618\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"8781ee3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":145,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/weed-control.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"bd84c7d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"14f7965\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"fb2459e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"0582197\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Weed Control \",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"f7b0fa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"0197d9e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f3de9c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":146,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/grass-feed.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"75ba950\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"23edbf4\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"ad70b3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"b1c4ac7\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Grass Feed\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6f592ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"0043a3b\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"790dd775\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"360\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"160\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"140\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"background_overlay_color_b\":\"#000414\",\"background_overlay_image\":{\"id\":186,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/a-gardener-watering-plants-in-a-flowerbed-2RT8DWL-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"a2ed5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"7e37f762\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Landscaping\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a092069\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d5099\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need Someone To Take Care Your Lawn and Driveway?\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=07ee36d\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1198756c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"66521a56\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":20,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":4,\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"1a89d099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.5090000000000003410605131648480892181396484375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"id\":191,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/happy-gardeners-with-plants-and-lawn-mower-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"space-between\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_color\":\"#FFFFFF00\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":9,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"46b821c1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":219,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":183,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"449971a9\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Make Appointment & Take Care Your Garden\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=secondary\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=93191b3\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_content_title_color_hover_responsive\":\"#FFFFFF\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#FFFFFF\",\"st_icon_color_responsive\":\"#00E5CC\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#00E5CC\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":false},{\"id\":\"13747b6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.4909999999999996589394868351519107818603515625,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1a13f42e\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"178***1721830795182\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fde8487\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"59883b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1617542a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Process\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29c7aa96\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Complete Every Step Carefully\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ced0d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d62463d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"18cf7834\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"41f79872\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-consult-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consultation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65e1b761\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"span\",\"title_color\":\"#FFD402\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#006943\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12cdbf13\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"4175d29\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-pencil_art-light\",\"library\":\"jkiticon\"},\"title_text\":\"Design Installation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2adabf01\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b628\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"569b3221\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consturction \",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"67d6b2e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6fff79c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"53c9a76e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"title_text\":\"Finished Work\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"555aace0\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d57540b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"71\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardening-background-with-garden-tolls-A9BGNJU.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"147831a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5a53d120\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"20\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Years of Experience\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"488f4727\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"6b8f6eae\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"76666759\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"6f532f9e\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"2850\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Happy Customers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"265fd738\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5473dc22\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"64\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Expert Landscapers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b38731e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"4945f2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"627cd42c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"65e3182\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.56499999999999772626324556767940521240234375,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"43108b53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Projects\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45328989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Project We Have Done\\n\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"f382082\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.49900000000000233058017329312860965728759765625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":40,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"55ecfb57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"67afcbfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.0330000000000012505552149377763271331787109375,\"_inline_size_tablet\":23,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"4989aa04\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Projects\",\"align\":\"right\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"left\",\"hover_animation\":\"float\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"32515d84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"3f5753f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"21982cfb\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":196,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Cutting-Leaf.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Cutting Leaf\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"404dc561\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"58d29b54\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":197,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Home-Garden.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Home Garden\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"3bff1dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"3c24185a\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":195,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/build-backyard.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Build Backyard\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_image_height_responsive_tablet\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b3cb58d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_image\":{\"id\":201,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-moving-aerial-photo-Z8KDGJ9-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_color\":\"#0000007D\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"79705206\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"51c9a732\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73b2fe0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"What They Say About Us\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4876e632\",\"elType\":\"widget\",\"settings\":{\"sg_layout_testimonial_choose\":\"style-2\",\"sg_testimonials_image_size_imagesize_size\":\"medium\",\"sg_testimonials_list\":[{\"sg_testimonials_list_client_avatar\":{\"id\":\"75\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/3SUMAU.jpg\"},\"_id\":\"6e9b2e1\",\"sg_testimonials_list_client_name\":\"Regan Traynor\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"76\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/CASCKD8.jpg\"},\"sg_testimonials_list_client_name\":\"Maisha Dunn\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"d069a43\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"77\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/MKLVKTE.jpg\"},\"sg_testimonials_list_client_name\":\"Reis Leonard\",\"sg_testimonials_list_designation\":\"Businessman\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"05c24f5\"}],\"st_wrapper_alignment_responsive\":\"left\",\"st_client_name_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_description_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_client_name_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_client_designation_normal_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_client_designation_normal_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=d343bdf\",\"st_rating_color_responsive\":\"\",\"st_client_name_normal_color_responsive\":\"\",\"st_quote_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_layout_background_background_color\":\"\"},\"st_layout_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_layout_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_wrapper_fix_height\":\"\",\"sg_setting_autoplay\":\"yes\",\"sg_setting_autoplay_pause\":\"\",\"sg_setting_arrow\":\"\",\"sg_setting_arrow_position\":\"middle-edge\",\"sg_setting_dots\":\"\",\"sg_setting_quote\":\"yes\",\"sg_setting_rating\":\"\",\"st_layout_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_layout_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_slide_show_responsive\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"sg_setting_quote_icon\":{\"value\":\"jki jki-quote-light\",\"library\":\"jkiticon\"},\"sg_layout_image_position\":\"below\",\"st_layout_background_background_background\":\"classic\",\"st_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position\":\"\",\"st_quote_override_position_top_responsive\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"st_quote_override_position_left_responsive\":{\"unit\":\"px\",\"size\":442,\"sizes\":[]},\"st_client_name_normal_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_quote_normal_font_size_responsive\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"st_client_image_margin_responsive\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_rating_font_size_responsive\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"st_rating_margin_right_responsive\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_setting_slide_show_responsive_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"st_wrapper_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position_top_responsive_tablet\":{\"unit\":\"px\",\"size\":249,\"sizes\":[]},\"st_quote_override_position_top_responsive_mobile\":{\"unit\":\"px\",\"size\":193,\"sizes\":[]},\"st_quote_override_position_left_responsive_tablet\":{\"unit\":\"px\",\"size\":265,\"sizes\":[]},\"st_quote_override_position_left_responsive_mobile\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]},\"st_quote_normal_font_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"st_description_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_normal_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64afd05f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"746d276b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"30338dfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f950be4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ca735b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5d6ca3ad\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_title_hover_color_responsive\":\"globals\\/colors?id=secondary\",\"st_readmore_hover_color_responsive\":\"globals\\/colors?id=secondary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#646974\",\"st_excerpt_color_responsive\":\"#646974\",\"st_title_normal_color_responsive\":\"#272B36\",\"st_thumbnail_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_title_hover_color_responsive\":\"#FA8D25\",\"st_readmore_normal_color_responsive\":\"#FA8D25\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":false}],\"isInner\":false}]'),(2253,364,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(2254,364,'_elementor_pro_version','3.10.1'),(2255,365,'_elementor_edit_mode','builder'),(2256,365,'_elementor_template_type','wp-page'),(2257,365,'_elementor_version','3.23.2'),(2258,365,'_wp_page_template','default'),(2259,365,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2260,365,'_elementor_data','[{\"id\":\"35495243\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"Eldery male gardener using scissors for bushes\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"160\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0,\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_size_tablet\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"top center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00160E\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b\":\"#00000054\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_slideshow_gallery\":[{\"id\":154,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-02-5.jpg\"},{\"id\":155,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-03-3.jpg\"},{\"id\":156,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-04-3.jpg\"},{\"id\":157,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-01-5.jpg\"}],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"739a26d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":65,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"56\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=06a34e7\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"132d1a8e\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"For All \",\"sg_title_focused\":\" Luxury\",\"sg_title_after\":\"Cleaning And Maintenance Services\",\"sg_title_html_tag\":\"h1\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=primary\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":87.606999999999999317878973670303821563720703125}},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"7c49583a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":87.832999999999998408384271897375583648681640625}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"635cb25b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"23cf340e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37.85499999999999687361196265555918216705322265625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":48,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1c4c950d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4768b6f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":62.14500000000000312638803734444081783294677734375,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"flex-start\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":52,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"34c0badb\",\"elType\":\"widget\",\"settings\":{\"sg_video_button_title\":\"Play Video\",\"sg_video_button_icon\":{\"value\":\"jki jki-play\",\"library\":\"jkiticon\"},\"sg_video_url\":\"#\",\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_width_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_line_height_responsive\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#FFD402\",\"st_button_normal_glow_color_responsive\":\"#00694361\",\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"_element_width\":\"auto\",\"__globals__\":{\"st_button_normal_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=accent\",\"st_border_normal_border_border_color\":\"\",\"st_button_hover_text_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_glow_color_responsive\":\"\"},\"st_button_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_button_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_width_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_line_height_responsive_mobile\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"st_border_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_border_normal_border_border_color\":\"#FFD027\",\"st_button_line_height_responsive_tablet\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"st_button_normal_background_background_color\":\"#006943\",\"st_button_hover_text_color_responsive\":\"#006943\",\"st_button_hover_background_background_color\":\"#FFD402\",\"sg_video_auto_play\":\"\",\"sg_video_mute\":\"\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_video_button\"},{\"id\":\"232ec8da\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Intro\",\"align\":\"right\",\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"hide_mobile\":\"hidden-mobile\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#00160E\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49b348ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"edc2dbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.00200000000000244426701101474463939666748046875,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"4e2246bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Prestige Luxury Cleanings LLC\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"139cc45f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Lawn and Driveway Cleaning Services\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dc78e71\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"597dc67d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"26cf3840\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"3b19bda0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":167,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"980\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a46c929\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"7c4d8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Public Liability Insurance\",\"_id\":\"a978734\"},{\"text\":\"Environmentally Friendly\",\"_id\":\"1cd10a1\"},{\"text\":\"On Time, Every Time\",\"_id\":\"c6767db\"},{\"text\":\"Beautiful Garden Designs\",\"_id\":\"d4743f4\"},{\"text\":\"Modern Machinery And Tool\",\"_id\":\"535c17d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"398321ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4c7c15d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.9129999999999967030817060731351375579833984375,\"_inline_size_tablet\":100,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5683e90d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":162,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"860\",\"height\":\"980\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b6190b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":163,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"-59\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"250636f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"713aa588\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"51a71b71\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#00160E\",\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=primary\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=06a34e7\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"st_content_title_color_responsive\":\"#7F7F7F\",\"st_super_color_responsive\":\"#FFD402\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\",\"sg_setting_html_tag\":\"span\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5557874f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"73847855\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":345,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Pressure-Wash.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"b1058a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":224,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":478,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":325,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"69098afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"40\",\"bottom\":\"80\",\"left\":\"40\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"7cb7bf82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91cb5d9\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26358abf\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Have The Perfect Solution For Your Lawn and Driveway Problems\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15a36cc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42c8d36c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"7114454f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"76f24ca8\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Variation Gardening\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"138cc39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"28a78a06\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Expert Landscapers\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c5ac2bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"38fdb183\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"3ce0b95b\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Affordable Price\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-save-money-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4c80f133\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"7451fb11\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Free Consultation\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-Consultancy-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e93f2c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"39a46e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"6773b2a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"87647bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Providing Services For All Your Residential And Commercial Needs\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3d4509\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6960c5\",\"elType\":\"section\",\"settings\":{\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"20701e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"a2e2fb9\",\"elType\":\"widget\",\"settings\":{\"premium_carousel_slider_content\":[\"Service 4\",\"Service 3\",\"Service 2\",\"service 1\"],\"premium_carousel_templates_repeater\":[],\"premium_carousel_responsive_desktop\":3,\"premium_carousel_responsive_tabs\":2,\"premium_carousel_nav_options\":\"none\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"premium_carousel_autoplay_speed\":10000,\"premium_carousel_arrow_icon_prev\":\"left_arrow_chevron\",\"premium_carousel_arrow_icon_next\":\"right_arrow_chevron\",\"premium_carousel_arrow_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"premium_carousel_arrow_position\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"premium_carousel_arrows_radius_normal\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"__globals__\":{\"premium_carousel_arrow_color\":\"globals\\/colors?id=06a34e7\",\"premium_carousel_arrow_bg_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"premium-carousel-widget\"},{\"id\":\"aed5322\",\"elType\":\"section\",\"settings\":{\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"5188113\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"d9b24b7\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"View All\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_text_decoration\":\"none\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_color_responsive\":\"#3F5A29\",\"st_button_normal_background_background_color\":\"#FFD402\",\"st_button_hover_color_responsive\":\"#FFD402\",\"st_button_hover_background_background_color\":\"#3F5A29\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30164d28\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"6e6d8a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":142,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-services.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"bd233da\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6535a16\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"937e2e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"85e7aee\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Lawn Services\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"d9723d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"c908972\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37c1cce6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":143,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/driveway-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5b3e60ba\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3b291bbf\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"20b91942\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5649f719\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Driveway Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6300b69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"256ddf68\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3735f0b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":144,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/deck-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"741128a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3691562\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"3c8a0e6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5eb1b3b9\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Deck Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"25f37292\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"61c9ff8e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d41e618\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"8781ee3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":145,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/weed-control.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"bd84c7d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"14f7965\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"fb2459e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"0582197\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Weed Control \",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"f7b0fa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"0197d9e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f3de9c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":146,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/grass-feed.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"75ba950\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"23edbf4\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"ad70b3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"b1c4ac7\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Grass Feed\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6f592ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"0043a3b\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"790dd775\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"360\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"160\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"140\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"background_overlay_color_b\":\"#000414\",\"background_overlay_image\":{\"id\":186,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/a-gardener-watering-plants-in-a-flowerbed-2RT8DWL-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"a2ed5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"7e37f762\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Landscaping\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a092069\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d5099\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need Someone To Take Care Your Lawn and Driveway?\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=07ee36d\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1198756c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"66521a56\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":20,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":4,\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"1a89d099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.5090000000000003410605131648480892181396484375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"id\":191,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/happy-gardeners-with-plants-and-lawn-mower-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"space-between\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_color\":\"#FFFFFF00\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":9,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"46b821c1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":219,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":183,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"449971a9\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Make Appointment & Take Care Your Garden\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=secondary\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=93191b3\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_content_title_color_hover_responsive\":\"#FFFFFF\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#FFFFFF\",\"st_icon_color_responsive\":\"#00E5CC\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#00E5CC\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":false},{\"id\":\"13747b6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.4909999999999996589394868351519107818603515625,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1a13f42e\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"178***1721830795182\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fde8487\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"59883b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1617542a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Process\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29c7aa96\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Complete Every Step Carefully\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ced0d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d62463d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"18cf7834\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"41f79872\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-consult-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consultation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65e1b761\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"span\",\"title_color\":\"#FFD402\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#006943\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12cdbf13\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"4175d29\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-pencil_art-light\",\"library\":\"jkiticon\"},\"title_text\":\"Design Installation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2adabf01\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b628\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"569b3221\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consturction \",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"67d6b2e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6fff79c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"53c9a76e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"title_text\":\"Finished Work\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"555aace0\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d57540b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"71\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardening-background-with-garden-tolls-A9BGNJU.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"147831a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5a53d120\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"20\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Years of Experience\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"488f4727\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"6b8f6eae\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"76666759\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"6f532f9e\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"2850\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Happy Customers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"265fd738\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5473dc22\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"64\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Expert Landscapers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b38731e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"4945f2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"627cd42c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"65e3182\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.56499999999999772626324556767940521240234375,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"43108b53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Projects\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45328989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Project We Have Done\\n\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"f382082\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.49900000000000233058017329312860965728759765625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":40,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"55ecfb57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"67afcbfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.0330000000000012505552149377763271331787109375,\"_inline_size_tablet\":23,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"4989aa04\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Projects\",\"align\":\"right\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"left\",\"hover_animation\":\"float\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"32515d84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"3f5753f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"21982cfb\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":196,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Cutting-Leaf.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Cutting Leaf\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"404dc561\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"58d29b54\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":197,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Home-Garden.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Home Garden\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"3bff1dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"3c24185a\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":195,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/build-backyard.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Build Backyard\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_image_height_responsive_tablet\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b3cb58d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"initial\",\"background_ypos\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_image\":{\"id\":201,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-moving-aerial-photo-Z8KDGJ9-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_color\":\"#0000007D\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"79705206\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"51c9a732\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73b2fe0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"What They Say About Us\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4876e632\",\"elType\":\"widget\",\"settings\":{\"sg_layout_testimonial_choose\":\"style-2\",\"sg_testimonials_image_size_imagesize_size\":\"medium\",\"sg_testimonials_list\":[{\"sg_testimonials_list_client_avatar\":{\"id\":\"75\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/3SUMAU.jpg\"},\"_id\":\"6e9b2e1\",\"sg_testimonials_list_client_name\":\"Regan Traynor\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"76\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/CASCKD8.jpg\"},\"sg_testimonials_list_client_name\":\"Maisha Dunn\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"d069a43\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"77\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/MKLVKTE.jpg\"},\"sg_testimonials_list_client_name\":\"Reis Leonard\",\"sg_testimonials_list_designation\":\"Businessman\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"05c24f5\"}],\"st_wrapper_alignment_responsive\":\"left\",\"st_client_name_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_description_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_client_name_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_client_designation_normal_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_client_designation_normal_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=d343bdf\",\"st_rating_color_responsive\":\"\",\"st_client_name_normal_color_responsive\":\"\",\"st_quote_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_layout_background_background_color\":\"\"},\"st_layout_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_layout_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_wrapper_fix_height\":\"\",\"sg_setting_autoplay\":\"yes\",\"sg_setting_autoplay_pause\":\"\",\"sg_setting_arrow\":\"\",\"sg_setting_arrow_position\":\"middle-edge\",\"sg_setting_dots\":\"\",\"sg_setting_quote\":\"yes\",\"sg_setting_rating\":\"\",\"st_layout_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_layout_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_slide_show_responsive\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"sg_setting_quote_icon\":{\"value\":\"jki jki-quote-light\",\"library\":\"jkiticon\"},\"sg_layout_image_position\":\"below\",\"st_layout_background_background_background\":\"classic\",\"st_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position\":\"\",\"st_quote_override_position_top_responsive\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"st_quote_override_position_left_responsive\":{\"unit\":\"px\",\"size\":442,\"sizes\":[]},\"st_client_name_normal_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_quote_normal_font_size_responsive\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"st_client_image_margin_responsive\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_rating_font_size_responsive\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"st_rating_margin_right_responsive\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_setting_slide_show_responsive_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"st_wrapper_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position_top_responsive_tablet\":{\"unit\":\"px\",\"size\":249,\"sizes\":[]},\"st_quote_override_position_top_responsive_mobile\":{\"unit\":\"px\",\"size\":193,\"sizes\":[]},\"st_quote_override_position_left_responsive_tablet\":{\"unit\":\"px\",\"size\":265,\"sizes\":[]},\"st_quote_override_position_left_responsive_mobile\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]},\"st_quote_normal_font_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"st_description_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_normal_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64afd05f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"746d276b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"30338dfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f950be4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ca735b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5d6ca3ad\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_title_hover_color_responsive\":\"globals\\/colors?id=secondary\",\"st_readmore_hover_color_responsive\":\"globals\\/colors?id=secondary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#646974\",\"st_excerpt_color_responsive\":\"#646974\",\"st_title_normal_color_responsive\":\"#272B36\",\"st_thumbnail_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_title_hover_color_responsive\":\"#FA8D25\",\"st_readmore_normal_color_responsive\":\"#FA8D25\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":false}],\"isInner\":false}]'),(2261,365,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(2262,365,'_elementor_pro_version','3.10.1'),(2263,366,'_elementor_edit_mode','builder'),(2264,366,'_elementor_template_type','wp-page'),(2265,366,'_elementor_version','3.23.2'),(2266,366,'_wp_page_template','default'),(2267,366,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(2268,366,'_elementor_data','[{\"id\":\"35495243\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"Eldery male gardener using scissors for bushes\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":69,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"160\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":0,\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_size_tablet\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"top center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00160E\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"background_overlay_color_b\":\"#00000054\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_slideshow_gallery\":[{\"id\":154,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-02-5.jpg\"},{\"id\":156,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-04-3.jpg\"},{\"id\":157,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/banner-01-5.jpg\"}],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"739a26d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":65,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"56\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=06a34e7\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"132d1a8e\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"For All \",\"sg_title_focused\":\" Luxury\",\"sg_title_after\":\"Cleaning And Maintenance Services\",\"sg_title_html_tag\":\"h1\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=primary\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_focused_color_responsive\":\"globals\\/colors?id=secondary\",\"st_focused_typography_content_typography_typography\":\"globals\\/typography?id=primary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":87.606999999999999317878973670303821563720703125}},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"7c49583a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":87.832999999999998408384271897375583648681640625}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"635cb25b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"23cf340e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37.85499999999999687361196265555918216705322265625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":48,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1c4c950d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4768b6f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":62.14500000000000312638803734444081783294677734375,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"flex-start\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":52,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_mobile\":50,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"34c0badb\",\"elType\":\"widget\",\"settings\":{\"sg_video_button_title\":\"Play Video\",\"sg_video_button_icon\":{\"value\":\"jki jki-play\",\"library\":\"jkiticon\"},\"sg_video_url\":\"#\",\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_width_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_line_height_responsive\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#FFD402\",\"st_button_normal_glow_color_responsive\":\"#00694361\",\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"_element_width\":\"auto\",\"__globals__\":{\"st_button_normal_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=accent\",\"st_border_normal_border_border_color\":\"\",\"st_button_hover_text_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_normal_glow_color_responsive\":\"\"},\"st_button_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_button_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_width_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_line_height_responsive_mobile\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"st_border_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_border_normal_border_border_color\":\"#FFD027\",\"st_button_line_height_responsive_tablet\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"st_button_normal_background_background_color\":\"#006943\",\"st_button_hover_text_color_responsive\":\"#006943\",\"st_button_hover_background_background_color\":\"#FFD402\",\"sg_video_auto_play\":\"\",\"sg_video_mute\":\"\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_video_button\"},{\"id\":\"232ec8da\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Intro\",\"align\":\"right\",\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"globals\\/colors?id=primary\",\"hover_color\":\"\",\"typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"hide_mobile\":\"hidden-mobile\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#00160E\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"49b348ef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_position\":\"middle\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"edc2dbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.00200000000000244426701101474463939666748046875,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"4e2246bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Prestige Luxury Cleanings LLC\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"139cc45f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Lawn and Driveway Cleaning Services\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dc78e71\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"597dc67d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_position\":\"middle\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"26cf3840\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"3b19bda0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":167,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"980\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a46c929\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"7c4d8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Public Liability Insurance\",\"_id\":\"a978734\"},{\"text\":\"Environmentally Friendly\",\"_id\":\"1cd10a1\"},{\"text\":\"On Time, Every Time\",\"_id\":\"c6767db\"},{\"text\":\"Beautiful Garden Designs\",\"_id\":\"d4743f4\"},{\"text\":\"Modern Machinery And Tool\",\"_id\":\"535c17d\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"398321ed\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"\",\"background_color\":\"globals\\/colors?id=accent\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"hover_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"4c7c15d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.9129999999999967030817060731351375579833984375,\"_inline_size_tablet\":100,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5683e90d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":162,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":95,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"860\",\"height\":\"980\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b6190b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":163,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"-59\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"250636f1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"713aa588\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"51a71b71\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#00160E\",\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=primary\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=text\",\"_background_color\":\"globals\\/colors?id=06a34e7\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"st_content_title_color_responsive\":\"#7F7F7F\",\"st_super_color_responsive\":\"#FFD402\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\",\"sg_setting_html_tag\":\"span\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5557874f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"73847855\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":345,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Pressure-Wash.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":19,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":16,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"b1058a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":224,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":478,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":325,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"69098afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.059999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=primary\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"40\",\"bottom\":\"80\",\"left\":\"40\",\"isLinked\":false},\"background_overlay_position\":\"center center\",\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"7cb7bf82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=91cb5d9\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26358abf\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Have The Perfect Solution For Your Lawn and Driveway Problems\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15a36cc4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=e8dc402\"},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42c8d36c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"7114454f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"76f24ca8\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Variation Gardening\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"138cc39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"28a78a06\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Expert Landscapers\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c5ac2bb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"38fdb183\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"3ce0b95b\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Affordable Price\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-save-money-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4c80f133\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"7451fb11\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Free Consultation\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_content_description_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=secondary\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_content_title_color_hover_responsive\":\"\",\"st_icon_gradient_background_color\":\"globals\\/colors?id=accent\",\"st_icon_gradient_background_color_b\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-Consultancy-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_container_hover_background_background_background\":\"classic\",\"st_icon_color_responsive\":\"#FA8D25\",\"st_button_normal_text_color_responsive\":\"#FA8D25\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_gradient_background_background\":\"gradient\",\"st_icon_gradient_background_gradient_angle\":{\"unit\":\"deg\",\"size\":140,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e93f2c2\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"39a46e79\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"6773b2a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"87647bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Providing Services For All Your Residential And Commercial Needs\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3d4509\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a6960c5\",\"elType\":\"section\",\"settings\":{\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"20701e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"a2e2fb9\",\"elType\":\"widget\",\"settings\":{\"premium_carousel_slider_content\":[\"Service 4\",\"Service 3\",\"Service 2\",\"service 1\"],\"premium_carousel_templates_repeater\":[],\"premium_carousel_responsive_desktop\":3,\"premium_carousel_responsive_tabs\":2,\"premium_carousel_nav_options\":\"none\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"premium_carousel_autoplay_speed\":10000,\"premium_carousel_arrow_icon_prev\":\"left_arrow_chevron\",\"premium_carousel_arrow_icon_next\":\"right_arrow_chevron\",\"premium_carousel_arrow_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"premium_carousel_arrow_position\":{\"unit\":\"px\",\"size\":-30,\"sizes\":[]},\"premium_carousel_arrows_radius_normal\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"__globals__\":{\"premium_carousel_arrow_color\":\"globals\\/colors?id=06a34e7\",\"premium_carousel_arrow_bg_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"premium-carousel-widget\"},{\"id\":\"aed5322\",\"elType\":\"section\",\"settings\":{\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"5188113\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"d9b24b7\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"View All\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_text_decoration\":\"none\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_color_responsive\":\"#3F5A29\",\"st_button_normal_background_background_color\":\"#FFD402\",\"st_button_hover_color_responsive\":\"#FFD402\",\"st_button_hover_background_background_color\":\"#3F5A29\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"30164d28\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"6e6d8a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":142,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/lawn-services.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"bd233da\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6535a16\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"937e2e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"85e7aee\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Lawn Services\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"d9723d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"c908972\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37c1cce6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":143,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/driveway-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5b3e60ba\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3b291bbf\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"20b91942\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5649f719\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Driveway Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6300b69a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"256ddf68\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3735f0b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":144,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/deck-pressure-washing.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"741128a9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3691562\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"3c8a0e6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5eb1b3b9\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Deck Pressure Washing\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"25f37292\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"61c9ff8e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d41e618\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"8781ee3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":145,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/weed-control.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"bd84c7d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"14f7965\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"fb2459e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"0582197\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Weed Control \",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"f7b0fa1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"0197d9e\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f3de9c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":146,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/grass-feed.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"75ba950\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":357,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"23edbf4\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"ad70b3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.58899999999999863575794734060764312744140625,\"_inline_size_mobile\":70,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"b1c4ac7\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Grass Feed\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Lorem ipsum dolor sit amet\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=a1d69c8\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_title_text\":\"Trending Stories And Another Stories\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true},{\"id\":\"6f592ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.2710000000000007958078640513122081756591796875,\"_inline_size_mobile\":30,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"0043a3b\",\"elType\":\"widget\",\"settings\":{\"sg_content_label\":\"\",\"sg_content_link\":{\"url\":\"#\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"sg_content_icon_enable\":\"yes\",\"sg_content_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"18\",\"isLinked\":false},\"st_button_normal_background_background_background\":\"classic\",\"st_button_hover_background_background_background\":\"classic\",\"st_border_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=0a50947\",\"st_button_normal_background_background_color\":\"globals\\/colors?id=accent\",\"st_button_normal_color_responsive\":\"globals\\/colors?id=secondary\",\"st_button_hover_background_background_color\":\"globals\\/colors?id=secondary\",\"st_button_hover_color_responsive\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"790dd775\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.11999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"360\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"160\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"140\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"background_overlay_color_b\":\"#000414\",\"background_overlay_image\":{\"id\":186,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/a-gardener-watering-plants-in-a-flowerbed-2RT8DWL-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_position\":\"bottom center\",\"background_overlay_repeat\":\"repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"a2ed5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"7e37f762\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Landscaping\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a092069\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57d5099\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need Someone To Take Care Your Lawn and Driveway?\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=07ee36d\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1198756c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"19\",\"bottom\":\"0\",\"left\":\"19\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"66521a56\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":20,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":4,\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"1a89d099\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.5090000000000003410605131648480892181396484375,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"id\":362,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/9e95ba14a10415ba80a97fb9792d1b71.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"initial\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"space-between\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"background_overlay_color\":\"#FFFFFF00\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":9,\"sizes\":[]},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"46b821c1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":219,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":183,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"449971a9\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Make Appointment & Take Care Your Garden\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=secondary\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"globals\\/colors?id=accent\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=93191b3\",\"st_icon_color_responsive\":\"globals\\/colors?id=secondary\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_content_title_color_hover_responsive\":\"#FFFFFF\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#FFFFFF\",\"st_icon_color_responsive\":\"#00E5CC\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"500\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#00E5CC\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_badge_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_icon_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":false},{\"id\":\"13747b6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.4909999999999996589394868351519107818603515625,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 22, 20.00000000000001, 0.11)\"},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1a13f42e\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"178***1721830795182\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fde8487\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"59883b0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"1617542a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Process\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"29c7aa96\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Complete Every Step Carefully\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ced0d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d62463d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"18cf7834\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"41f79872\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-consult-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consultation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65e1b761\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"span\",\"title_color\":\"#FFD402\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"12\",\"bottom\":\"10\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#006943\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"12cdbf13\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"4175d29\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-pencil_art-light\",\"library\":\"jkiticon\"},\"title_text\":\"Design Installation\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2adabf01\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"16c8b628\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"569b3221\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-engineer-light\",\"library\":\"jkiticon\"},\"title_text\":\"Start Consturction \",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"67d6b2e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6fff79c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"align\":\"center\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"53c9a76e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-planting-light\",\"library\":\"jkiticon\"},\"title_text\":\"Finished Work\",\"description_text\":\"\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=06a34e7\",\"title_typography_typography\":\"globals\\/typography?id=a1d69c8\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"555aace0\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"span\",\"title_color\":\"#006943\",\"_padding\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"12\",\"bottom\":\"11\",\"left\":\"12\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFD402\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=b8d9da4\",\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d57540b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"40\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"71\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/gardening-background-with-garden-tolls-A9BGNJU.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"147831a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5a53d120\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"20\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Years of Experience\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"488f4727\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"6b8f6eae\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"1856\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Projects Completed\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"76666759\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"6f532f9e\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"2850\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Happy Customers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false},{\"id\":\"265fd738\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"5473dc22\",\"elType\":\"widget\",\"settings\":{\"sg_setting_enable_hover_border_bottom\":\"\",\"sg_setting_hover_direction\":\"right\",\"sg_icon_type\":\"none\",\"sg_content_number_prefix\":\"\",\"sg_content_number\":\"64\",\"sg_content_number_suffix\":\"\",\"sg_content_title\":\"Expert Landscapers\",\"sg_setting_enable_super\":\"yes\",\"sg_content_super\":\"+\",\"st_content_number_color_responsive\":\"#FFFFFF\",\"st_super_left_responsive\":{\"unit\":\"px\",\"size\":-3,\"sizes\":[]},\"__globals__\":{\"st_content_number_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_super_color_responsive\":\"globals\\/colors?id=accent\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_content_number_typography_content_typography_typography\":\"globals\\/typography?id=0703412\",\"st_super_typography_content_typography_typography\":\"globals\\/typography?id=dcc4f3a\",\"st_content_title_color_responsive\":\"globals\\/colors?id=e8dc402\"},\"st_content_number_spacing_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"sg_icon_choose\":{\"value\":\"jki jki-diploma-light\",\"library\":\"jkiticon\"},\"st_super_top_responsive\":{\"unit\":\"px\",\"size\":-4,\"sizes\":[]},\"st_super_vertical_position_responsive\":\"baseline\",\"st_content_title_spacing_responsive\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_setting_html_tag\":\"span\",\"st_content_number_typography_content_typography_typography\":\"custom\",\"st_content_number_typography_content_typography_font_family\":\"Inter\",\"st_content_number_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"st_content_number_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"st_content_number_typography_content_typography_font_weight\":\"600\",\"st_content_number_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"st_content_title_color_responsive\":\"#C4C4C4\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Heebo\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"300\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_super_color_responsive\":\"#FFD402\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_fun_fact\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b38731e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"4945f2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"627cd42c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"bottom\",\"structure\":\"30\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"65e3182\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":35.56499999999999772626324556767940521240234375,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"43108b53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Projects\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45328989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Project We Have Done\\n\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"f382082\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":45.49900000000000233058017329312860965728759765625,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":40,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"55ecfb57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"67afcbfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.0330000000000012505552149377763271331787109375,\"_inline_size_tablet\":23,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"4989aa04\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Projects\",\"align\":\"right\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=accent\",\"background_color\":\"globals\\/colors?id=accent\",\"button_background_hover_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\",\"button_text_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"left\",\"hover_animation\":\"float\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"button_text_color\":\"#006943\",\"background_color\":\"#FFD402\",\"hover_color\":\"#FFD402\",\"button_background_hover_color\":\"#006943\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"32515d84\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"3f5753f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"21982cfb\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":196,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Cutting-Leaf.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Cutting Leaf\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"404dc561\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"58d29b54\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":197,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/Home-Garden.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Home Garden\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"3bff1dfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160,\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"3c24185a\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":195,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/build-backyard.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Build Backyard\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#006943E3\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=274f2d8\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_name_normal_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_description_normal_color_responsive\":\"globals\\/colors?id=06a34e7\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"st_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_name_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_position_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_control_phone_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"st_content_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_image_height_responsive_tablet\":{\"unit\":\"px\",\"size\":490,\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b3cb58d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"bottom center\",\"background_ypos\":{\"unit\":\"%\",\"size\":21,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"80\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=primary\"},\"background_image\":{\"id\":363,\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/iStock-492496468.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_overlay_color\":\"#0000007D\",\"background_xpos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.1000000000000000055511151231257827021181583404541015625,\"sizes\":[]},\"ekit_has_onepagescroll_dot\":\"yes\",\"ekit_onepagescroll_tooltip_text\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"content_position\":\"middle\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":73,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"79705206\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"center\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"48\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"51c9a732\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73b2fe0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"What They Say About Us\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=06a34e7\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4876e632\",\"elType\":\"widget\",\"settings\":{\"sg_layout_testimonial_choose\":\"style-2\",\"sg_testimonials_image_size_imagesize_size\":\"medium\",\"sg_testimonials_list\":[{\"sg_testimonials_list_client_avatar\":{\"id\":\"75\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/3SUMAU.jpg\"},\"_id\":\"6e9b2e1\",\"sg_testimonials_list_client_name\":\"Regan Traynor\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"76\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/CASCKD8.jpg\"},\"sg_testimonials_list_client_name\":\"Maisha Dunn\",\"sg_testimonials_list_designation\":\"Entrepreneur\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"d069a43\"},{\"sg_testimonials_list_client_avatar\":{\"id\":\"77\",\"url\":\"https:\\/\\/victor-quintero.designsfunnelserver.com\\/wp-content\\/uploads\\/2024\\/07\\/MKLVKTE.jpg\"},\"sg_testimonials_list_client_name\":\"Reis Leonard\",\"sg_testimonials_list_designation\":\"Businessman\",\"sg_testimonials_list_review\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam\",\"sg_testimonials_list_background_background_background\":\"classic\",\"_id\":\"05c24f5\"}],\"st_wrapper_alignment_responsive\":\"left\",\"st_client_name_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_description_color_responsive\":\"globals\\/colors?id=06a34e7\",\"st_client_name_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_client_designation_normal_typography_content_typography_typography\":\"globals\\/typography?id=f882794\",\"st_client_designation_normal_color_responsive\":\"globals\\/colors?id=e8dc402\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=d343bdf\",\"st_rating_color_responsive\":\"\",\"st_client_name_normal_color_responsive\":\"\",\"st_quote_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_layout_background_background_color\":\"\"},\"st_layout_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_layout_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_wrapper_fix_height\":\"\",\"sg_setting_autoplay\":\"yes\",\"sg_setting_autoplay_pause\":\"\",\"sg_setting_arrow\":\"\",\"sg_setting_arrow_position\":\"middle-edge\",\"sg_setting_dots\":\"\",\"sg_setting_quote\":\"yes\",\"sg_setting_rating\":\"\",\"st_layout_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_layout_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_slide_show_responsive\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"sg_setting_quote_icon\":{\"value\":\"jki jki-quote-light\",\"library\":\"jkiticon\"},\"sg_layout_image_position\":\"below\",\"st_layout_background_background_background\":\"classic\",\"st_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position\":\"\",\"st_quote_override_position_top_responsive\":{\"unit\":\"px\",\"size\":180,\"sizes\":[]},\"st_quote_override_position_left_responsive\":{\"unit\":\"px\",\"size\":442,\"sizes\":[]},\"st_client_name_normal_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"st_quote_normal_font_size_responsive\":{\"unit\":\"px\",\"size\":55,\"sizes\":[]},\"st_client_image_margin_responsive\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_rating_font_size_responsive\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"st_rating_margin_right_responsive\":{\"unit\":\"px\",\"size\":57,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_setting_slide_show_responsive_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"st_wrapper_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"sg_setting_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_description_margin_responsive_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_override_position_top_responsive_tablet\":{\"unit\":\"px\",\"size\":249,\"sizes\":[]},\"st_quote_override_position_top_responsive_mobile\":{\"unit\":\"px\",\"size\":193,\"sizes\":[]},\"st_quote_override_position_left_responsive_tablet\":{\"unit\":\"px\",\"size\":265,\"sizes\":[]},\"st_quote_override_position_left_responsive_mobile\":{\"unit\":\"px\",\"size\":216,\"sizes\":[]},\"st_quote_normal_font_size_responsive_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"st_description_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_quote_normal_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64afd05f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\",\"pa_condition_repeater\":[]},\"elements\":[{\"id\":\"746d276b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[{\"id\":\"30338dfe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=91cb5d9\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f950be4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15ca735b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5d6ca3ad\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=8966ad4\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=558fe58\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_title_hover_color_responsive\":\"globals\\/colors?id=secondary\",\"st_readmore_hover_color_responsive\":\"globals\\/colors?id=secondary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#646974\",\"st_excerpt_color_responsive\":\"#646974\",\"st_title_normal_color_responsive\":\"#272B36\",\"st_thumbnail_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"st_title_hover_color_responsive\":\"#FA8D25\",\"st_readmore_normal_color_responsive\":\"#FA8D25\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\",\"pa_condition_repeater\":[],\"premium_tooltip_text\":\"Hi, I\'m a global tooltip.\",\"premium_tooltip_position\":\"top,bottom\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":false}],\"isInner\":false}]'),(2269,366,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(2270,366,'_elementor_pro_version','3.10.1'),(2271,24,'_elementor_css','a:6:{s:4:\"time\";i:1721939047;s:5:\"fonts\";a:1:{i:0;s:5:\"Inter\";}s:5:\"icons\";a:3:{i:0;s:0:\"\";i:1;s:8:\"jkiticon\";i:3;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'); /*!40000 ALTER TABLE `victorq_postmeta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `victorq_posts` -- DROP TABLE IF EXISTS `victorq_posts`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `victorq_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=368 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `victorq_posts` -- LOCK TABLES `victorq_posts` WRITE; /*!40000 ALTER TABLE `victorq_posts` DISABLE KEYS */; INSERT INTO `victorq_posts` VALUES (4,0,'2024-07-23 18:31:33','2024-07-23 18:31:33','','Navigation','','publish','closed','closed','','navigation','','','2024-07-23 18:31:33','2024-07-23 18:31:33','',0,'https://victor-quintero.designsfunnelserver.com/2024/07/23/navigation/',0,'wp_navigation','',0),(16,1,'2024-07-23 18:36:06','2024-07-23 18:36:06','','placeholder.png','','inherit','open','closed','','placeholder-png','','','2024-07-23 18:36:06','2024-07-23 18:36:06','',0,'https://victor-quintero.designsfunnelserver.com/wp-content/uploads/2024/07/placeholder-3.png',0,'attachment','image/png',0),(17,1,'2024-07-23 18:36:07','2024-07-23 18:36:07','','logo_bloomify.png','','inherit','open','closed','','logo_bloomify-png','','','2024-07-23 18:36:07','2024-07-23 18:36:07','',0,'https://victor-quintero.designsfunnelserver.com/wp-content/uploads/2024/07/logo_bloomify-1.png',0,'attachment','image/png',0),(24,1,'2024-07-23 19:16:32','2024-07-23 19:16:32','

For All LuxuryCleaning And Maintenance Services

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation \n \n Contact Us\n \n \n \n Watch Intro\n \n
About Prestige Luxury Cleanings LLC
\n

We Provide Lawn and Driveway Cleaning Services

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit \n \"gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk\" \n \n \n More About Us\n \n \"gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w\" \n \"gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68\" \n 0\n +\n Projects Completed\n \n
Why Choose Us
\n

We Have The Perfect Solution For Your Lawn and Driveway Problems

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation \n

Variation Gardening

Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

\n

Expert Landscapers

Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

\n

Affordable Price

Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

\n

Free Consultation

Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

\n
Our Services
\n

Providing Services For All Your Residential And Commercial Needs

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n \n \n \n \n \n
\n
\n

Weed Control

Lorem ipsum dolor sit amet \n Book Now \n
\n
\n \n
\n
\n

Deck Pressure Washing

Lorem ipsum dolor sit amet \n Book Now \n
\n
\n \n
\n
\n

Driveway Pressure Washing

Lorem ipsum dolor sit amet \n Book Now \n
\n
\n \n
\n
\n

Lawn Services

Lorem ipsum dolor sit amet \n Book Now \n
\n
\n View All \n

Lawn Services

Lorem ipsum dolor sit amet \n \n

Driveway Pressure Washing

Lorem ipsum dolor sit amet \n \n

Deck Pressure Washing

Lorem ipsum dolor sit amet \n \n

Weed Control

Lorem ipsum dolor sit amet \n \n

Grass Feed

Lorem ipsum dolor sit amet \n \n
Best Landscaping
\n

Need Someone To Take Care Your Lawn and Driveway?

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

Make Appointment & Take Care Your Garden

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore

\n \n
Work Process
\n

We Complete Every Step Carefully

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n

\n Start Consultation \n

\n 01 \n

\n Design Installation \n

\n 02 \n

\n Start Consturction \n

\n 03 \n

\n Finished Work \n

\n 04 \n 0\n +\n Years of Experience\n 0\n +\n Projects Completed\n 0\n +\n Happy Customers\n 0\n +\n Expert Landscapers\n
Our Projects
\n

Project We Have Done\n

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n All Projects\n \n \"Cutting\n

Cutting Leaf

\n

\n

Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

\n \n \"Home\n

Home Garden

\n

\n

Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

\n \n \"Build\n

Build Backyard

\n

\n

Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

\n \n
Testimonials
\n

What They Say About Us

\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

\n \n \"Regan\n Regan Traynor\n

Entrepreneur

\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

\n \n \"Maisha\n Maisha Dunn\n

Entrepreneur

\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

\n \n \"Reis\n Reis Leonard\n

Businessman

\n
Our Blog
\n

Lates News and Articles

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n
\n \n edit post\n \n \"\"\n \n Uncategorized

\n 3 Important Reasons to Build A Backyard Fire Pit\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna...

\n Read More\n
\n \n edit post\n \n \"\"\n \n Uncategorized

\n We Making Your Perfect Wedding Garden at Home\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna...

\n Read More\n
\n \n edit post\n \n \"\"\n \n Uncategorized

\n Landscaping: The Best Idea You’ve Ever Had\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna...

\n Read More\n
','Home','','publish','closed','closed','','home','','','2024-07-25 19:28:21','2024-07-25 19:28:21','',0,'https://victor-quintero.designsfunnelserver.com/?page_id=24',0,'page','',0),(25,1,'2024-07-23 19:16:32','2024-07-23 19:16:32','','Home','','inherit','closed','closed','','24-revision-v1','','','2024-07-23 19:16:32','2024-07-23 19:16:32','',24,'https://victor-quintero.designsfunnelserver.com/?p=25',0,'revision','',0),(26,1,'2024-07-23 19:27:54','2024-07-23 19:27:54','','Greenco – Landscaping & Gardening Elementor Template Kit','','publish','closed','closed','','greenco-landscaping-gardening-elementor-template-kit','','','2024-07-23 19:27:54','2024-07-23 19:27:54','',0,'https://victor-quintero.designsfunnelserver.com/?p=26',0,'envato_tk_import','',0),(35,1,'2024-07-23 19:29:29','2024-07-23 19:29:29','','Kit Styles: Greenco – Landscaping & Gardening Elementor Template Kit','','publish','closed','closed','','global-kit-styles','','','2024-07-24 12:04:19','2024-07-24 12:04:19','',0,'https://victor-quintero.designsfunnelserver.com/?elementor_library=global-kit-styles',0,'elementor_library','',0),(36,1,'2024-07-23 19:29:30','2024-07-23 19:29:30','','Global Kit Styles','','inherit','closed','closed','','35-revision-v1','','','2024-07-23 19:29:30','2024-07-23 19:29:30','',35,'https://victor-quintero.designsfunnelserver.com/?p=36',0,'revision','',0),(37,1,'2024-07-23 19:29:30','2024-07-23 19:29:30','','Global Kit Styles','','inherit','closed','closed','','35-revision-v1','','','2024-07-23 19:29:30','2024-07-23 19:29:30','',35,'https://victor-quintero.designsfunnelserver.com/?p=37',0,'revision','',0),(38,1,'2024-07-23 19:29:31','2024-07-23 19:29:31','','Kit Styles: Greenco – Landscaping & Gardening Elementor Template Kit','','inherit','closed','closed','','35-revision-v1','','','2024-07-23 19:29:31','2024-07-23 19:29:31','',35,'https://victor-quintero.designsfunnelserver.com/?p=38',0,'revision','',0),(41,1,'2024-07-23 19:31:14','2024-07-23 19:31:14',' \n

\n 123 Wall St\nMiami, FL 12345

\n \n \n

\n +1 505 555 5555

\n \n \n Jki-facebook-f\n \n \n X-twitter\n \n \n Instagram\n \n \n Linkedin-in\n \n \"\" \n \n \n \"\"\n \n \n Make Appointment\n \n \"\" \n \n \n \"\"\n ','Header','','publish','closed','closed','','header','','','2024-07-24 16:20:59','2024-07-24 16:20:59','',0,'https://victor-quintero.designsfunnelserver.com/?post_type=elementor-hf&p=41',0,'elementor-hf','',0),(42,1,'2024-07-23 19:31:14','2024-07-23 19:31:14','','Header','','inherit','closed','closed','','41-revision-v1','','','2024-07-23 19:31:14','2024-07-23 19:31:14','',41,'https://victor-quintero.designsfunnelserver.com/?p=42',0,'revision','',0),(43,1,'2024-07-23 19:31:51','2024-07-23 19:31:51','','logo-UDS48Q.png','','inherit','open','closed','','logo-uds48q-png','','','2024-07-23 19:31:51','2024-07-23 19:31:51','',0,'https://victor-quintero.designsfunnelserver.com/wp-content/uploads/2024/07/logo-UDS48Q.png',0,'attachment','image/png',0),(44,1,'2024-07-23 19:31:53','2024-07-23 19:31:53',' \"\" \n \n

\n Location \n

\n

\n Jl. Raya Kuta No.70, Kuta

\n

\n Call Us \n

\n

\n (+021) 176 993

\n \n Make Appointment\n \n \n \n \"\"\n \n \n \n Jki-facebook-f\n \n \n Twitter\n \n \n Youtube\n \n \n Jki-instagram-1-light\n ','Header','','publish','closed','closed','','header','','','2024-07-23 19:31:54','2024-07-23 19:31:54','',0,'https://victor-quintero.designsfunnelserver.com/?elementor_library=header',0,'elementor_library','',0),(45,1,'2024-07-23 19:31:54','2024-07-23 19:31:54',' \"\" \n \n

\n Location \n

\n

\n Jl. Raya Kuta No.70, Kuta

\n

\n Call Us \n

\n

\n (+021) 176 993

\n \n Make Appointment\n \n \n \n \"\"\n \n \n \n Jki-facebook-f\n \n \n Twitter\n \n \n Youtube\n \n \n Jki-instagram-1-light\n ','Header','','inherit','closed','closed','','44-revision-v1','','','2024-07-23 19:31:54','2024-07-23 19:31:54','',44,'https://victor-quintero.designsfunnelserver.com/?p=45',0,'revision','',0),(46,1,'2024-07-23 19:32:00','2024-07-23 19:32:00','','Header','','inherit','closed','closed','','41-revision-v1','','','2024-07-23 19:32:00','2024-07-23 19:32:00','',41,'https://victor-quintero.designsfunnelserver.com/?p=46',0,'revision','',0),(47,1,'2024-07-23 19:32:01','2024-07-23 19:32:01','','Header','','inherit','closed','closed','','41-revision-v1','','','2024-07-23 19:32:01','2024-07-23 19:32:01','',41,'https://victor-quintero.designsfunnelserver.com/?p=47',0,'revision','',0),(48,1,'2024-07-23 19:32:01','2024-07-23 19:32:01',' \"\" \n \n

\n Location \n

\n

\n Jl. Raya Kuta No.70, Kuta

\n

\n Call Us \n

\n

\n (+021) 176 993

\n \n Make Appointment\n \n \n \n \"\"\n \n \n \n Jki-facebook-f\n \n \n Twitter\n \n \n Youtube\n \n \n Jki-instagram-1-light\n ','Header','','inherit','closed','closed','','41-revision-v1','','','2024-07-23 19:32:01','2024-07-23 19:32:01','',41,'https://victor-quintero.designsfunnelserver.com/?p=48',0,'revision','',0),(49,1,'2024-07-23 19:33:09','2024-07-23 19:33:09',' \"\" \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod \n \n

Other Pages

\n \n

Quick Links

\n \n

Newsletter

\n
\n \n \n
\n Get the latest news & updates\n \n \n Jki-facebook-f\n \n \n X-twitter\n \n \n Instagram\n \n \n Linkedin-in\n \n \n

© 2024 Prestige Luxury Cleanings LLC. All rights reserved.

Design and development by DesignsFunnel.

','Footer','','publish','closed','closed','','footer','','','2024-07-24 16:04:29','2024-07-24 16:04:29','',0,'https://victor-quintero.designsfunnelserver.com/?post_type=elementor-hf&p=49',0,'elementor-hf','',0),(50,1,'2024-07-23 19:33:09','2024-07-23 19:33:09','','Footer','','inherit','closed','closed','','49-revision-v1','','','2024-07-23 19:33:09','2024-07-23 19:33:09','',49,'https://victor-quintero.designsfunnelserver.com/?p=50',0,'revision','',0),(51,1,'2024-07-23 19:33:49','2024-07-23 19:33:49','','green-lawn-on-ground-PT9KCVE.jpg','','inherit','open','closed','','green-lawn-on-ground-pt9kcve-jpg','','','2024-07-23 19:33:49','2024-07-23 19:33:49','',0,'https://victor-quintero.designsfunnelserver.com/wp-content/uploads/2024/07/green-lawn-on-ground-PT9KCVE.jpg',0,'attachment','image/jpeg',0),(52,1,'2024-07-23 19:33:52','2024-07-23 19:33:52','','logo-footer.png','','inherit','open','closed','','logo-footer-png','','','2024-07-23 19:33:52','2024-07-23 19:33:52','',0,'https://victor-quintero.designsfunnelserver.com/wp-content/uploads/2024/07/logo-footer.png',0,'attachment','image/png',0),(53,1,'2024-07-23 19:33:53','2024-07-23 19:33:53',' \"\" \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod \n \n

Other Pages

\n \n

Quick Links

\n \n

Newsletter

\n
\n \n \n
\n Get the latest news & updates\n \n \n Jki-facebook-f\n \n \n Twitter\n \n \n Instagram\n \n \n Linkedin-in\n \n \n Landscape & Gardening Template Kit by BalinizCopyright © 2021 All rights reserved.','Footer','','publish','closed','closed','','footer','','','2024-07-23 19:33:53','2024-07-23 19:33:53','',0,'https://victor-quintero.designsfunnelserver.com/?elementor_library=footer',0,'elementor_library','',0),(54,1,'2024-07-23 19:33:53','2024-07-23 19:33:53',' \"\" \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod \n \n

Other Pages

\n \n

Quick Links

\n \n

Newsletter

\n
\n \n \n
\n Get the latest news & updates\n \n \n Jki-facebook-f\n \n \n Twitter\n \n \n Instagram\n \n \n Linkedin-in\n \n \n Landscape & Gardening Template Kit by BalinizCopyright © 2021 All rights reserved.','Footer','','inherit','closed','closed','','53-revision-v1','','','2024-07-23 19:33:53','2024-07-23 19:33:53','',53,'https://victor-quintero.designsfunnelserver.com/?p=54',0,'revision','',0),(55,1,'2024-07-23 19:33:59','2024-07-23 19:33:59','','Footer','','inherit','closed','closed','','49-revision-v1','','','2024-07-23 19:33:59','2024-07-23 19:33:59','',49,'https://victor-quintero.designsfunnelserver.com/?p=55',0,'revision','',0),(56,1,'2024-07-23 19:33:59','2024-07-23 19:33:59','','Footer','','inherit','closed','closed','','49-revision-v1','','','2024-07-23 19:33:59','2024-07-23 19:33:59','',49,'https://victor-quintero.designsfunnelserver.com/?p=56',0,'revision','',0),(57,1,'2024-07-23 19:33:59','2024-07-23 19:33:59',' \"\" \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod \n \n

Other Pages

\n \n

Quick Links

\n \n

Newsletter

\n
\n \n \n
\n Get the latest news & updates\n \n \n Jki-facebook-f\n \n \n Twitter\n \n \n Instagram\n \n \n Linkedin-in\n \n \n Landscape & Gardening Template Kit by BalinizCopyright © 2021 All rights reserved.','Footer','','inherit','closed','closed','','49-revision-v1','','','2024-07-23 19:33:59','2024-07-23 19:33:59','',49,'https://victor-quintero.designsfunnelserver.com/?p=57',0,'revision','',0),(58,1,'2024-07-23 19:35:47','2024-07-23 19:35:47','','gardener-with-hedge-trimmer-e1635892441479.jpg','','inherit','open','closed','','gardener-with-hedge-trimmer-e1635892441479-jpg','','','2024-07-23 19:35:47','2024-07-23 19:35:47','',0,'https://victor-quintero.designsfunnelserver.com/wp-content/uploads/2024/07/gardener-with-hedge-trimmer-e1635892441479.jpg',0,'attachment','image/jpeg',0),(59,1,'2024-07-23 19:35:51','2024-07-23 19:35:51','','professional-gardener-at-work-XU82AHW.jpg','','inherit','open','closed','','professional-gardener-at-work-xu82ahw-jpg','','','2024-07-23 19:35:51','2024-07-23 19:35:51','',0,'https://victor-quintero.designsfunnelserver.com/wp-content/uploads/2024/07/professional-gardener-at-work-XU82AHW.jpg',0,'attachment','image/jpeg',0),(60,1,'2024-07-23 19:35:54','2024-07-23 19:35:54','','gardener-buying-new-plantsP4VGX5F.jpg','','inherit','open','closed','','gardener-buying-new-plantsp4vgx5f-jpg','','','2024-07-23 19:35:54','2024-07-23 19:35:54','',0,'https://victor-quintero.designsfunnelserver.com/wp-content/uploads/2024/07/gardener-buying-new-plantsP4VGX5F.jpg',0,'attachment','image/jpeg',0),(61,1,'2024-07-23 19:35:57','2024-07-23 19:35:57','','garden-decorative-trees-trimming-by-professional-gardener-e1635864777836.jpg','','inherit','open','closed','','garden-decorative-trees-trimming-by-professional-gardener-e1635864777836-jpg','','','2024-07-23 19:35:57','2024-07-23 19:35:57','',0,'https://victor-quintero.designsfunnelserver.com/wp-content/uploads/2024/07/garden-decorative-trees-trimming-by-professional-gardener-e1635864777836.jpg',0,'attachment','image/jpeg',0),(62,1,'2024-07-23 19:36:00','2024-07-23 19:36:00','','gardener-and-his-flowers.jpg','','inherit','open','closed','','gardener-and-his-flowers-jpg','','','2024-07-23 19:36:00','2024-07-23 19:36:00','',0,'https://victor-quintero.designsfunnelserver.com/wp-content/uploads/2024/07/gardener-and-his-flowers.jpg',0,'attachment','image/jpeg',0),(63,1,'2024-07-23 19:36:04','2024-07-23 19:36:04','','gardener-topiary-job.jpg','','inherit','open','closed','','gardener-topiary-job-jpg','','','2024-07-23 19:36:04','2024-07-23 19:36:04','',0,'https://victor-quintero.designsfunnelserver.com/wp-content/uploads/2024/07/gardener-topiary-job.jpg',0,'attachment','image/jpeg',0),(64,1,'2024-07-23 19:36:08','2024-07-23 19:36:08','','gardener-in-newly-build-backyard-garden.jpg','','inherit','open','closed','','gardener-in-newly-build-backyard-garden-jpg','','','2024-07-23 19:36:08','2024-07-23 19:36:08','',0,'https://victor-quintero.designsfunnelserver.com/wp-content/uploads/2024/07/gardener-in-newly-build-backyard-garden.jpg',0,'attachment','image/jpeg',0),(65,1,'2024-07-23 19:36:11','2024-07-23 19:36:11','','garden-maintenance-performed-by-pro-gardener.jpg','','inherit','open','closed','','garden-maintenance-performed-by-pro-gardener-jpg','','','2024-07-23 19:36:11','2024-07-23 19:36:11','',0,'https://victor-quintero.designsfunnelserver.com/wp-content/uploads/2024/07/garden-maintenance-performed-by-pro-gardener.jpg',0,'attachment','image/jpeg',0),(66,1,'2024-07-23 19:36:15','2024-07-23 19:36:15','','men-watering-garden-plants.jpg','','inherit','open','closed','','men-watering-garden-plants-jpg','','','2024-07-23 19:36:15','2024-07-23 19:36:15','',0,'https://victor-quintero.designsfunnelserver.com/wp-content/uploads/2024/07/men-watering-garden-plants.jpg',0,'attachment','image/jpeg',0),(67,1,'2024-07-23 19:36:19','2024-07-23 19:36:19','','gardener-finishing-garden.jpg','','inherit','open','closed','','gardener-finishing-garden-jpg','','','2024-07-23 19:36:19','2024-07-23 19:36:19','',0,'https://victor-quintero.designsfunnelserver.com/wp-content/uploads/2024/07/gardener-finishing-garden.jpg',0,'attachment','image/jpeg',0),(68,1,'2024-07-23 19:36:22','2024-07-23 19:36:22','','gardener-with-hedge-trimmer.jpg','','inherit','open','closed','','gardener-with-hedge-trimmer-jpg','','','2024-07-23 19:36:22','2024-07-23 19:36:22','',0,'https://victor-quintero.designsfunnelserver.com/wp-content/uploads/2024/07/gardener-with-hedge-trimmer.jpg',0,'attachment','image/jpeg',0),(69,1,'2024-07-23 19:36:25','2024-07-23 19:36:25','','a-gardener-watering-plants-in-a-flowerbed-2RT8DWL.jpg','','inherit','open','closed','','a-gardener-watering-plants-in-a-flowerbed-2rt8dwl-jpg','','','2024-07-23 19:36:25','2024-07-23 19:36:25','',0,'https://victor-quintero.designsfunnelserver.com/wp-content/uploads/2024/07/a-gardener-watering-plants-in-a-flowerbed-2RT8DWL.jpg',0,'attachment','image/jpeg',0),(70,1,'2024-07-23 19:36:29','2024-07-23 19:36:29','','happy-gardeners-with-plants-and-lawn-mower.jpg','','inherit','open','closed','','happy-gardeners-with-plants-and-lawn-mower-jpg','','','2024-07-23 19:36:29','2024-07-23 19:36:29','',0,'https://victor-quintero.designsfunnelserver.com/wp-content/uploads/2024/07/happy-gardeners-with-plants-and-lawn-mower.jpg',0,'attachment','image/jpeg',0),(71,1,'2024-07-23 19:36:32','2024-07-23 19:36:32','','gardening-background-with-garden-tolls-A9BGNJU.jpg','','inherit','open','closed','','gardening-background-with-garden-tolls-a9bgnju-jpg','','','2024-07-23 19:36:32','2024-07-23 19:36:32','',0,'https://victor-quintero.designsfunnelserver.com/wp-content/uploads/2024/07/gardening-background-with-garden-tolls-A9BGNJU.jpg',0,'attachment','image/jpeg',0),(72,1,'2024-07-23 19:36:35','2024-07-23 19:36:35','','gardener-pruning-and-shaping-bushes-.jpg','','inherit','open','closed','','gardener-pruning-and-shaping-bushes-jpg','','','2024-07-23 19:36:35','2024-07-23 19:36:35','',0,'https://victor-quintero.designsfunnelserver.com/wp-content/uploads/2024/07/gardener-pruning-and-shaping-bushes-.jpg',0,'attachment','image/jpeg',0),(73,1,'2024-07-23 19:36:39','2024-07-23 19:36:39','','backyard-garden.jpg','','inherit','open','closed','','backyard-garden-jpg','','','2024-07-23 19:36:39','2024-07-23 19:36:39','',0,'https://victor-quintero.designsfunnelserver.com/wp-content/uploads/2024/07/backyard-garden.jpg',0,'attachment','image/jpeg',0),(74,1,'2024-07-23 19:36:44','2024-07-23 19:36:44','','lawn-moving-aerial-photo-Z8KDGJ9.jpg','','inherit','open','closed','','lawn-moving-aerial-photo-z8kdgj9-jpg','','','2024-07-23 19:36:44','2024-07-23 19:36:44','',0,'https://victor-quintero.designsfunnelserver.com/wp-content/uploads/2024/07/lawn-moving-aerial-photo-Z8KDGJ9.jpg',0,'attachment','image/jpeg',0),(75,1,'2024-07-23 19:36:47','2024-07-23 19:36:47','','3SUMAU.jpg','','inherit','open','closed','','3sumau-jpg','','','2024-07-23 19:36:47','2024-07-23 19:36:47','',0,'https://victor-quintero.designsfunnelserver.com/wp-content/uploads/2024/07/3SUMAU.jpg',0,'attachment','image/jpeg',0),(76,1,'2024-07-23 19:36:49','2024-07-23 19:36:49','','CASCKD8.jpg','','inherit','open','closed','','casckd8-jpg','','','2024-07-23 19:36:49','2024-07-23 19:36:49','',0,'https://victor-quintero.designsfunnelserver.com/wp-content/uploads/2024/07/CASCKD8.jpg',0,'attachment','image/jpeg',0),(77,1,'2024-07-23 19:36:51','2024-07-23 19:36:51','','MKLVKTE.jpg','','inherit','open','closed','','mklvkte-jpg','','','2024-07-23 19:36:51','2024-07-23 19:36:51','',0,'https://victor-quintero.designsfunnelserver.com/wp-content/uploads/2024/07/MKLVKTE.jpg',0,'attachment','image/jpeg',0),(78,1,'2024-07-23 19:36:52','2024-07-23 19:36:52','

Complete For All Landscape Service And Maintenance

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation \n \n Contact Us\n \n \n \n Watch Intro\n \n
About Greenco
\n

We Provide Landscaping And Garden Care Services

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit \n \"gardener-and-his-flowers.jpg\" \n \n \n More About Us\n \n \"gardener-topiary-job.jpg\" \n \"gardener-in-newly-build-backyard-garden.jpg\" \n 0\n +\n Projects Completed\n \n
Why Choose Us
\n

We Have The Perfect Solution For Your Landscape Problems

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation \n

Variation Gardening

Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

\n

Expert Landscapers

Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

\n

Affordable Price

Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

\n

Free Consultation

Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

\n
Our Services
\n

Find The Best Service For Your Garden

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n

Watering Garden

Lorem ipsum dolor sit amet \n \n

Lawn Maintenance

Lorem ipsum dolor sit amet \n \n

Cutting Leaf

Lorem ipsum dolor sit amet \n \n
Best Landscaping
\n

Need Someone To Take Care Your Garden & Lawn?

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

Make Appointment & Take Care Your Garden

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore

\n \n
Work Process
\n

We Complete Every Step Carefully

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n

\n Start Consultation \n

\n 01 \n

\n Design Installation \n

\n 02 \n

\n Start Consturction \n

\n 03 \n

\n Finished Work \n

\n 04 \n 0\n +\n Years of Experience\n 0\n +\n Projects Completed\n 0\n +\n Happy Customers\n 0\n +\n Expert Landscapers\n
Our Projects
\n

Project We Have Done\n

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n All Projects\n \n \"Cutting\n

Cutting Leaf

\n

\n

Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

\n \n \"Home\n

Home Garden

\n

\n

Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

\n \n \"Build\n

Build Backyard

\n

\n

Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

\n \n
Testimonials
\n

What They Says About Us

\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

\n \n \"Regan\n Regan Traynor\n

Entrepreneur

\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

\n \n \"Maisha\n Maisha Dunn\n

Entrepreneur

\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

\n \n \"Reis\n Reis Leonard\n

Businessman

\n
Our Blog
\n

Lates News and Articles

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n No Content Available','Home','','publish','closed','closed','','home','','','2024-07-23 19:36:53','2024-07-23 19:36:53','',0,'https://victor-quintero.designsfunnelserver.com/?elementor_library=home',0,'elementor_library','',0),(79,1,'2024-07-23 19:36:53','2024-07-23 19:36:53','

Complete For All Landscape Service And Maintenance

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation \n \n Contact Us\n \n \n \n Watch Intro\n \n
About Greenco
\n

We Provide Landscaping And Garden Care Services

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit \n \"gardener-and-his-flowers.jpg\" \n \n \n More About Us\n \n \"gardener-topiary-job.jpg\" \n \"gardener-in-newly-build-backyard-garden.jpg\" \n 0\n +\n Projects Completed\n \n
Why Choose Us
\n

We Have The Perfect Solution For Your Landscape Problems

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation \n

Variation Gardening

Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

\n

Expert Landscapers

Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

\n

Affordable Price

Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

\n

Free Consultation

Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

\n
Our Services
\n

Find The Best Service For Your Garden

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n

Watering Garden

Lorem ipsum dolor sit amet \n \n

Lawn Maintenance

Lorem ipsum dolor sit amet \n \n

Cutting Leaf

Lorem ipsum dolor sit amet \n \n
Best Landscaping
\n

Need Someone To Take Care Your Garden & Lawn?

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

Make Appointment & Take Care Your Garden

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore

\n \n
Work Process
\n

We Complete Every Step Carefully

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n

\n Start Consultation \n

\n 01 \n

\n Design Installation \n

\n 02 \n

\n Start Consturction \n

\n 03 \n

\n Finished Work \n

\n 04 \n 0\n +\n Years of Experience\n 0\n +\n Projects Completed\n 0\n +\n Happy Customers\n 0\n +\n Expert Landscapers\n
Our Projects
\n

Project We Have Done\n

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n All Projects\n \n \"Cutting\n

Cutting Leaf

\n

\n

Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

\n \n \"Home\n

Home Garden

\n

\n

Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

\n \n \"Build\n

Build Backyard

\n

\n

Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

\n \n
Testimonials
\n

What They Says About Us

\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

\n \n \"Regan\n Regan Traynor\n

Entrepreneur

\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

\n \n \"Maisha\n Maisha Dunn\n

Entrepreneur

\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

\n \n \"Reis\n Reis Leonard\n

Businessman

\n
Our Blog
\n

Lates News and Articles

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n No Content Available','Home','','inherit','closed','closed','','78-revision-v1','','','2024-07-23 19:36:53','2024-07-23 19:36:53','',78,'https://victor-quintero.designsfunnelserver.com/?p=79',0,'revision','',0),(80,1,'2024-07-23 19:37:20','2024-07-23 19:37:20','','Home','','inherit','closed','closed','','24-revision-v1','','','2024-07-23 19:37:20','2024-07-23 19:37:20','',24,'https://victor-quintero.designsfunnelserver.com/?p=80',0,'revision','',0),(81,1,'2024-07-23 19:37:20','2024-07-23 19:37:20','','Home','','inherit','closed','closed','','24-revision-v1','','','2024-07-23 19:37:20','2024-07-23 19:37:20','',24,'https://victor-quintero.designsfunnelserver.com/?p=81',0,'revision','',0),(82,1,'2024-07-23 19:37:20','2024-07-23 19:37:20','

Complete For All Landscape Service And Maintenance

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation \n \n Contact Us\n \n \n \n Watch Intro\n \n
About Greenco
\n

We Provide Landscaping And Garden Care Services

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit \n \"gardener-and-his-flowers.jpg\" \n \n \n More About Us\n \n \"gardener-topiary-job.jpg\" \n \"gardener-in-newly-build-backyard-garden.jpg\" \n 0\n +\n Projects Completed\n \n
Why Choose Us
\n

We Have The Perfect Solution For Your Landscape Problems

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation \n

Variation Gardening

Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

\n

Expert Landscapers

Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

\n

Affordable Price

Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

\n

Free Consultation

Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

\n
Our Services
\n

Find The Best Service For Your Garden

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n

Watering Garden

Lorem ipsum dolor sit amet \n \n

Lawn Maintenance

Lorem ipsum dolor sit amet \n \n

Cutting Leaf

Lorem ipsum dolor sit amet \n \n
Best Landscaping
\n

Need Someone To Take Care Your Garden & Lawn?

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

Make Appointment & Take Care Your Garden

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore

\n \n
Work Process
\n

We Complete Every Step Carefully

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n

\n Start Consultation \n

\n 01 \n

\n Design Installation \n

\n 02 \n

\n Start Consturction \n

\n 03 \n

\n Finished Work \n

\n 04 \n 0\n +\n Years of Experience\n 0\n +\n Projects Completed\n 0\n +\n Happy Customers\n 0\n +\n Expert Landscapers\n
Our Projects
\n

Project We Have Done\n

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n All Projects\n \n \"Cutting\n

Cutting Leaf

\n

\n

Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

\n \n \"Home\n

Home Garden

\n

\n

Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

\n \n \"Build\n

Build Backyard

\n

\n

Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

\n \n
Testimonials
\n

What They Says About Us

\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

\n \n \"Regan\n Regan Traynor\n

Entrepreneur

\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

\n \n \"Maisha\n Maisha Dunn\n

Entrepreneur

\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

\n \n \"Reis\n Reis Leonard\n

Businessman

\n
Our Blog
\n

Lates News and Articles

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n No Content Available','Home','','inherit','closed','closed','','24-revision-v1','','','2024-07-23 19:37:20','2024-07-23 19:37:20','',24,'https://victor-quintero.designsfunnelserver.com/?p=82',0,'revision','',0),(83,1,'2024-07-23 19:39:23','2024-07-23 19:37:42',' ','','','publish','closed','closed','','83','','','2024-07-23 19:39:23','2024-07-23 19:39:23','',0,'https://victor-quintero.designsfunnelserver.com/?p=83',1,'nav_menu_item','',0),(84,1,'2024-07-23 19:39:23','2024-07-23 19:39:23','','About','','publish','closed','closed','','about','','','2024-07-23 19:39:23','2024-07-23 19:39:23','',0,'https://victor-quintero.designsfunnelserver.com/?p=84',2,'nav_menu_item','',0),(85,1,'2024-07-23 19:39:23','2024-07-23 19:39:23','','Services','','publish','closed','closed','','services','','','2024-07-23 19:39:23','2024-07-23 19:39:23','',0,'https://victor-quintero.designsfunnelserver.com/?p=85',3,'nav_menu_item','',0),(86,1,'2024-07-23 19:39:23','2024-07-23 19:39:23','','Contact','','publish','closed','closed','','contact','','','2024-07-23 19:39:23','2024-07-23 19:39:23','',0,'https://victor-quintero.designsfunnelserver.com/?p=86',5,'nav_menu_item','',0),(87,1,'2024-07-23 19:39:23','2024-07-23 19:39:23','','Testimonials','','publish','closed','closed','','testimonials','','','2024-07-23 19:39:23','2024-07-23 19:39:23','',0,'https://victor-quintero.designsfunnelserver.com/?p=87',4,'nav_menu_item','',0),(89,1,'2024-07-23 19:45:58','2024-07-23 19:45:58',' \"\" \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod \n \n

Other Pages

\n \n

Quick Links

\n \n

Newsletter

\n
\n \n \n
\n Get the latest news & updates\n \n \n Jki-facebook-f\n \n \n Twitter\n \n \n Instagram\n \n \n Linkedin-in\n \n \n Landscape & Gardening Template Kit by BalinizCopyright © 2021 All rights reserved.','Footer','','inherit','closed','closed','','49-revision-v1','','','2024-07-23 19:45:58','2024-07-23 19:45:58','',49,'https://victor-quintero.designsfunnelserver.com/?p=89',0,'revision','',0),(90,1,'2024-07-23 19:45:58','2024-07-23 19:45:58',' \"\" \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod \n \n

Other Pages

\n \n

Quick Links

\n \n

Newsletter

\n
\n \n \n
\n Get the latest news & updates\n \n \n Jki-facebook-f\n \n \n Twitter\n \n \n Instagram\n \n \n Linkedin-in\n \n \n Landscape & Gardening Template Kit by BalinizCopyright © 2021 All rights reserved.','Footer','','inherit','closed','closed','','49-revision-v1','','','2024-07-23 19:45:58','2024-07-23 19:45:58','',49,'https://victor-quintero.designsfunnelserver.com/?p=90',0,'revision','',0),(91,1,'2024-07-23 19:45:58','2024-07-23 19:45:58',' \"\" \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod \n \n

Other Pages

\n \n

Quick Links

\n \n

Newsletter

\n
\n \n \n
\n Get the latest news & updates\n \n \n Jki-facebook-f\n \n \n Twitter\n \n \n Instagram\n \n \n Linkedin-in\n \n \n

© 2024 Prestige Luxury Cleanings LLC. All rights reserved.

Design and development by Design Funnel.

','Footer','','inherit','closed','closed','','49-revision-v1','','','2024-07-23 19:45:58','2024-07-23 19:45:58','',49,'https://victor-quintero.designsfunnelserver.com/?p=91',0,'revision','',0),(92,1,'2024-07-23 19:46:14','2024-07-23 19:46:14',' \"\" \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod \n \n

Other Pages

\n \n

Quick Links

\n \n

Newsletter

\n
\n \n \n
\n Get the latest news & updates\n \n \n Jki-facebook-f\n \n \n Twitter\n \n \n Instagram\n \n \n Linkedin-in\n \n \n

© 2024 Prestige Luxury Cleanings LLC. All rights reserved.

Design and development by Design Funnel.

','Footer','','inherit','closed','closed','','49-revision-v1','','','2024-07-23 19:46:14','2024-07-23 19:46:14','',49,'https://victor-quintero.designsfunnelserver.com/?p=92',0,'revision','',0),(93,1,'2024-07-23 19:46:14','2024-07-23 19:46:14',' \"\" \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod \n \n

Other Pages

\n \n

Quick Links

\n \n

Newsletter

\n
\n \n \n
\n Get the latest news & updates\n \n \n Jki-facebook-f\n \n \n Twitter\n \n \n Instagram\n \n \n Linkedin-in\n \n \n

© 2024 Prestige Luxury Cleanings LLC. All rights reserved.

Design and development by Design Funnel.

','Footer','','inherit','closed','closed','','49-revision-v1','','','2024-07-23 19:46:14','2024-07-23 19:46:14','',49,'https://victor-quintero.designsfunnelserver.com/?p=93',0,'revision','',0),(94,1,'2024-07-23 19:46:15','2024-07-23 19:46:15',' \"\" \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod \n \n

Other Pages

\n \n

Quick Links

\n \n

Newsletter

\n
\n \n \n
\n Get the latest news & updates\n \n \n Jki-facebook-f\n \n \n Twitter\n \n \n Instagram\n \n \n Linkedin-in\n \n \n

© 2024 Prestige Luxury Cleanings LLC. All rights reserved.

Design and development by Design Funnel.

','Footer','','inherit','closed','closed','','49-revision-v1','','','2024-07-23 19:46:15','2024-07-23 19:46:15','',49,'https://victor-quintero.designsfunnelserver.com/?p=94',0,'revision','',0),(95,1,'2024-07-23 19:46:23','2024-07-23 19:46:23',' \"\" \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod \n \n

Other Pages

\n \n

Quick Links

\n \n

Newsletter

\n
\n \n \n
\n Get the latest news & updates\n \n \n Jki-facebook-f\n \n \n Twitter\n \n \n Instagram\n \n \n Linkedin-in\n \n \n

© 2024 Prestige Luxury Cleanings LLC. All rights reserved.

Design and development by Design Funnel.

','Footer','','inherit','closed','closed','','49-revision-v1','','','2024-07-23 19:46:23','2024-07-23 19:46:23','',49,'https://victor-quintero.designsfunnelserver.com/?p=95',0,'revision','',0),(96,1,'2024-07-23 19:46:24','2024-07-23 19:46:24',' \"\" \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod \n \n

Other Pages

\n \n

Quick Links

\n \n

Newsletter

\n
\n \n \n
\n Get the latest news & updates\n \n \n Jki-facebook-f\n \n \n Twitter\n \n \n Instagram\n \n \n Linkedin-in\n \n \n

© 2024 Prestige Luxury Cleanings LLC. All rights reserved.

Design and development by Design Funnel.

','Footer','','inherit','closed','closed','','49-revision-v1','','','2024-07-23 19:46:24','2024-07-23 19:46:24','',49,'https://victor-quintero.designsfunnelserver.com/?p=96',0,'revision','',0),(97,1,'2024-07-23 19:46:24','2024-07-23 19:46:24',' \"\" \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod \n \n

Other Pages

\n \n

Quick Links

\n \n

Newsletter

\n
\n \n \n
\n Get the latest news & updates\n \n \n Jki-facebook-f\n \n \n X-twitter\n \n \n Instagram\n \n \n Linkedin-in\n \n \n

© 2024 Prestige Luxury Cleanings LLC. All rights reserved.

Design and development by Design Funnel.

','Footer','','inherit','closed','closed','','49-revision-v1','','','2024-07-23 19:46:24','2024-07-23 19:46:24','',49,'https://victor-quintero.designsfunnelserver.com/?p=97',0,'revision','',0),(98,1,'2024-07-23 20:26:16','2024-07-23 20:26:16',' \"\" \n \n

\n Location \n

\n

\n Jl. Raya Kuta No.70, Kuta

\n

\n Call Us \n

\n

\n (+021) 176 993

\n \n Make Appointment\n \n \n \n \"\"\n \n \n \n Jki-facebook-f\n \n \n Twitter\n \n \n Youtube\n \n \n Jki-instagram-1-light\n ','Header','','inherit','closed','closed','','41-revision-v1','','','2024-07-23 20:26:16','2024-07-23 20:26:16','',41,'https://victor-quintero.designsfunnelserver.com/?p=98',0,'revision','',0),(99,1,'2024-07-23 20:26:16','2024-07-23 20:26:16',' \"\" \n \n

\n Location \n

\n

\n Jl. Raya Kuta No.70, Kuta

\n

\n Call Us \n

\n

\n (+021) 176 993

\n \n Make Appointment\n \n \n \n \"\"\n \n \n \n Jki-facebook-f\n \n \n Twitter\n \n \n Youtube\n \n \n Jki-instagram-1-light\n ','Header','','inherit','closed','closed','','41-revision-v1','','','2024-07-23 20:26:16','2024-07-23 20:26:16','',41,'https://victor-quintero.designsfunnelserver.com/?p=99',0,'revision','',0),(100,1,'2024-07-23 20:26:16','2024-07-23 20:26:16',' \"\" \n \n

\n Location \n

\n

\n 123 Wall St\nMiami, FL 12345

\n

\n Call Us \n

\n

\n +1 505 555 5555

\n \n Make Appointment\n \n \n \n \"\"\n \n \n \n Jki-facebook-f\n \n \n Twitter\n \n \n Youtube\n \n \n Jki-instagram-1-light\n ','Header','','inherit','closed','closed','','41-revision-v1','','','2024-07-23 20:26:16','2024-07-23 20:26:16','',41,'https://victor-quintero.designsfunnelserver.com/?p=100',0,'revision','',0),(101,1,'2024-07-23 20:27:03','2024-07-23 20:27:03',' \"\" \n \n

\n Location \n

\n

\n 123 Wall St\nMiami, FL 12345

\n

\n Call Us \n

\n

\n +1 505 555 5555

\n \n Make Appointment\n \n \n \n \"\"\n \n \n \n Jki-facebook-f\n \n \n Twitter\n \n \n Youtube\n \n \n Jki-instagram-1-light\n ','Header','','inherit','closed','closed','','41-revision-v1','','','2024-07-23 20:27:03','2024-07-23 20:27:03','',41,'https://victor-quintero.designsfunnelserver.com/?p=101',0,'revision','',0),(102,1,'2024-07-23 20:27:03','2024-07-23 20:27:03',' \"\" \n \n

\n Location \n

\n

\n 123 Wall St\nMiami, FL 12345

\n

\n Call Us \n

\n

\n +1 505 555 5555

\n \n Make Appointment\n \n \n \n \"\"\n \n \n \n Jki-facebook-f\n \n \n Twitter\n \n \n Youtube\n \n \n Jki-instagram-1-light\n ','Header','','inherit','closed','closed','','41-revision-v1','','','2024-07-23 20:27:03','2024-07-23 20:27:03','',41,'https://victor-quintero.designsfunnelserver.com/?p=102',0,'revision','',0),(103,1,'2024-07-23 20:27:03','2024-07-23 20:27:03',' \"\" \n \n

\n Location \n

\n

\n 123 Wall St\nMiami, FL 12345

\n

\n Call Us \n

\n

\n +1 505 555 5555

\n \n Make Appointment\n \n \n \n \"\"\n \n \n \n Jki-facebook-f\n \n \n X-twitter\n \n \n Instagram\n \n \n Linkedin-in\n ','Header','','inherit','closed','closed','','41-revision-v1','','','2024-07-23 20:27:03','2024-07-23 20:27:03','',41,'https://victor-quintero.designsfunnelserver.com/?p=103',0,'revision','',0),(104,1,'2024-07-23 20:29:09','2024-07-23 20:29:09','

Complete For All Landscape Service And Maintenance

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation \n \n Contact Us\n \n \n \n Watch Intro\n \n
About Greenco
\n

We Provide Landscaping And Garden Care Services

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit \n \"gardener-and-his-flowers.jpg\" \n \n \n More About Us\n \n \"gardener-topiary-job.jpg\" \n \"gardener-in-newly-build-backyard-garden.jpg\" \n 0\n +\n Projects Completed\n \n
Why Choose Us
\n

We Have The Perfect Solution For Your Landscape Problems

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation \n

Variation Gardening

Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

\n

Expert Landscapers

Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

\n

Affordable Price

Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

\n

Free Consultation

Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

\n
Our Services
\n

Find The Best Service For Your Garden

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n

Watering Garden

Lorem ipsum dolor sit amet \n \n

Lawn Maintenance

Lorem ipsum dolor sit amet \n \n

Cutting Leaf

Lorem ipsum dolor sit amet \n \n
Best Landscaping
\n

Need Someone To Take Care Your Garden & Lawn?

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

Make Appointment & Take Care Your Garden

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore

\n \n
Work Process
\n

We Complete Every Step Carefully

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n

\n Start Consultation \n

\n 01 \n

\n Design Installation \n

\n 02 \n

\n Start Consturction \n

\n 03 \n

\n Finished Work \n

\n 04 \n 0\n +\n Years of Experience\n 0\n +\n Projects Completed\n 0\n +\n Happy Customers\n 0\n +\n Expert Landscapers\n
Our Projects
\n

Project We Have Done\n

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n All Projects\n \n \"Cutting\n

Cutting Leaf

\n

\n

Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

\n \n \"Home\n

Home Garden

\n

\n

Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

\n \n \"Build\n

Build Backyard

\n

\n

Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

\n \n
Testimonials
\n

What They Says About Us

\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

\n \n \"Regan\n Regan Traynor\n

Entrepreneur

\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

\n \n \"Maisha\n Maisha Dunn\n

Entrepreneur

\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

\n \n \"Reis\n Reis Leonard\n

Businessman

\n
Our Blog
\n

Lates News and Articles

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n No Content Available','Home','','inherit','closed','closed','','24-revision-v1','','','2024-07-23 20:29:09','2024-07-23 20:29:09','',24,'https://victor-quintero.designsfunnelserver.com/?p=104',0,'revision','',0),(105,1,'2024-07-23 20:29:09','2024-07-23 20:29:09','

Complete For All Landscape Service And Maintenance

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation \n \n Contact Us\n \n \n \n Watch Intro\n \n
About Greenco
\n

We Provide Landscaping And Garden Care Services

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit \n \"gardener-and-his-flowers.jpg\" \n \n \n More About Us\n \n \"gardener-topiary-job.jpg\" \n \"gardener-in-newly-build-backyard-garden.jpg\" \n 0\n +\n Projects Completed\n \n
Why Choose Us
\n

We Have The Perfect Solution For Your Landscape Problems

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation \n

Variation Gardening

Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

\n

Expert Landscapers

Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

\n

Affordable Price

Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

\n

Free Consultation

Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

\n
Our Services
\n

Find The Best Service For Your Garden

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n

Watering Garden

Lorem ipsum dolor sit amet \n \n

Lawn Maintenance

Lorem ipsum dolor sit amet \n \n

Cutting Leaf

Lorem ipsum dolor sit amet \n \n
Best Landscaping
\n

Need Someone To Take Care Your Garden & Lawn?

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

Make Appointment & Take Care Your Garden

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore

\n \n
Work Process
\n

We Complete Every Step Carefully

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n

\n Start Consultation \n

\n 01 \n

\n Design Installation \n

\n 02 \n

\n Start Consturction \n

\n 03 \n

\n Finished Work \n

\n 04 \n 0\n +\n Years of Experience\n 0\n +\n Projects Completed\n 0\n +\n Happy Customers\n 0\n +\n Expert Landscapers\n
Our Projects
\n

Project We Have Done\n

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n All Projects\n \n \"Cutting\n

Cutting Leaf

\n

\n

Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

\n \n \"Home\n

Home Garden

\n

\n

Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

\n \n \"Build\n

Build Backyard

\n

\n

Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

\n \n
Testimonials
\n

What They Says About Us

\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

\n \n \"Regan\n Regan Traynor\n

Entrepreneur

\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

\n \n \"Maisha\n Maisha Dunn\n

Entrepreneur

\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

\n \n \"Reis\n Reis Leonard\n

Businessman

\n
Our Blog
\n

Lates News and Articles

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n No Content Available','Home','','inherit','closed','closed','','24-revision-v1','','','2024-07-23 20:29:09','2024-07-23 20:29:09','',24,'https://victor-quintero.designsfunnelserver.com/?p=105',0,'revision','',0),(106,1,'2024-07-23 20:29:10','2024-07-23 20:29:10','

Complete For All Landscape Service And Maintenance

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation \n \n Contact Us\n \n \n \n Watch Intro\n \n
About Greenco
\n

We Provide Landscaping And Garden Care Services

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit \n \"gardener-and-his-flowers.jpg\" \n \n \n More About Us\n \n \"gardener-topiary-job.jpg\" \n \"gardener-in-newly-build-backyard-garden.jpg\" \n 0\n +\n Projects Completed\n \n
Why Choose Us
\n

We Have The Perfect Solution For Your Landscape Problems

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation \n

Variation Gardening

Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

\n

Expert Landscapers

Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

\n

Affordable Price

Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

\n

Free Consultation

Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

\n
Our Services
\n

Find The Best Service For Your Garden

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n

Watering Garden

Lorem ipsum dolor sit amet \n \n

Lawn Maintenance

Lorem ipsum dolor sit amet \n \n

Cutting Leaf

Lorem ipsum dolor sit amet \n \n
Best Landscaping
\n

Need Someone To Take Care Your Garden & Lawn?

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

Make Appointment & Take Care Your Garden

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore

\n \n
Work Process
\n

We Complete Every Step Carefully

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n

\n Start Consultation \n

\n 01 \n

\n Design Installation \n

\n 02 \n

\n Start Consturction \n

\n 03 \n

\n Finished Work \n

\n 04 \n 0\n +\n Years of Experience\n 0\n +\n Projects Completed\n 0\n +\n Happy Customers\n 0\n +\n Expert Landscapers\n
Our Projects
\n

Project We Have Done\n

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n All Projects\n \n \"Cutting\n

Cutting Leaf

\n

\n

Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

\n \n \"Home\n

Home Garden

\n

\n

Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

\n \n \"Build\n

Build Backyard

\n

\n

Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

\n \n
Testimonials
\n

What They Says About Us

\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

\n \n \"Regan\n Regan Traynor\n

Entrepreneur

\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

\n \n \"Maisha\n Maisha Dunn\n

Entrepreneur

\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

\n \n \"Reis\n Reis Leonard\n

Businessman

\n
Our Blog
\n

Lates News and Articles

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n No Content Available','Home','','inherit','closed','closed','','24-revision-v1','','','2024-07-23 20:29:10','2024-07-23 20:29:10','',24,'https://victor-quintero.designsfunnelserver.com/?p=106',0,'revision','',0),(107,1,'2024-07-23 20:42:46','2024-07-23 20:42:46','','Prestige-Luxury-Cleanings-LLC-logo (1)','','inherit','open','closed','','prestige-luxury-cleanings-llc-logo-1','','','2024-07-23 20:42:46','2024-07-23 20:42:46','',41,'https://victor-quintero.designsfunnelserver.com/wp-content/uploads/2024/07/Prestige-Luxury-Cleanings-LLC-logo-1.png',0,'attachment','image/png',0),(108,1,'2024-07-23 20:42:59','2024-07-23 20:42:59',' \"\" \n \n

\n Location \n

\n

\n 123 Wall St\nMiami, FL 12345

\n

\n Call Us \n

\n

\n +1 505 555 5555

\n \n Make Appointment\n \n \n \n \"\"\n \n \n \n Jki-facebook-f\n \n \n X-twitter\n \n \n Instagram\n \n \n Linkedin-in\n ','Header','','inherit','closed','closed','','41-revision-v1','','','2024-07-23 20:42:59','2024-07-23 20:42:59','',41,'https://victor-quintero.designsfunnelserver.com/?p=108',0,'revision','',0),(109,1,'2024-07-23 20:42:59','2024-07-23 20:42:59',' \"\" \n \n

\n Location \n

\n

\n 123 Wall St\nMiami, FL 12345

\n

\n Call Us \n

\n

\n +1 505 555 5555

\n \n Make Appointment\n \n \n \n \"\"\n \n \n \n Jki-facebook-f\n \n \n X-twitter\n \n \n Instagram\n \n \n Linkedin-in\n ','Header','','inherit','closed','closed','','41-revision-v1','','','2024-07-23 20:42:59','2024-07-23 20:42:59','',41,'https://victor-quintero.designsfunnelserver.com/?p=109',0,'revision','',0),(110,1,'2024-07-23 20:42:59','2024-07-23 20:42:59',' \"\" \n \n

\n Location \n

\n

\n 123 Wall St\nMiami, FL 12345

\n

\n Call Us \n

\n

\n +1 505 555 5555

\n \n Make Appointment\n \n \n \n \"\"\n \n \n \n Jki-facebook-f\n \n \n X-twitter\n \n \n Instagram\n \n \n Linkedin-in\n ','Header','','inherit','closed','closed','','41-revision-v1','','','2024-07-23 20:42:59','2024-07-23 20:42:59','',41,'https://victor-quintero.designsfunnelserver.com/?p=110',0,'revision','',0),(111,1,'2024-07-23 20:44:34','2024-07-23 20:44:34',' \"\" \n \n

\n Location \n

\n

\n 123 Wall St\nMiami, FL 12345

\n

\n Call Us \n

\n

\n +1 505 555 5555

\n \n Make Appointment\n \n \n \n \"\"\n \n \n \n Jki-facebook-f\n \n \n X-twitter\n \n \n Instagram\n \n \n Linkedin-in\n ','Header','','inherit','closed','closed','','41-revision-v1','','','2024-07-23 20:44:34','2024-07-23 20:44:34','',41,'https://victor-quintero.designsfunnelserver.com/?p=111',0,'revision','',0),(112,1,'2024-07-23 20:44:34','2024-07-23 20:44:34',' \"\" \n \n

\n Location \n

\n

\n 123 Wall St\nMiami, FL 12345

\n

\n Call Us \n

\n

\n +1 505 555 5555

\n \n Make Appointment\n \n \n \n \"\"\n \n \n \n Jki-facebook-f\n \n \n X-twitter\n \n \n Instagram\n \n \n Linkedin-in\n ','Header','','inherit','closed','closed','','41-revision-v1','','','2024-07-23 20:44:34','2024-07-23 20:44:34','',41,'https://victor-quintero.designsfunnelserver.com/?p=112',0,'revision','',0),(113,1,'2024-07-23 20:44:34','2024-07-23 20:44:34',' \"\" \n \n

\n Location \n

\n

\n 123 Wall St\nMiami, FL 12345

\n

\n Call Us \n

\n

\n +1 505 555 5555

\n \n Make Appointment\n \n \n \n \"\"\n \n \n \n Jki-facebook-f\n \n \n X-twitter\n \n \n Instagram\n \n \n Linkedin-in\n ','Header','','inherit','closed','closed','','41-revision-v1','','','2024-07-23 20:44:34','2024-07-23 20:44:34','',41,'https://victor-quintero.designsfunnelserver.com/?p=113',0,'revision','',0),(115,1,'2024-07-23 20:55:38','2024-07-23 20:55:38','','Prestige-Luxury-Cleanings-LLC-logo-02','','inherit','open','closed','','prestige-luxury-cleanings-llc-logo-02','','','2024-07-23 20:55:38','2024-07-23 20:55:38','',49,'https://victor-quintero.designsfunnelserver.com/wp-content/uploads/2024/07/Prestige-Luxury-Cleanings-LLC-logo-02.png',0,'attachment','image/png',0),(116,1,'2024-07-23 20:57:10','2024-07-23 20:57:10',' \"\" \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod \n \n

Other Pages

\n \n

Quick Links

\n \n

Newsletter

\n
\n \n \n
\n Get the latest news & updates\n \n \n Jki-facebook-f\n \n \n X-twitter\n \n \n Instagram\n \n \n Linkedin-in\n \n \n

© 2024 Prestige Luxury Cleanings LLC. All rights reserved.

Design and development by Design Funnel.

','Footer','','inherit','closed','closed','','49-revision-v1','','','2024-07-23 20:57:10','2024-07-23 20:57:10','',49,'https://victor-quintero.designsfunnelserver.com/?p=116',0,'revision','',0),(117,1,'2024-07-23 20:57:10','2024-07-23 20:57:10',' \"\" \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod \n \n

Other Pages

\n \n

Quick Links

\n \n

Newsletter

\n
\n \n \n
\n Get the latest news & updates\n \n \n Jki-facebook-f\n \n \n X-twitter\n \n \n Instagram\n \n \n Linkedin-in\n \n \n

© 2024 Prestige Luxury Cleanings LLC. All rights reserved.

Design and development by Design Funnel.

','Footer','','inherit','closed','closed','','49-revision-v1','','','2024-07-23 20:57:10','2024-07-23 20:57:10','',49,'https://victor-quintero.designsfunnelserver.com/?p=117',0,'revision','',0),(118,1,'2024-07-23 20:57:11','2024-07-23 20:57:11',' \"\" \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod \n \n

Other Pages

\n \n

Quick Links

\n \n

Newsletter

\n
\n \n \n
\n Get the latest news & updates\n \n \n Jki-facebook-f\n \n \n X-twitter\n \n \n Instagram\n \n \n Linkedin-in\n \n \n

© 2024 Prestige Luxury Cleanings LLC. All rights reserved.

Design and development by Design Funnel.

','Footer','','inherit','closed','closed','','49-revision-v1','','','2024-07-23 20:57:11','2024-07-23 20:57:11','',49,'https://victor-quintero.designsfunnelserver.com/?p=118',0,'revision','',0),(119,1,'2024-07-23 21:03:42','2024-07-23 21:03:42','

Complete For All Landscape Service And Maintenance

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation \n \n Contact Us\n \n \n \n Watch Intro\n \n
About Greenco
\n

We Provide Landscaping And Garden Care Services

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit \n \"gardener-and-his-flowers.jpg\" \n \n \n More About Us\n \n \"gardener-topiary-job.jpg\" \n \"gardener-in-newly-build-backyard-garden.jpg\" \n 0\n +\n Projects Completed\n \n
Why Choose Us
\n

We Have The Perfect Solution For Your Landscape Problems

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation \n

Variation Gardening

Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

\n

Expert Landscapers

Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

\n

Affordable Price

Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

\n

Free Consultation

Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

\n
Our Services
\n

Find The Best Service For Your Garden

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n

Watering Garden

Lorem ipsum dolor sit amet \n \n

Lawn Maintenance

Lorem ipsum dolor sit amet \n \n

Cutting Leaf

Lorem ipsum dolor sit amet \n \n
Best Landscaping
\n

Need Someone To Take Care Your Garden & Lawn?

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

Make Appointment & Take Care Your Garden

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore

\n \n
Work Process
\n

We Complete Every Step Carefully

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n

\n Start Consultation \n

\n 01 \n

\n Design Installation \n

\n 02 \n

\n Start Consturction \n

\n 03 \n

\n Finished Work \n

\n 04 \n 0\n +\n Years of Experience\n 0\n +\n Projects Completed\n 0\n +\n Happy Customers\n 0\n +\n Expert Landscapers\n
Our Projects
\n

Project We Have Done\n

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n All Projects\n \n \"Cutting\n

Cutting Leaf

\n

\n

Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

\n \n \"Home\n

Home Garden

\n

\n

Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

\n \n \"Build\n

Build Backyard

\n

\n

Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

\n \n
Testimonials
\n

What They Says About Us

\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

\n \n \"Regan\n Regan Traynor\n

Entrepreneur

\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

\n \n \"Maisha\n Maisha Dunn\n

Entrepreneur

\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

\n \n \"Reis\n Reis Leonard\n

Businessman

\n
Our Blog
\n

Lates News and Articles

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n No Content Available','Home','','inherit','closed','closed','','24-revision-v1','','','2024-07-23 21:03:42','2024-07-23 21:03:42','',24,'https://victor-quintero.designsfunnelserver.com/?p=119',0,'revision','',0),(120,1,'2024-07-23 21:03:42','2024-07-23 21:03:42','

Complete For All Landscape Service And Maintenance

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation \n \n Contact Us\n \n \n \n Watch Intro\n \n
About Greenco
\n

We Provide Landscaping And Garden Care Services

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit \n \"gardener-and-his-flowers.jpg\" \n \n \n More About Us\n \n \"gardener-topiary-job.jpg\" \n \"gardener-in-newly-build-backyard-garden.jpg\" \n 0\n +\n Projects Completed\n \n
Why Choose Us
\n

We Have The Perfect Solution For Your Landscape Problems

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation \n

Variation Gardening

Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

\n

Expert Landscapers

Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

\n

Affordable Price

Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

\n

Free Consultation

Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

\n
Our Services
\n

Find The Best Service For Your Garden

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n

Watering Garden

Lorem ipsum dolor sit amet \n \n

Lawn Maintenance

Lorem ipsum dolor sit amet \n \n

Cutting Leaf

Lorem ipsum dolor sit amet \n \n
Best Landscaping
\n

Need Someone To Take Care Your Garden & Lawn?

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

Make Appointment & Take Care Your Garden

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore

\n \n
Work Process
\n

We Complete Every Step Carefully

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n

\n Start Consultation \n

\n 01 \n

\n Design Installation \n

\n 02 \n

\n Start Consturction \n

\n 03 \n

\n Finished Work \n

\n 04 \n 0\n +\n Years of Experience\n 0\n +\n Projects Completed\n 0\n +\n Happy Customers\n 0\n +\n Expert Landscapers\n
Our Projects
\n

Project We Have Done\n

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n All Projects\n \n \"Cutting\n

Cutting Leaf

\n

\n

Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

\n \n \"Home\n

Home Garden

\n

\n

Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

\n \n \"Build\n

Build Backyard

\n

\n

Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

\n \n
Testimonials
\n

What They Says About Us

\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

\n \n \"Regan\n Regan Traynor\n

Entrepreneur

\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

\n \n \"Maisha\n Maisha Dunn\n

Entrepreneur

\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

\n \n \"Reis\n Reis Leonard\n

Businessman

\n
Our Blog
\n

Lates News and Articles

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n No Content Available','Home','','inherit','closed','closed','','24-revision-v1','','','2024-07-23 21:03:42','2024-07-23 21:03:42','',24,'https://victor-quintero.designsfunnelserver.com/?p=120',0,'revision','',0),(121,1,'2024-07-23 21:03:43','2024-07-23 21:03:43','

Complete For All Landscape Service And Maintenance

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation \n \n Contact Us\n \n \n \n Watch Intro\n \n
About Greenco
\n

We Provide Landscaping And Garden Care Services

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit \n \"gardener-and-his-flowers.jpg\" \n \n \n More About Us\n \n \"gardener-topiary-job.jpg\" \n \"gardener-in-newly-build-backyard-garden.jpg\" \n 0\n +\n Projects Completed\n \n
Why Choose Us
\n

We Have The Perfect Solution For Your Landscape Problems

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation \n

Variation Gardening

Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

\n

Expert Landscapers

Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

\n

Affordable Price

Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

\n

Free Consultation

Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

\n
Our Services
\n

Find The Best Service For Your Garden

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n

Watering Garden

Lorem ipsum dolor sit amet \n \n

Lawn Maintenance

Lorem ipsum dolor sit amet \n \n

Cutting Leaf

Lorem ipsum dolor sit amet \n \n
Best Landscaping
\n

Need Someone To Take Care Your Garden & Lawn?

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

Make Appointment & Take Care Your Garden

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore

\n \n
Work Process
\n

We Complete Every Step Carefully

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n

\n Start Consultation \n

\n 01 \n

\n Design Installation \n

\n 02 \n

\n Start Consturction \n

\n 03 \n

\n Finished Work \n

\n 04 \n 0\n +\n Years of Experience\n 0\n +\n Projects Completed\n 0\n +\n Happy Customers\n 0\n +\n Expert Landscapers\n
Our Projects
\n

Project We Have Done\n

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n All Projects\n \n \"Cutting\n

Cutting Leaf

\n

\n

Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

\n \n \"Home\n

Home Garden

\n

\n

Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

\n \n \"Build\n

Build Backyard

\n

\n

Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

\n \n
Testimonials
\n

What They Says About Us

\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

\n \n \"Regan\n Regan Traynor\n

Entrepreneur

\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

\n \n \"Maisha\n Maisha Dunn\n

Entrepreneur

\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

\n \n \"Reis\n Reis Leonard\n

Businessman

\n
Our Blog
\n

Lates News and Articles

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n No Content Available','Home','','inherit','closed','closed','','24-revision-v1','','','2024-07-23 21:03:43','2024-07-23 21:03:43','',24,'https://victor-quintero.designsfunnelserver.com/?p=121',0,'revision','',0),(122,1,'2024-07-24 12:05:43','2024-07-24 12:05:43','

Complete For All Landscape Service And Maintenance

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation \n \n Contact Us\n \n \n \n Watch Intro\n \n
About Greenco
\n

We Provide Landscaping And Garden Care Services

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit \n \"gardener-and-his-flowers.jpg\" \n \n \n More About Us\n \n \"gardener-topiary-job.jpg\" \n \"gardener-in-newly-build-backyard-garden.jpg\" \n 0\n +\n Projects Completed\n \n
Why Choose Us
\n

We Have The Perfect Solution For Your Landscape Problems

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation \n

Variation Gardening

Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

\n

Expert Landscapers

Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

\n

Affordable Price

Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

\n

Free Consultation

Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

\n
Our Services
\n

Find The Best Service For Your Garden

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n

Watering Garden

Lorem ipsum dolor sit amet \n \n

Lawn Maintenance

Lorem ipsum dolor sit amet \n \n

Cutting Leaf

Lorem ipsum dolor sit amet \n \n
Best Landscaping
\n

Need Someone To Take Care Your Garden & Lawn?

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

Make Appointment & Take Care Your Garden

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore

\n \n
Work Process
\n

We Complete Every Step Carefully

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n

\n Start Consultation \n

\n 01 \n

\n Design Installation \n

\n 02 \n

\n Start Consturction \n

\n 03 \n

\n Finished Work \n

\n 04 \n 0\n +\n Years of Experience\n 0\n +\n Projects Completed\n 0\n +\n Happy Customers\n 0\n +\n Expert Landscapers\n
Our Projects
\n

Project We Have Done\n

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n All Projects\n \n \"Cutting\n

Cutting Leaf

\n

\n

Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

\n \n \"Home\n

Home Garden

\n

\n

Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

\n \n \"Build\n

Build Backyard

\n

\n

Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

\n \n
Testimonials
\n

What They Says About Us

\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

\n \n \"Regan\n Regan Traynor\n

Entrepreneur

\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

\n \n \"Maisha\n Maisha Dunn\n

Entrepreneur

\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

\n \n \"Reis\n Reis Leonard\n

Businessman

\n
Our Blog
\n

Lates News and Articles

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n No Content Available','Home','','inherit','closed','closed','','24-revision-v1','','','2024-07-24 12:05:43','2024-07-24 12:05:43','',24,'https://victor-quintero.designsfunnelserver.com/?p=122',0,'revision','',0),(123,1,'2024-07-24 12:05:43','2024-07-24 12:05:43','

Complete For All Landscape Service And Maintenance

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation \n \n Contact Us\n \n \n \n Watch Intro\n \n
About Greenco
\n

We Provide Landscaping And Garden Care Services

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit \n \"gardener-and-his-flowers.jpg\" \n \n \n More About Us\n \n \"gardener-topiary-job.jpg\" \n \"gardener-in-newly-build-backyard-garden.jpg\" \n 0\n +\n Projects Completed\n \n
Why Choose Us
\n

We Have The Perfect Solution For Your Landscape Problems

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation \n

Variation Gardening

Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

\n

Expert Landscapers

Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

\n

Affordable Price

Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

\n

Free Consultation

Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

\n
Our Services
\n

Find The Best Service For Your Garden

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n

Watering Garden

Lorem ipsum dolor sit amet \n \n

Lawn Maintenance

Lorem ipsum dolor sit amet \n \n

Cutting Leaf

Lorem ipsum dolor sit amet \n \n
Best Landscaping
\n

Need Someone To Take Care Your Garden & Lawn?

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

Make Appointment & Take Care Your Garden

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore

\n \n
Work Process
\n

We Complete Every Step Carefully

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n

\n Start Consultation \n

\n 01 \n

\n Design Installation \n

\n 02 \n

\n Start Consturction \n

\n 03 \n

\n Finished Work \n

\n 04 \n 0\n +\n Years of Experience\n 0\n +\n Projects Completed\n 0\n +\n Happy Customers\n 0\n +\n Expert Landscapers\n
Our Projects
\n

Project We Have Done\n

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n All Projects\n \n \"Cutting\n

Cutting Leaf

\n

\n

Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

\n \n \"Home\n

Home Garden

\n

\n

Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

\n \n \"Build\n

Build Backyard

\n

\n

Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

\n \n
Testimonials
\n

What They Says About Us

\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

\n \n \"Regan\n Regan Traynor\n

Entrepreneur

\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

\n \n \"Maisha\n Maisha Dunn\n

Entrepreneur

\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

\n \n \"Reis\n Reis Leonard\n

Businessman

\n
Our Blog
\n

Lates News and Articles

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n No Content Available','Home','','inherit','closed','closed','','24-revision-v1','','','2024-07-24 12:05:43','2024-07-24 12:05:43','',24,'https://victor-quintero.designsfunnelserver.com/?p=123',0,'revision','',0),(124,1,'2024-07-24 12:05:44','2024-07-24 12:05:44','

Complete For All Landscape Service And Maintenance

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation \n \n Contact Us\n \n \n \n Watch Intro\n \n
About Greenco
\n

We Provide Landscaping And Garden Care Services

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit \n \"gardener-and-his-flowers.jpg\" \n \n \n More About Us\n \n \"gardener-topiary-job.jpg\" \n \"gardener-in-newly-build-backyard-garden.jpg\" \n 0\n +\n Projects Completed\n \n
Why Choose Us
\n

We Have The Perfect Solution For Your Landscape Problems

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation \n

Variation Gardening

Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

\n

Expert Landscapers

Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

\n

Affordable Price

Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

\n

Free Consultation

Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

\n
Our Services
\n

Find The Best Service For Your Garden

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n

Watering Garden

Lorem ipsum dolor sit amet \n \n

Lawn Maintenance

Lorem ipsum dolor sit amet \n \n

Cutting Leaf

Lorem ipsum dolor sit amet \n \n
Best Landscaping
\n

Need Someone To Take Care Your Garden & Lawn?

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

Make Appointment & Take Care Your Garden

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore

\n \n
Work Process
\n

We Complete Every Step Carefully

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n

\n Start Consultation \n

\n 01 \n

\n Design Installation \n

\n 02 \n

\n Start Consturction \n

\n 03 \n

\n Finished Work \n

\n 04 \n 0\n +\n Years of Experience\n 0\n +\n Projects Completed\n 0\n +\n Happy Customers\n 0\n +\n Expert Landscapers\n
Our Projects
\n

Project We Have Done\n

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n All Projects\n \n \"Cutting\n

Cutting Leaf

\n

\n

Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

\n \n \"Home\n

Home Garden

\n

\n

Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

\n \n \"Build\n

Build Backyard

\n

\n

Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

\n \n
Testimonials
\n

What They Says About Us

\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

\n \n \"Regan\n Regan Traynor\n

Entrepreneur

\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

\n \n \"Maisha\n Maisha Dunn\n

Entrepreneur

\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

\n \n \"Reis\n Reis Leonard\n

Businessman

\n
Our Blog
\n

Lates News and Articles

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n No Content Available','Home','','inherit','closed','closed','','24-revision-v1','','','2024-07-24 12:05:44','2024-07-24 12:05:44','',24,'https://victor-quintero.designsfunnelserver.com/?p=124',0,'revision','',0),(126,1,'2024-07-24 12:16:19','2024-07-24 12:16:19','

Complete For All Landscape Service And Maintenance

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation \n \n Contact Us\n \n \n \n Watch Intro\n \n
About Greenco
\n

We Provide Landscaping And Garden Care Services

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit \n \"gardener-and-his-flowers.jpg\" \n \n \n More About Us\n \n \"gardener-topiary-job.jpg\" \n \"gardener-in-newly-build-backyard-garden.jpg\" \n 0\n +\n Projects Completed\n \n
Why Choose Us
\n

We Have The Perfect Solution For Your Landscape Problems

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation \n

Variation Gardening

Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

\n

Expert Landscapers

Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

\n

Affordable Price

Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

\n

Free Consultation

Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

\n
Our Services
\n

Find The Best Service For Your Garden

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n

Watering Garden

Lorem ipsum dolor sit amet \n \n

Lawn Maintenance

Lorem ipsum dolor sit amet \n \n

Cutting Leaf

Lorem ipsum dolor sit amet \n \n
Best Landscaping
\n

Need Someone To Take Care Your Garden & Lawn?

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

Make Appointment & Take Care Your Garden

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore

\n \n
Work Process
\n

We Complete Every Step Carefully

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n

\n Start Consultation \n

\n 01 \n

\n Design Installation \n

\n 02 \n

\n Start Consturction \n

\n 03 \n

\n Finished Work \n

\n 04 \n 0\n +\n Years of Experience\n 0\n +\n Projects Completed\n 0\n +\n Happy Customers\n 0\n +\n Expert Landscapers\n
Our Projects
\n

Project We Have Done\n

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n All Projects\n \n \"Cutting\n

Cutting Leaf

\n

\n

Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

\n \n \"Home\n

Home Garden

\n

\n

Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

\n \n \"Build\n

Build Backyard

\n

\n

Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

\n \n
Testimonials
\n

What They Says About Us

\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

\n \n \"Regan\n Regan Traynor\n

Entrepreneur

\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

\n \n \"Maisha\n Maisha Dunn\n

Entrepreneur

\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

\n \n \"Reis\n Reis Leonard\n

Businessman

\n
Our Blog
\n

Lates News and Articles

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n No Content Available','Home','','inherit','closed','closed','','24-revision-v1','','','2024-07-24 12:16:19','2024-07-24 12:16:19','',24,'https://victor-quintero.designsfunnelserver.com/?p=126',0,'revision','',0),(127,1,'2024-07-24 12:16:19','2024-07-24 12:16:19','

Complete For All Landscape Service And Maintenance

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation \n \n Contact Us\n \n \n \n Watch Intro\n \n
About Greenco
\n

We Provide Landscaping And Garden Care Services

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit \n \"gardener-and-his-flowers.jpg\" \n \n \n More About Us\n \n \"gardener-topiary-job.jpg\" \n \"gardener-in-newly-build-backyard-garden.jpg\" \n 0\n +\n Projects Completed\n \n
Why Choose Us
\n

We Have The Perfect Solution For Your Landscape Problems

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation \n

Variation Gardening

Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

\n

Expert Landscapers

Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

\n

Affordable Price

Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

\n

Free Consultation

Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

\n
Our Services
\n

Find The Best Service For Your Garden

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n

Watering Garden

Lorem ipsum dolor sit amet \n \n

Lawn Maintenance

Lorem ipsum dolor sit amet \n \n

Cutting Leaf

Lorem ipsum dolor sit amet \n \n
Best Landscaping
\n

Need Someone To Take Care Your Garden & Lawn?

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

Make Appointment & Take Care Your Garden

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore

\n \n
Work Process
\n

We Complete Every Step Carefully

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n

\n Start Consultation \n

\n 01 \n

\n Design Installation \n

\n 02 \n

\n Start Consturction \n

\n 03 \n

\n Finished Work \n

\n 04 \n 0\n +\n Years of Experience\n 0\n +\n Projects Completed\n 0\n +\n Happy Customers\n 0\n +\n Expert Landscapers\n
Our Projects
\n

Project We Have Done\n

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n All Projects\n \n \"Cutting\n

Cutting Leaf

\n

\n

Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

\n \n \"Home\n

Home Garden

\n

\n

Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

\n \n \"Build\n

Build Backyard

\n

\n

Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

\n \n
Testimonials
\n

What They Says About Us

\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

\n \n \"Regan\n Regan Traynor\n

Entrepreneur

\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

\n \n \"Maisha\n Maisha Dunn\n

Entrepreneur

\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

\n \n \"Reis\n Reis Leonard\n

Businessman

\n
Our Blog
\n

Lates News and Articles

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n No Content Available','Home','','inherit','closed','closed','','24-revision-v1','','','2024-07-24 12:16:19','2024-07-24 12:16:19','',24,'https://victor-quintero.designsfunnelserver.com/?p=127',0,'revision','',0),(128,1,'2024-07-24 12:16:19','2024-07-24 12:16:19','

Complete For All Landscape Service And Maintenance

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation \n \n Contact Us\n \n \n \n Watch Intro\n \n
About Greenco
\n

We Provide Landscaping And Garden Care Services

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit \n \"gardener-and-his-flowers.jpg\" \n \n \n More About Us\n \n \"gardener-topiary-job.jpg\" \n \"gardener-in-newly-build-backyard-garden.jpg\" \n 0\n +\n Projects Completed\n \n
Why Choose Us
\n

We Have The Perfect Solution For Your Landscape Problems

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation \n

Variation Gardening

Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

\n

Expert Landscapers

Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

\n

Affordable Price

Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

\n

Free Consultation

Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

\n
Our Services
\n

Find The Best Service For Your Garden

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n

Watering Garden

Lorem ipsum dolor sit amet \n \n

Lawn Maintenance

Lorem ipsum dolor sit amet \n \n

Cutting Leaf

Lorem ipsum dolor sit amet \n \n
Best Landscaping
\n

Need Someone To Take Care Your Garden & Lawn?

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

Make Appointment & Take Care Your Garden

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore

\n \n
Work Process
\n

We Complete Every Step Carefully

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n

\n Start Consultation \n

\n 01 \n

\n Design Installation \n

\n 02 \n

\n Start Consturction \n

\n 03 \n

\n Finished Work \n

\n 04 \n 0\n +\n Years of Experience\n 0\n +\n Projects Completed\n 0\n +\n Happy Customers\n 0\n +\n Expert Landscapers\n
Our Projects
\n

Project We Have Done\n

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n All Projects\n \n \"Cutting\n

Cutting Leaf

\n

\n

Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

\n \n \"Home\n

Home Garden

\n

\n

Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

\n \n \"Build\n

Build Backyard

\n

\n

Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

\n \n
Testimonials
\n

What They Says About Us

\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

\n \n \"Regan\n Regan Traynor\n

Entrepreneur

\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

\n \n \"Maisha\n Maisha Dunn\n

Entrepreneur

\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

\n \n \"Reis\n Reis Leonard\n

Businessman

\n
Our Blog
\n

Lates News and Articles

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n No Content Available','Home','','inherit','closed','closed','','24-revision-v1','','','2024-07-24 12:16:19','2024-07-24 12:16:19','',24,'https://victor-quintero.designsfunnelserver.com/?p=128',0,'revision','',0),(130,1,'2024-07-24 13:01:54','2024-07-24 13:01:54','

Complete For All Landscape Service And Maintenance

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation \n \n Contact Us\n \n \n \n Watch Intro\n \n
About Greenco
\n

We Provide Landscaping And Garden Care Services

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit \n \"gardener-and-his-flowers.jpg\" \n \n \n More About Us\n \n \"gardener-topiary-job.jpg\" \n \"gardener-in-newly-build-backyard-garden.jpg\" \n 0\n +\n Projects Completed\n \n
Why Choose Us
\n

We Have The Perfect Solution For Your Landscape Problems

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation \n

Variation Gardening

Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

\n

Expert Landscapers

Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

\n

Affordable Price

Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

\n

Free Consultation

Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

\n
Our Services
\n

Find The Best Service For Your Garden

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n

Watering Garden

Lorem ipsum dolor sit amet \n \n

Lawn Maintenance

Lorem ipsum dolor sit amet \n \n

Cutting Leaf

Lorem ipsum dolor sit amet \n \n
Best Landscaping
\n

Need Someone To Take Care Your Garden & Lawn?

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

Make Appointment & Take Care Your Garden

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore

\n \n
Work Process
\n

We Complete Every Step Carefully

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n

\n Start Consultation \n

\n 01 \n

\n Design Installation \n

\n 02 \n

\n Start Consturction \n

\n 03 \n

\n Finished Work \n

\n 04 \n 0\n +\n Years of Experience\n 0\n +\n Projects Completed\n 0\n +\n Happy Customers\n 0\n +\n Expert Landscapers\n
Our Projects
\n

Project We Have Done\n

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n All Projects\n \n \"Cutting\n

Cutting Leaf

\n

\n

Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

\n \n \"Home\n

Home Garden

\n

\n

Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

\n \n \"Build\n

Build Backyard

\n

\n

Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

\n \n
Testimonials
\n

What They Says About Us

\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

\n \n \"Regan\n Regan Traynor\n

Entrepreneur

\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

\n \n \"Maisha\n Maisha Dunn\n

Entrepreneur

\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

\n \n \"Reis\n Reis Leonard\n

Businessman

\n
Our Blog
\n

Lates News and Articles

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n No Content Available','Home','','inherit','closed','closed','','24-revision-v1','','','2024-07-24 13:01:54','2024-07-24 13:01:54','',24,'https://victor-quintero.designsfunnelserver.com/?p=130',0,'revision','',0),(131,1,'2024-07-24 13:01:54','2024-07-24 13:01:54','

Complete For All Landscape Service And Maintenance

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation \n \n Contact Us\n \n \n \n Watch Intro\n \n
About Greenco
\n

We Provide Landscaping And Garden Care Services

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit \n \"gardener-and-his-flowers.jpg\" \n \n \n More About Us\n \n \"gardener-topiary-job.jpg\" \n \"gardener-in-newly-build-backyard-garden.jpg\" \n 0\n +\n Projects Completed\n \n
Why Choose Us
\n

We Have The Perfect Solution For Your Landscape Problems

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation \n

Variation Gardening

Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

\n

Expert Landscapers

Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

\n

Affordable Price

Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

\n

Free Consultation

Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

\n
Our Services
\n

Find The Best Service For Your Garden

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n

Watering Garden

Lorem ipsum dolor sit amet \n \n

Lawn Maintenance

Lorem ipsum dolor sit amet \n \n

Cutting Leaf

Lorem ipsum dolor sit amet \n \n
Best Landscaping
\n

Need Someone To Take Care Your Garden & Lawn?

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

Make Appointment & Take Care Your Garden

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore

\n \n
Work Process
\n

We Complete Every Step Carefully

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n

\n Start Consultation \n

\n 01 \n

\n Design Installation \n

\n 02 \n

\n Start Consturction \n

\n 03 \n

\n Finished Work \n

\n 04 \n 0\n +\n Years of Experience\n 0\n +\n Projects Completed\n 0\n +\n Happy Customers\n 0\n +\n Expert Landscapers\n
Our Projects
\n

Project We Have Done\n

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n All Projects\n \n \"Cutting\n

Cutting Leaf

\n

\n

Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

\n \n \"Home\n

Home Garden

\n

\n

Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

\n \n \"Build\n

Build Backyard

\n

\n

Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

\n \n
Testimonials
\n

What They Says About Us

\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

\n \n \"Regan\n Regan Traynor\n

Entrepreneur

\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

\n \n \"Maisha\n Maisha Dunn\n

Entrepreneur

\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

\n \n \"Reis\n Reis Leonard\n

Businessman

\n
Our Blog
\n

Lates News and Articles

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n No Content Available','Home','','inherit','closed','closed','','24-revision-v1','','','2024-07-24 13:01:54','2024-07-24 13:01:54','',24,'https://victor-quintero.designsfunnelserver.com/?p=131',0,'revision','',0),(132,1,'2024-07-24 13:01:55','2024-07-24 13:01:55','

Complete For All Landscape Service And Maintenance

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation \n \n Contact Us\n \n \n \n Watch Intro\n \n
About Greenco
\n

We Provide Landscaping And Garden Care Services

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit \n \"gardener-and-his-flowers.jpg\" \n \n \n More About Us\n \n \"gardener-topiary-job.jpg\" \n \"gardener-in-newly-build-backyard-garden.jpg\" \n 0\n +\n Projects Completed\n \n
Why Choose Us
\n

We Have The Perfect Solution For Your Landscape Problems

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation \n

Variation Gardening

Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

\n

Expert Landscapers

Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

\n

Affordable Price

Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

\n

Free Consultation

Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

\n
Our Services
\n

Find The Best Service For Your Garden

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n

Lawn Services

Lorem ipsum dolor sit amet \n \n

Driveway Pressure Washing

Lorem ipsum dolor sit amet \n \n

Deck Pressure Washing

Lorem ipsum dolor sit amet \n \n

Weed Control

Lorem ipsum dolor sit amet \n \n

Grass Feed

Lorem ipsum dolor sit amet \n \n

Edging Cleaning

Lorem ipsum dolor sit amet \n \n
Best Landscaping
\n

Need Someone To Take Care Your Garden & Lawn?

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

Make Appointment & Take Care Your Garden

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore

\n \n
Work Process
\n

We Complete Every Step Carefully

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n

\n Start Consultation \n

\n 01 \n

\n Design Installation \n

\n 02 \n

\n Start Consturction \n

\n 03 \n

\n Finished Work \n

\n 04 \n 0\n +\n Years of Experience\n 0\n +\n Projects Completed\n 0\n +\n Happy Customers\n 0\n +\n Expert Landscapers\n
Our Projects
\n

Project We Have Done\n

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n All Projects\n \n \"Cutting\n

Cutting Leaf

\n

\n

Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

\n \n \"Home\n

Home Garden

\n

\n

Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

\n \n \"Build\n

Build Backyard

\n

\n

Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

\n \n
Testimonials
\n

What They Says About Us

\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

\n \n \"Regan\n Regan Traynor\n

Entrepreneur

\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

\n \n \"Maisha\n Maisha Dunn\n

Entrepreneur

\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

\n \n \"Reis\n Reis Leonard\n

Businessman

\n
Our Blog
\n

Lates News and Articles

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n No Content Available','Home','','inherit','closed','closed','','24-revision-v1','','','2024-07-24 13:01:55','2024-07-24 13:01:55','',24,'https://victor-quintero.designsfunnelserver.com/?p=132',0,'revision','',0),(133,1,'2024-07-24 13:05:35','2024-07-24 13:05:35','\n
\"Garden
\n\n\n\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum

\n\n\n\n

Find The Best Service For Your Garden

\n\n\n\n

Consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum

\n\n\n\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum

\n\n\n\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit.

\n\n\n\n
- Gregor Jones
\n\n\n\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum

\n\n\n\n
\"Gardener
\n\n\n\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation

\n\n\n\n\n\n\n\n

Consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est

\n','Landscaping: The Best Idea You’ve Ever Had','','publish','open','open','','landscaping-the-best-idea-youve-ever-had','','','2024-07-24 13:08:15','2024-07-24 13:08:15','',0,'https://victor-quintero.designsfunnelserver.com/?p=133',0,'post','',0),(134,1,'2024-07-24 13:06:01','2024-07-24 13:06:01','\n
\"Backyard
\n\n\n\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum

\n\n\n\n

Find The Best Service For Your Garden

\n\n\n\n

Consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum

\n\n\n\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum

\n\n\n\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit.

\n\n\n\n
- Gregor Jones
\n\n\n\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum

\n\n\n\n
\"Gardener
\n\n\n\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation

\n\n\n\n\n\n\n\n

Consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum

\n','We Making Your Perfect Wedding Garden at Home','','publish','open','open','','we-making-your-perfect-wedding-garden-at-home','','','2024-07-24 13:08:26','2024-07-24 13:08:26','',0,'https://victor-quintero.designsfunnelserver.com/?p=134',0,'post','',0),(135,1,'2024-07-24 13:08:29','2024-07-24 13:08:29','\n
\"Gardener
\n\n\n\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum

\n\n\n\n

Find The Best Service For Your Garden

\n\n\n\n

Consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum

\n\n\n\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum

\n\n\n\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit.

\n\n\n\n
- Gregor Jones
\n\n\n\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum

\n\n\n\n
\"Gardener
\n\n\n\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation

\n\n\n\n\n\n\n\n

Consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum

\n','3 Important Reasons to Build A Backyard Fire Pit','','publish','open','open','','3-important-reasons-to-build-a-backyard-fire-pit','','','2024-07-24 13:08:40','2024-07-24 13:08:40','',0,'https://victor-quintero.designsfunnelserver.com/?p=135',0,'post','',0),(136,1,'2024-07-24 13:05:35','2024-07-24 13:05:35','\n
\"Garden
\n\n\n\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum

\n\n\n\n

Find The Best Service For Your Garden

\n\n\n\n

Consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum

\n\n\n\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum

\n\n\n\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit.

\n\n\n\n
- Gregor Jones
\n\n\n\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum

\n\n\n\n
\"Gardener
\n\n\n\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation

\n\n\n\n\n\n\n\n

Consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est

\n','Landscaping: The Best Idea You’ve Ever Had','','inherit','closed','closed','','133-revision-v1','','','2024-07-24 13:05:35','2024-07-24 13:05:35','',133,'https://victor-quintero.designsfunnelserver.com/?p=136',0,'revision','',0),(137,1,'2024-07-24 13:06:01','2024-07-24 13:06:01','\n
\"Backyard
\n\n\n\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum

\n\n\n\n

Find The Best Service For Your Garden

\n\n\n\n

Consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum

\n\n\n\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum

\n\n\n\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit.

\n\n\n\n
- Gregor Jones
\n\n\n\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum

\n\n\n\n
\"Gardener
\n\n\n\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation

\n\n\n\n\n\n\n\n

Consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum

\n','We Making Your Perfect Wedding Garden at Home','','inherit','closed','closed','','134-revision-v1','','','2024-07-24 13:06:01','2024-07-24 13:06:01','',134,'https://victor-quintero.designsfunnelserver.com/?p=137',0,'revision','',0),(138,1,'2024-07-24 13:08:04','2024-07-24 13:08:04','','gardener-and-his-business-e1636043448304','','inherit','open','closed','','gardener-and-his-business-e1636043448304','','','2024-07-24 13:08:04','2024-07-24 13:08:04','',133,'https://victor-quintero.designsfunnelserver.com/wp-content/uploads/2024/07/gardener-and-his-business-e1636043448304.jpg',0,'attachment','image/jpeg',0),(139,1,'2024-07-24 13:08:07','2024-07-24 13:08:07','','backyard-garden-e1636044880830','','inherit','open','closed','','backyard-garden-e1636044880830','','','2024-07-24 13:08:07','2024-07-24 13:08:07','',133,'https://victor-quintero.designsfunnelserver.com/wp-content/uploads/2024/07/backyard-garden-e1636044880830.jpg',0,'attachment','image/jpeg',0),(140,1,'2024-07-24 13:08:09','2024-07-24 13:08:09','','111111111111111111','','inherit','open','closed','','111111111111111111','','','2024-07-24 13:08:09','2024-07-24 13:08:09','',133,'https://victor-quintero.designsfunnelserver.com/wp-content/uploads/2024/07/111111111111111111.jpg',0,'attachment','image/jpeg',0),(141,1,'2024-07-24 13:08:29','2024-07-24 13:08:29','\n
\"Gardener
\n\n\n\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum

\n\n\n\n

Find The Best Service For Your Garden

\n\n\n\n

Consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum

\n\n\n\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum

\n\n\n\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit.

\n\n\n\n
- Gregor Jones
\n\n\n\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum

\n\n\n\n
\"Gardener
\n\n\n\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation

\n\n\n\n\n\n\n\n

Consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum

\n','3 Important Reasons to Build A Backyard Fire Pit','','inherit','closed','closed','','135-revision-v1','','','2024-07-24 13:08:29','2024-07-24 13:08:29','',135,'https://victor-quintero.designsfunnelserver.com/?p=141',0,'revision','',0),(142,1,'2024-07-24 13:44:33','2024-07-24 13:44:33','','lawn-services','','inherit','open','closed','','lawn-services','','','2024-07-24 13:44:33','2024-07-24 13:44:33','',24,'https://victor-quintero.designsfunnelserver.com/wp-content/uploads/2024/07/lawn-services.jpg',0,'attachment','image/jpeg',0),(143,1,'2024-07-24 13:44:59','2024-07-24 13:44:59','','driveway-pressure-washing','','inherit','open','closed','','driveway-pressure-washing','','','2024-07-24 13:44:59','2024-07-24 13:44:59','',24,'https://victor-quintero.designsfunnelserver.com/wp-content/uploads/2024/07/driveway-pressure-washing.jpg',0,'attachment','image/jpeg',0),(144,1,'2024-07-24 13:45:29','2024-07-24 13:45:29','','deck-pressure-washing','','inherit','open','closed','','deck-pressure-washing','','','2024-07-24 13:45:29','2024-07-24 13:45:29','',24,'https://victor-quintero.designsfunnelserver.com/wp-content/uploads/2024/07/deck-pressure-washing.jpg',0,'attachment','image/jpeg',0),(145,1,'2024-07-24 13:45:58','2024-07-24 13:45:58','','weed-control','','inherit','open','closed','','weed-control','','','2024-07-24 13:45:58','2024-07-24 13:45:58','',24,'https://victor-quintero.designsfunnelserver.com/wp-content/uploads/2024/07/weed-control.jpg',0,'attachment','image/jpeg',0),(146,1,'2024-07-24 13:46:26','2024-07-24 13:46:26','','grass-feed','','inherit','open','closed','','grass-feed','','','2024-07-24 13:46:26','2024-07-24 13:46:26','',24,'https://victor-quintero.designsfunnelserver.com/wp-content/uploads/2024/07/grass-feed.jpg',0,'attachment','image/jpeg',0),(147,1,'2024-07-24 13:47:13','2024-07-24 13:47:13','','edging-Cleaning','','inherit','open','closed','','edging-cleaning','','','2024-07-24 13:47:13','2024-07-24 13:47:13','',24,'https://victor-quintero.designsfunnelserver.com/wp-content/uploads/2024/07/edging-Cleaning.jpg',0,'attachment','image/jpeg',0),(148,1,'2024-07-24 13:47:25','2024-07-24 13:47:25','

Complete For All Landscape Service And Maintenance

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation \n \n Contact Us\n \n \n \n Watch Intro\n \n
About Greenco
\n

We Provide Landscaping And Garden Care Services

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit \n \"gardener-and-his-flowers.jpg\" \n \n \n More About Us\n \n \"gardener-topiary-job.jpg\" \n \"gardener-in-newly-build-backyard-garden.jpg\" \n 0\n +\n Projects Completed\n \n
Why Choose Us
\n

We Have The Perfect Solution For Your Landscape Problems

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation \n

Variation Gardening

Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

\n

Expert Landscapers

Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

\n

Affordable Price

Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

\n

Free Consultation

Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

\n
Our Services
\n

Find The Best Service For Your Garden

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n

Lawn Services

Lorem ipsum dolor sit amet \n \n

Driveway Pressure Washing

Lorem ipsum dolor sit amet \n \n

Deck Pressure Washing

Lorem ipsum dolor sit amet \n \n

Weed Control

Lorem ipsum dolor sit amet \n \n

Grass Feed

Lorem ipsum dolor sit amet \n \n

Edging Cleaning

Lorem ipsum dolor sit amet \n \n
Best Landscaping
\n

Need Someone To Take Care Your Garden & Lawn?

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

Make Appointment & Take Care Your Garden

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore

\n \n
Work Process
\n

We Complete Every Step Carefully

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n

\n Start Consultation \n

\n 01 \n

\n Design Installation \n

\n 02 \n

\n Start Consturction \n

\n 03 \n

\n Finished Work \n

\n 04 \n 0\n +\n Years of Experience\n 0\n +\n Projects Completed\n 0\n +\n Happy Customers\n 0\n +\n Expert Landscapers\n
Our Projects
\n

Project We Have Done\n

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n All Projects\n \n \"Cutting\n

Cutting Leaf

\n

\n

Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

\n \n \"Home\n

Home Garden

\n

\n

Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

\n \n \"Build\n

Build Backyard

\n

\n

Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

\n \n
Testimonials
\n

What They Says About Us

\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

\n \n \"Regan\n Regan Traynor\n

Entrepreneur

\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

\n \n \"Maisha\n Maisha Dunn\n

Entrepreneur

\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

\n \n \"Reis\n Reis Leonard\n

Businessman

\n
Our Blog
\n

Lates News and Articles

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n No Content Available','Home','','inherit','closed','closed','','24-revision-v1','','','2024-07-24 13:47:25','2024-07-24 13:47:25','',24,'https://victor-quintero.designsfunnelserver.com/?p=148',0,'revision','',0),(149,1,'2024-07-24 13:47:25','2024-07-24 13:47:25','

Complete For All Landscape Service And Maintenance

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation \n \n Contact Us\n \n \n \n Watch Intro\n \n
About Greenco
\n

We Provide Landscaping And Garden Care Services

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit \n \"gardener-and-his-flowers.jpg\" \n \n \n More About Us\n \n \"gardener-topiary-job.jpg\" \n \"gardener-in-newly-build-backyard-garden.jpg\" \n 0\n +\n Projects Completed\n \n
Why Choose Us
\n

We Have The Perfect Solution For Your Landscape Problems

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation \n

Variation Gardening

Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

\n

Expert Landscapers

Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

\n

Affordable Price

Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

\n

Free Consultation

Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

\n
Our Services
\n

Find The Best Service For Your Garden

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n

Lawn Services

Lorem ipsum dolor sit amet \n \n

Driveway Pressure Washing

Lorem ipsum dolor sit amet \n \n

Deck Pressure Washing

Lorem ipsum dolor sit amet \n \n

Weed Control

Lorem ipsum dolor sit amet \n \n

Grass Feed

Lorem ipsum dolor sit amet \n \n

Edging Cleaning

Lorem ipsum dolor sit amet \n \n
Best Landscaping
\n

Need Someone To Take Care Your Garden & Lawn?

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

Make Appointment & Take Care Your Garden

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore

\n \n
Work Process
\n

We Complete Every Step Carefully

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n

\n Start Consultation \n

\n 01 \n

\n Design Installation \n

\n 02 \n

\n Start Consturction \n

\n 03 \n

\n Finished Work \n

\n 04 \n 0\n +\n Years of Experience\n 0\n +\n Projects Completed\n 0\n +\n Happy Customers\n 0\n +\n Expert Landscapers\n
Our Projects
\n

Project We Have Done\n

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n All Projects\n \n \"Cutting\n

Cutting Leaf

\n

\n

Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

\n \n \"Home\n

Home Garden

\n

\n

Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

\n \n \"Build\n

Build Backyard

\n

\n

Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

\n \n
Testimonials
\n

What They Says About Us

\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

\n \n \"Regan\n Regan Traynor\n

Entrepreneur

\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

\n \n \"Maisha\n Maisha Dunn\n

Entrepreneur

\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

\n \n \"Reis\n Reis Leonard\n

Businessman

\n
Our Blog
\n

Lates News and Articles

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n No Content Available','Home','','inherit','closed','closed','','24-revision-v1','','','2024-07-24 13:47:25','2024-07-24 13:47:25','',24,'https://victor-quintero.designsfunnelserver.com/?p=149',0,'revision','',0),(150,1,'2024-07-24 13:47:26','2024-07-24 13:47:26','

Complete For All Landscape Service And Maintenance

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation \n \n Contact Us\n \n \n \n Watch Intro\n \n
About Greenco
\n

We Provide Landscaping And Garden Care Services

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit \n \"gardener-and-his-flowers.jpg\" \n \n \n More About Us\n \n \"gardener-topiary-job.jpg\" \n \"gardener-in-newly-build-backyard-garden.jpg\" \n 0\n +\n Projects Completed\n \n
Why Choose Us
\n

We Have The Perfect Solution For Your Landscape Problems

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation \n

Variation Gardening

Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

\n

Expert Landscapers

Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

\n

Affordable Price

Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

\n

Free Consultation

Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

\n
Our Services
\n

Find The Best Service For Your Garden

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n

Lawn Services

Lorem ipsum dolor sit amet \n \n

Driveway Pressure Washing

Lorem ipsum dolor sit amet \n \n

Deck Pressure Washing

Lorem ipsum dolor sit amet \n \n

Weed Control

Lorem ipsum dolor sit amet \n \n

Grass Feed

Lorem ipsum dolor sit amet \n \n

Edging Cleaning

Lorem ipsum dolor sit amet \n \n
Best Landscaping
\n

Need Someone To Take Care Your Garden & Lawn?

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

Make Appointment & Take Care Your Garden

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore

\n \n
Work Process
\n

We Complete Every Step Carefully

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n

\n Start Consultation \n

\n 01 \n

\n Design Installation \n

\n 02 \n

\n Start Consturction \n

\n 03 \n

\n Finished Work \n

\n 04 \n 0\n +\n Years of Experience\n 0\n +\n Projects Completed\n 0\n +\n Happy Customers\n 0\n +\n Expert Landscapers\n
Our Projects
\n

Project We Have Done\n

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n All Projects\n \n \"Cutting\n

Cutting Leaf

\n

\n

Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

\n \n \"Home\n

Home Garden

\n

\n

Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

\n \n \"Build\n

Build Backyard

\n

\n

Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

\n \n
Testimonials
\n

What They Says About Us

\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

\n \n \"Regan\n Regan Traynor\n

Entrepreneur

\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

\n \n \"Maisha\n Maisha Dunn\n

Entrepreneur

\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

\n \n \"Reis\n Reis Leonard\n

Businessman

\n
Our Blog
\n

Lates News and Articles

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n
\n \n edit post\n \n \"\"\n \n Uncategorized

\n 3 Important Reasons to Build A Backyard Fire Pit\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna...

\n Read More\n
\n \n edit post\n \n \"\"\n \n Uncategorized

\n We Making Your Perfect Wedding Garden at Home\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna...

\n Read More\n
\n \n edit post\n \n \"\"\n \n Uncategorized

\n Landscaping: The Best Idea You’ve Ever Had\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna...

\n Read More\n
','Home','','inherit','closed','closed','','24-revision-v1','','','2024-07-24 13:47:26','2024-07-24 13:47:26','',24,'https://victor-quintero.designsfunnelserver.com/?p=150',0,'revision','',0),(151,1,'2024-07-24 13:49:38','2024-07-24 13:49:38','

Complete For All Landscape Service And Maintenance

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation \n \n Contact Us\n \n \n \n Watch Intro\n \n
About Greenco
\n

We Provide Landscaping And Garden Care Services

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit \n \"gardener-and-his-flowers.jpg\" \n \n \n More About Us\n \n \"gardener-topiary-job.jpg\" \n \"gardener-in-newly-build-backyard-garden.jpg\" \n 0\n +\n Projects Completed\n \n
Why Choose Us
\n

We Have The Perfect Solution For Your Landscape Problems

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation \n

Variation Gardening

Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

\n

Expert Landscapers

Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

\n

Affordable Price

Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

\n

Free Consultation

Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

\n
Our Services
\n

Find The Best Service For Your Garden

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n

Lawn Services

Lorem ipsum dolor sit amet \n \n

Driveway Pressure Washing

Lorem ipsum dolor sit amet \n \n

Deck Pressure Washing

Lorem ipsum dolor sit amet \n \n

Weed Control

Lorem ipsum dolor sit amet \n \n

Grass Feed

Lorem ipsum dolor sit amet \n \n

Edging Cleaning

Lorem ipsum dolor sit amet \n \n
Best Landscaping
\n

Need Someone To Take Care Your Garden & Lawn?

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

Make Appointment & Take Care Your Garden

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore

\n \n
Work Process
\n

We Complete Every Step Carefully

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n

\n Start Consultation \n

\n 01 \n

\n Design Installation \n

\n 02 \n

\n Start Consturction \n

\n 03 \n

\n Finished Work \n

\n 04 \n 0\n +\n Years of Experience\n 0\n +\n Projects Completed\n 0\n +\n Happy Customers\n 0\n +\n Expert Landscapers\n
Our Projects
\n

Project We Have Done\n

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n All Projects\n \n \"Cutting\n

Cutting Leaf

\n

\n

Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

\n \n \"Home\n

Home Garden

\n

\n

Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

\n \n \"Build\n

Build Backyard

\n

\n

Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

\n \n
Testimonials
\n

What They Says About Us

\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

\n \n \"Regan\n Regan Traynor\n

Entrepreneur

\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

\n \n \"Maisha\n Maisha Dunn\n

Entrepreneur

\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

\n \n \"Reis\n Reis Leonard\n

Businessman

\n
Our Blog
\n

Lates News and Articles

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n
\n \n edit post\n \n \"\"\n \n Uncategorized

\n 3 Important Reasons to Build A Backyard Fire Pit\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna...

\n Read More\n
\n \n edit post\n \n \"\"\n \n Uncategorized

\n We Making Your Perfect Wedding Garden at Home\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna...

\n Read More\n
\n \n edit post\n \n \"\"\n \n Uncategorized

\n Landscaping: The Best Idea You’ve Ever Had\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna...

\n Read More\n
','Home','','inherit','closed','closed','','24-revision-v1','','','2024-07-24 13:49:38','2024-07-24 13:49:38','',24,'https://victor-quintero.designsfunnelserver.com/?p=151',0,'revision','',0),(152,1,'2024-07-24 13:49:39','2024-07-24 13:49:39','

Complete For All Landscape Service And Maintenance

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation \n \n Contact Us\n \n \n \n Watch Intro\n \n
About Greenco
\n

We Provide Landscaping And Garden Care Services

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit \n \"gardener-and-his-flowers.jpg\" \n \n \n More About Us\n \n \"gardener-topiary-job.jpg\" \n \"gardener-in-newly-build-backyard-garden.jpg\" \n 0\n +\n Projects Completed\n \n
Why Choose Us
\n

We Have The Perfect Solution For Your Landscape Problems

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation \n

Variation Gardening

Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

\n

Expert Landscapers

Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

\n

Affordable Price

Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

\n

Free Consultation

Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

\n
Our Services
\n

Find The Best Service For Your Garden

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n

Lawn Services

Lorem ipsum dolor sit amet \n \n

Driveway Pressure Washing

Lorem ipsum dolor sit amet \n \n

Deck Pressure Washing

Lorem ipsum dolor sit amet \n \n

Weed Control

Lorem ipsum dolor sit amet \n \n

Grass Feed

Lorem ipsum dolor sit amet \n \n

Edging Cleaning

Lorem ipsum dolor sit amet \n \n
Best Landscaping
\n

Need Someone To Take Care Your Garden & Lawn?

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

Make Appointment & Take Care Your Garden

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore

\n \n
Work Process
\n

We Complete Every Step Carefully

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n

\n Start Consultation \n

\n 01 \n

\n Design Installation \n

\n 02 \n

\n Start Consturction \n

\n 03 \n

\n Finished Work \n

\n 04 \n 0\n +\n Years of Experience\n 0\n +\n Projects Completed\n 0\n +\n Happy Customers\n 0\n +\n Expert Landscapers\n
Our Projects
\n

Project We Have Done\n

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n All Projects\n \n \"Cutting\n

Cutting Leaf

\n

\n

Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

\n \n \"Home\n

Home Garden

\n

\n

Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

\n \n \"Build\n

Build Backyard

\n

\n

Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

\n \n
Testimonials
\n

What They Says About Us

\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

\n \n \"Regan\n Regan Traynor\n

Entrepreneur

\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

\n \n \"Maisha\n Maisha Dunn\n

Entrepreneur

\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

\n \n \"Reis\n Reis Leonard\n

Businessman

\n
Our Blog
\n

Lates News and Articles

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n
\n \n edit post\n \n \"\"\n \n Uncategorized

\n 3 Important Reasons to Build A Backyard Fire Pit\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna...

\n Read More\n
\n \n edit post\n \n \"\"\n \n Uncategorized

\n We Making Your Perfect Wedding Garden at Home\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna...

\n Read More\n
\n \n edit post\n \n \"\"\n \n Uncategorized

\n Landscaping: The Best Idea You’ve Ever Had\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna...

\n Read More\n
','Home','','inherit','closed','closed','','24-revision-v1','','','2024-07-24 13:49:39','2024-07-24 13:49:39','',24,'https://victor-quintero.designsfunnelserver.com/?p=152',0,'revision','',0),(153,1,'2024-07-24 13:49:39','2024-07-24 13:49:39','

Complete For All Landscape Service And Maintenance

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation \n \n Contact Us\n \n \n \n Watch Intro\n \n
About Prestige Luxury Cleanings LLC
\n

We Provide Landscaping And Garden Care Services

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit \n \"gardener-and-his-flowers.jpg\" \n \n \n More About Us\n \n \"gardener-topiary-job.jpg\" \n \"gardener-in-newly-build-backyard-garden.jpg\" \n 0\n +\n Projects Completed\n \n
Why Choose Us
\n

We Have The Perfect Solution For Your Landscape Problems

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation \n

Variation Gardening

Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

\n

Expert Landscapers

Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

\n

Affordable Price

Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

\n

Free Consultation

Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

\n
Our Services
\n

Find The Best Service For Your Garden

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n

Lawn Services

Lorem ipsum dolor sit amet \n \n

Driveway Pressure Washing

Lorem ipsum dolor sit amet \n \n

Deck Pressure Washing

Lorem ipsum dolor sit amet \n \n

Weed Control

Lorem ipsum dolor sit amet \n \n

Grass Feed

Lorem ipsum dolor sit amet \n \n

Edging Cleaning

Lorem ipsum dolor sit amet \n \n
Best Landscaping
\n

Need Someone To Take Care Your Garden & Lawn?

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

Make Appointment & Take Care Your Garden

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore

\n \n
Work Process
\n

We Complete Every Step Carefully

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n

\n Start Consultation \n

\n 01 \n

\n Design Installation \n

\n 02 \n

\n Start Consturction \n

\n 03 \n

\n Finished Work \n

\n 04 \n 0\n +\n Years of Experience\n 0\n +\n Projects Completed\n 0\n +\n Happy Customers\n 0\n +\n Expert Landscapers\n
Our Projects
\n

Project We Have Done\n

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n All Projects\n \n \"Cutting\n

Cutting Leaf

\n

\n

Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

\n \n \"Home\n

Home Garden

\n

\n

Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

\n \n \"Build\n

Build Backyard

\n

\n

Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

\n \n
Testimonials
\n

What They Says About Us

\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

\n \n \"Regan\n Regan Traynor\n

Entrepreneur

\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

\n \n \"Maisha\n Maisha Dunn\n

Entrepreneur

\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

\n \n \"Reis\n Reis Leonard\n

Businessman

\n
Our Blog
\n

Lates News and Articles

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n
\n \n edit post\n \n \"\"\n \n Uncategorized

\n 3 Important Reasons to Build A Backyard Fire Pit\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna...

\n Read More\n
\n \n edit post\n \n \"\"\n \n Uncategorized

\n We Making Your Perfect Wedding Garden at Home\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna...

\n Read More\n
\n \n edit post\n \n \"\"\n \n Uncategorized

\n Landscaping: The Best Idea You’ve Ever Had\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna...

\n Read More\n
','Home','','inherit','closed','closed','','24-revision-v1','','','2024-07-24 13:49:39','2024-07-24 13:49:39','',24,'https://victor-quintero.designsfunnelserver.com/?p=153',0,'revision','',0),(154,1,'2024-07-24 14:01:06','2024-07-24 14:01:06','','banner-02 (5)','','inherit','open','closed','','banner-02-5','','','2024-07-24 14:01:06','2024-07-24 14:01:06','',24,'https://victor-quintero.designsfunnelserver.com/wp-content/uploads/2024/07/banner-02-5.jpg',0,'attachment','image/jpeg',0),(155,1,'2024-07-24 14:01:08','2024-07-24 14:01:08','','banner-03 (3)','','inherit','open','closed','','banner-03-3','','','2024-07-24 14:01:08','2024-07-24 14:01:08','',24,'https://victor-quintero.designsfunnelserver.com/wp-content/uploads/2024/07/banner-03-3.jpg',0,'attachment','image/jpeg',0),(156,1,'2024-07-24 14:01:11','2024-07-24 14:01:11','','banner-04 (3)','','inherit','open','closed','','banner-04-3','','','2024-07-24 14:01:11','2024-07-24 14:01:11','',24,'https://victor-quintero.designsfunnelserver.com/wp-content/uploads/2024/07/banner-04-3.jpg',0,'attachment','image/jpeg',0),(157,1,'2024-07-24 14:01:13','2024-07-24 14:01:13','','banner-01 (5)','','inherit','open','closed','','banner-01-5','','','2024-07-24 14:01:13','2024-07-24 14:01:13','',24,'https://victor-quintero.designsfunnelserver.com/wp-content/uploads/2024/07/banner-01-5.jpg',0,'attachment','image/jpeg',0),(159,1,'2024-07-24 14:04:03','2024-07-24 14:04:03','

Complete For All Landscape Service And Maintenance

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation \n \n Contact Us\n \n \n \n Watch Intro\n \n
About Prestige Luxury Cleanings LLC
\n

We Provide Landscaping And Garden Care Services

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit \n \"gardener-and-his-flowers.jpg\" \n \n \n More About Us\n \n \"gardener-topiary-job.jpg\" \n \"gardener-in-newly-build-backyard-garden.jpg\" \n 0\n +\n Projects Completed\n \n
Why Choose Us
\n

We Have The Perfect Solution For Your Landscape Problems

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation \n

Variation Gardening

Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

\n

Expert Landscapers

Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

\n

Affordable Price

Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

\n

Free Consultation

Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

\n
Our Services
\n

Find The Best Service For Your Garden

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n

Lawn Services

Lorem ipsum dolor sit amet \n \n

Driveway Pressure Washing

Lorem ipsum dolor sit amet \n \n

Deck Pressure Washing

Lorem ipsum dolor sit amet \n \n

Weed Control

Lorem ipsum dolor sit amet \n \n

Grass Feed

Lorem ipsum dolor sit amet \n \n

Edging Cleaning

Lorem ipsum dolor sit amet \n \n
Best Landscaping
\n

Need Someone To Take Care Your Garden & Lawn?

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

Make Appointment & Take Care Your Garden

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore

\n \n
Work Process
\n

We Complete Every Step Carefully

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n

\n Start Consultation \n

\n 01 \n

\n Design Installation \n

\n 02 \n

\n Start Consturction \n

\n 03 \n

\n Finished Work \n

\n 04 \n 0\n +\n Years of Experience\n 0\n +\n Projects Completed\n 0\n +\n Happy Customers\n 0\n +\n Expert Landscapers\n
Our Projects
\n

Project We Have Done\n

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n All Projects\n \n \"Cutting\n

Cutting Leaf

\n

\n

Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

\n \n \"Home\n

Home Garden

\n

\n

Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

\n \n \"Build\n

Build Backyard

\n

\n

Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

\n \n
Testimonials
\n

What They Says About Us

\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

\n \n \"Regan\n Regan Traynor\n

Entrepreneur

\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

\n \n \"Maisha\n Maisha Dunn\n

Entrepreneur

\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

\n \n \"Reis\n Reis Leonard\n

Businessman

\n
Our Blog
\n

Lates News and Articles

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n
\n \n edit post\n \n \"\"\n \n Uncategorized

\n 3 Important Reasons to Build A Backyard Fire Pit\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna...

\n Read More\n
\n \n edit post\n \n \"\"\n \n Uncategorized

\n We Making Your Perfect Wedding Garden at Home\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna...

\n Read More\n
\n \n edit post\n \n \"\"\n \n Uncategorized

\n Landscaping: The Best Idea You’ve Ever Had\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna...

\n Read More\n
','Home','','inherit','closed','closed','','24-revision-v1','','','2024-07-24 14:04:03','2024-07-24 14:04:03','',24,'https://victor-quintero.designsfunnelserver.com/?p=159',0,'revision','',0),(160,1,'2024-07-24 14:04:03','2024-07-24 14:04:03','

Complete For All Landscape Service And Maintenance

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation \n \n Contact Us\n \n \n \n Watch Intro\n \n
About Prestige Luxury Cleanings LLC
\n

We Provide Landscaping And Garden Care Services

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit \n \"gardener-and-his-flowers.jpg\" \n \n \n More About Us\n \n \"gardener-topiary-job.jpg\" \n \"gardener-in-newly-build-backyard-garden.jpg\" \n 0\n +\n Projects Completed\n \n
Why Choose Us
\n

We Have The Perfect Solution For Your Landscape Problems

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation \n

Variation Gardening

Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

\n

Expert Landscapers

Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

\n

Affordable Price

Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

\n

Free Consultation

Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

\n
Our Services
\n

Find The Best Service For Your Garden

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n

Lawn Services

Lorem ipsum dolor sit amet \n \n

Driveway Pressure Washing

Lorem ipsum dolor sit amet \n \n

Deck Pressure Washing

Lorem ipsum dolor sit amet \n \n

Weed Control

Lorem ipsum dolor sit amet \n \n

Grass Feed

Lorem ipsum dolor sit amet \n \n

Edging Cleaning

Lorem ipsum dolor sit amet \n \n
Best Landscaping
\n

Need Someone To Take Care Your Garden & Lawn?

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

Make Appointment & Take Care Your Garden

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore

\n \n
Work Process
\n

We Complete Every Step Carefully

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n

\n Start Consultation \n

\n 01 \n

\n Design Installation \n

\n 02 \n

\n Start Consturction \n

\n 03 \n

\n Finished Work \n

\n 04 \n 0\n +\n Years of Experience\n 0\n +\n Projects Completed\n 0\n +\n Happy Customers\n 0\n +\n Expert Landscapers\n
Our Projects
\n

Project We Have Done\n

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n All Projects\n \n \"Cutting\n

Cutting Leaf

\n

\n

Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

\n \n \"Home\n

Home Garden

\n

\n

Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

\n \n \"Build\n

Build Backyard

\n

\n

Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

\n \n
Testimonials
\n

What They Says About Us

\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

\n \n \"Regan\n Regan Traynor\n

Entrepreneur

\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

\n \n \"Maisha\n Maisha Dunn\n

Entrepreneur

\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

\n \n \"Reis\n Reis Leonard\n

Businessman

\n
Our Blog
\n

Lates News and Articles

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n
\n \n edit post\n \n \"\"\n \n Uncategorized

\n 3 Important Reasons to Build A Backyard Fire Pit\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna...

\n Read More\n
\n \n edit post\n \n \"\"\n \n Uncategorized

\n We Making Your Perfect Wedding Garden at Home\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna...

\n Read More\n
\n \n edit post\n \n \"\"\n \n Uncategorized

\n Landscaping: The Best Idea You’ve Ever Had\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna...

\n Read More\n
','Home','','inherit','closed','closed','','24-revision-v1','','','2024-07-24 14:04:03','2024-07-24 14:04:03','',24,'https://victor-quintero.designsfunnelserver.com/?p=160',0,'revision','',0),(161,1,'2024-07-24 14:04:04','2024-07-24 14:04:04','

Complete For All Landscape Service And Maintenance

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation \n \n Contact Us\n \n \n \n Watch Intro\n \n
About Prestige Luxury Cleanings LLC
\n

We Provide Landscaping And Garden Care Services

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit \n \"gardener-and-his-flowers.jpg\" \n \n \n More About Us\n \n \"gardener-topiary-job.jpg\" \n \"gardener-in-newly-build-backyard-garden.jpg\" \n 0\n +\n Projects Completed\n \n
Why Choose Us
\n

We Have The Perfect Solution For Your Landscape Problems

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation \n

Variation Gardening

Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

\n

Expert Landscapers

Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

\n

Affordable Price

Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

\n

Free Consultation

Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

\n
Our Services
\n

Find The Best Service For Your Garden

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n

Lawn Services

Lorem ipsum dolor sit amet \n \n

Driveway Pressure Washing

Lorem ipsum dolor sit amet \n \n

Deck Pressure Washing

Lorem ipsum dolor sit amet \n \n

Weed Control

Lorem ipsum dolor sit amet \n \n

Grass Feed

Lorem ipsum dolor sit amet \n \n

Edging Cleaning

Lorem ipsum dolor sit amet \n \n
Best Landscaping
\n

Need Someone To Take Care Your Garden & Lawn?

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

Make Appointment & Take Care Your Garden

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore

\n \n
Work Process
\n

We Complete Every Step Carefully

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n

\n Start Consultation \n

\n 01 \n

\n Design Installation \n

\n 02 \n

\n Start Consturction \n

\n 03 \n

\n Finished Work \n

\n 04 \n 0\n +\n Years of Experience\n 0\n +\n Projects Completed\n 0\n +\n Happy Customers\n 0\n +\n Expert Landscapers\n
Our Projects
\n

Project We Have Done\n

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n All Projects\n \n \"Cutting\n

Cutting Leaf

\n

\n

Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

\n \n \"Home\n

Home Garden

\n

\n

Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

\n \n \"Build\n

Build Backyard

\n

\n

Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

\n \n
Testimonials
\n

What They Says About Us

\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

\n \n \"Regan\n Regan Traynor\n

Entrepreneur

\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

\n \n \"Maisha\n Maisha Dunn\n

Entrepreneur

\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

\n \n \"Reis\n Reis Leonard\n

Businessman

\n
Our Blog
\n

Lates News and Articles

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n
\n \n edit post\n \n \"\"\n \n Uncategorized

\n 3 Important Reasons to Build A Backyard Fire Pit\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna...

\n Read More\n
\n \n edit post\n \n \"\"\n \n Uncategorized

\n We Making Your Perfect Wedding Garden at Home\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna...

\n Read More\n
\n \n edit post\n \n \"\"\n \n Uncategorized

\n Landscaping: The Best Idea You’ve Ever Had\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna...

\n Read More\n
','Home','','inherit','closed','closed','','24-revision-v1','','','2024-07-24 14:04:04','2024-07-24 14:04:04','',24,'https://victor-quintero.designsfunnelserver.com/?p=161',0,'revision','',0),(162,1,'2024-07-24 14:05:17','2024-07-24 14:05:17','','gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w','','inherit','open','closed','','gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w','','','2024-07-24 14:05:17','2024-07-24 14:05:17','',24,'https://victor-quintero.designsfunnelserver.com/wp-content/uploads/2024/07/gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w.jpg',0,'attachment','image/jpeg',0),(163,1,'2024-07-24 14:05:19','2024-07-24 14:05:19','','gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68','','inherit','open','closed','','gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68','','','2024-07-24 14:05:19','2024-07-24 14:05:19','',24,'https://victor-quintero.designsfunnelserver.com/wp-content/uploads/2024/07/gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68.jpg',0,'attachment','image/jpeg',0),(164,1,'2024-07-24 14:05:59','2024-07-24 14:05:59','

Complete For All Landscape Service And Maintenance

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation \n \n Contact Us\n \n \n \n Watch Intro\n \n
About Prestige Luxury Cleanings LLC
\n

We Provide Landscaping And Garden Care Services

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit \n \"gardener-and-his-flowers.jpg\" \n \n \n More About Us\n \n \"gardener-topiary-job.jpg\" \n \"gardener-in-newly-build-backyard-garden.jpg\" \n 0\n +\n Projects Completed\n \n
Why Choose Us
\n

We Have The Perfect Solution For Your Landscape Problems

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation \n

Variation Gardening

Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

\n

Expert Landscapers

Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

\n

Affordable Price

Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

\n

Free Consultation

Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

\n
Our Services
\n

Find The Best Service For Your Garden

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n

Lawn Services

Lorem ipsum dolor sit amet \n \n

Driveway Pressure Washing

Lorem ipsum dolor sit amet \n \n

Deck Pressure Washing

Lorem ipsum dolor sit amet \n \n

Weed Control

Lorem ipsum dolor sit amet \n \n

Grass Feed

Lorem ipsum dolor sit amet \n \n

Edging Cleaning

Lorem ipsum dolor sit amet \n \n
Best Landscaping
\n

Need Someone To Take Care Your Garden & Lawn?

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

Make Appointment & Take Care Your Garden

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore

\n \n
Work Process
\n

We Complete Every Step Carefully

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n

\n Start Consultation \n

\n 01 \n

\n Design Installation \n

\n 02 \n

\n Start Consturction \n

\n 03 \n

\n Finished Work \n

\n 04 \n 0\n +\n Years of Experience\n 0\n +\n Projects Completed\n 0\n +\n Happy Customers\n 0\n +\n Expert Landscapers\n
Our Projects
\n

Project We Have Done\n

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n All Projects\n \n \"Cutting\n

Cutting Leaf

\n

\n

Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

\n \n \"Home\n

Home Garden

\n

\n

Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

\n \n \"Build\n

Build Backyard

\n

\n

Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

\n \n
Testimonials
\n

What They Says About Us

\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

\n \n \"Regan\n Regan Traynor\n

Entrepreneur

\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

\n \n \"Maisha\n Maisha Dunn\n

Entrepreneur

\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

\n \n \"Reis\n Reis Leonard\n

Businessman

\n
Our Blog
\n

Lates News and Articles

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n
\n \n edit post\n \n \"\"\n \n Uncategorized

\n 3 Important Reasons to Build A Backyard Fire Pit\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna...

\n Read More\n
\n \n edit post\n \n \"\"\n \n Uncategorized

\n We Making Your Perfect Wedding Garden at Home\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna...

\n Read More\n
\n \n edit post\n \n \"\"\n \n Uncategorized

\n Landscaping: The Best Idea You’ve Ever Had\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna...

\n Read More\n
','Home','','inherit','closed','closed','','24-revision-v1','','','2024-07-24 14:05:59','2024-07-24 14:05:59','',24,'https://victor-quintero.designsfunnelserver.com/?p=164',0,'revision','',0),(165,1,'2024-07-24 14:05:59','2024-07-24 14:05:59','

Complete For All Landscape Service And Maintenance

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation \n \n Contact Us\n \n \n \n Watch Intro\n \n
About Prestige Luxury Cleanings LLC
\n

We Provide Landscaping And Garden Care Services

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit \n \"gardener-and-his-flowers.jpg\" \n \n \n More About Us\n \n \"gardener-topiary-job.jpg\" \n \"gardener-in-newly-build-backyard-garden.jpg\" \n 0\n +\n Projects Completed\n \n
Why Choose Us
\n

We Have The Perfect Solution For Your Landscape Problems

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation \n

Variation Gardening

Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

\n

Expert Landscapers

Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

\n

Affordable Price

Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

\n

Free Consultation

Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

\n
Our Services
\n

Find The Best Service For Your Garden

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n

Lawn Services

Lorem ipsum dolor sit amet \n \n

Driveway Pressure Washing

Lorem ipsum dolor sit amet \n \n

Deck Pressure Washing

Lorem ipsum dolor sit amet \n \n

Weed Control

Lorem ipsum dolor sit amet \n \n

Grass Feed

Lorem ipsum dolor sit amet \n \n

Edging Cleaning

Lorem ipsum dolor sit amet \n \n
Best Landscaping
\n

Need Someone To Take Care Your Garden & Lawn?

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

Make Appointment & Take Care Your Garden

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore

\n \n
Work Process
\n

We Complete Every Step Carefully

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n

\n Start Consultation \n

\n 01 \n

\n Design Installation \n

\n 02 \n

\n Start Consturction \n

\n 03 \n

\n Finished Work \n

\n 04 \n 0\n +\n Years of Experience\n 0\n +\n Projects Completed\n 0\n +\n Happy Customers\n 0\n +\n Expert Landscapers\n
Our Projects
\n

Project We Have Done\n

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n All Projects\n \n \"Cutting\n

Cutting Leaf

\n

\n

Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

\n \n \"Home\n

Home Garden

\n

\n

Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

\n \n \"Build\n

Build Backyard

\n

\n

Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

\n \n
Testimonials
\n

What They Says About Us

\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

\n \n \"Regan\n Regan Traynor\n

Entrepreneur

\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

\n \n \"Maisha\n Maisha Dunn\n

Entrepreneur

\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

\n \n \"Reis\n Reis Leonard\n

Businessman

\n
Our Blog
\n

Lates News and Articles

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n
\n \n edit post\n \n \"\"\n \n Uncategorized

\n 3 Important Reasons to Build A Backyard Fire Pit\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna...

\n Read More\n
\n \n edit post\n \n \"\"\n \n Uncategorized

\n We Making Your Perfect Wedding Garden at Home\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna...

\n Read More\n
\n \n edit post\n \n \"\"\n \n Uncategorized

\n Landscaping: The Best Idea You’ve Ever Had\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna...

\n Read More\n
','Home','','inherit','closed','closed','','24-revision-v1','','','2024-07-24 14:05:59','2024-07-24 14:05:59','',24,'https://victor-quintero.designsfunnelserver.com/?p=165',0,'revision','',0),(166,1,'2024-07-24 14:05:59','2024-07-24 14:05:59','

Complete For All Landscape Service And Maintenance

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation \n \n Contact Us\n \n \n \n Watch Intro\n \n
About Prestige Luxury Cleanings LLC
\n

We Provide Landscaping And Garden Care Services

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit \n \"gardener-and-his-flowers.jpg\" \n \n \n More About Us\n \n \"gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w\" \n \"gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68\" \n 0\n +\n Projects Completed\n \n
Why Choose Us
\n

We Have The Perfect Solution For Your Landscape Problems

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation \n

Variation Gardening

Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

\n

Expert Landscapers

Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

\n

Affordable Price

Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

\n

Free Consultation

Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

\n
Our Services
\n

Find The Best Service For Your Garden

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n

Lawn Services

Lorem ipsum dolor sit amet \n \n

Driveway Pressure Washing

Lorem ipsum dolor sit amet \n \n

Deck Pressure Washing

Lorem ipsum dolor sit amet \n \n

Weed Control

Lorem ipsum dolor sit amet \n \n

Grass Feed

Lorem ipsum dolor sit amet \n \n

Edging Cleaning

Lorem ipsum dolor sit amet \n \n
Best Landscaping
\n

Need Someone To Take Care Your Garden & Lawn?

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

Make Appointment & Take Care Your Garden

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore

\n \n
Work Process
\n

We Complete Every Step Carefully

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n

\n Start Consultation \n

\n 01 \n

\n Design Installation \n

\n 02 \n

\n Start Consturction \n

\n 03 \n

\n Finished Work \n

\n 04 \n 0\n +\n Years of Experience\n 0\n +\n Projects Completed\n 0\n +\n Happy Customers\n 0\n +\n Expert Landscapers\n
Our Projects
\n

Project We Have Done\n

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n All Projects\n \n \"Cutting\n

Cutting Leaf

\n

\n

Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

\n \n \"Home\n

Home Garden

\n

\n

Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

\n \n \"Build\n

Build Backyard

\n

\n

Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

\n \n
Testimonials
\n

What They Says About Us

\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

\n \n \"Regan\n Regan Traynor\n

Entrepreneur

\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

\n \n \"Maisha\n Maisha Dunn\n

Entrepreneur

\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

\n \n \"Reis\n Reis Leonard\n

Businessman

\n
Our Blog
\n

Lates News and Articles

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n
\n \n edit post\n \n \"\"\n \n Uncategorized

\n 3 Important Reasons to Build A Backyard Fire Pit\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna...

\n Read More\n
\n \n edit post\n \n \"\"\n \n Uncategorized

\n We Making Your Perfect Wedding Garden at Home\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna...

\n Read More\n
\n \n edit post\n \n \"\"\n \n Uncategorized

\n Landscaping: The Best Idea You’ve Ever Had\n

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna...

\n Read More\n
','Home','','inherit','closed','closed','','24-revision-v1','','','2024-07-24 14:05:59','2024-07-24 14:05:59','',24,'https://victor-quintero.designsfunnelserver.com/?p=166',0,'revision','',0),(167,1,'2024-07-24 14:09:11','2024-07-24 14:09:11','','gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk','','inherit','open','closed','','gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk','','','2024-07-24 14:09:11','2024-07-24 14:09:11','',24,'https://victor-quintero.designsfunnelserver.com/wp-content/uploads/2024/07/gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk.jpg',0,'attachment','image/jpeg',0),(169,1,'2024-07-24 14:13:55','2024-07-24 14:13:55','{\n parent.activateValidation({\"message\":\"This field is required.\",\"minLength\":1,\"maxLength\":\"\",\"type\":\"none\",\"required\":false,\"expression\":\"null\"}, el)\n }}\n />\n <${validation.ErrorMessage}\n errors=${validation.errors}\n name=\"mf-first-name\"\n as=${html``}\n />\n parent.activateValidation({\"message\":\"This field is required.\",\"emailMessage\":\"Please enter a valid Email address\",\"minLength\":1,\"maxLength\":\"\",\"type\":\"none\",\"required\":false,\"expression\":\"null\"}, el)}\n />\n <${validation.ErrorMessage} \n errors=${validation.errors} \n name=\"mf-email\" \n as=${html``}\n />\n parent.activateValidation({\"message\":\"This field is required.\",\"minLength\":1,\"maxLength\":\"\",\"type\":\"none\",\"required\":false,\"expression\":\"null\"}, el)}\n />\n <${validation.ErrorMessage}\n errors=${validation.errors}\n name=\"mf-telephone\"\n as=${html``}\n />\n <${props.Flatpickr}\n name=\"mf-date\"\n className=\"mf-input mf-date-input mf-left-parent \"\n placeholder=\"${ parent.decodeEntities(`Date`) } \"\n options=${{\"minDate\":\"\",\"maxDate\":\"\",\"dateFormat\":\"m-d-Y\",\"enableTime\":\"\",\"disable\":[],\"mode\":\"single\",\"static\":true,\"disableMobile\":true,\"time_24hr\":false}}\n value=${parent.getValue(\'mf-date\')}\n onInput=${parent.handleDateTime}\n aria-invalid=${validation.errors[\'mf-date\'] ? \'true\' : \'false\'}\n ref=${el => props.DateWidget(\n el, \n \'\', \n {\"message\":\"This field is required.\",\"required\":false}, \n register, \n parent \n )}\n />\n <${validation.ErrorMessage}\n errors=${validation.errors}\n name=\"mf-date\"\n as=${html``}\n />\n <${props.Select}\n className=${\"mf-input mf-input-select \" + ( validation.errors[\'mf-select\'] ? \'mf-invalid\' : \'\' )}\n classNamePrefix=\"mf_select\"\n name=\"mf-select\"\n placeholder=\"${ parent.decodeEntities(`Select Services`) } \"\n isSearchable=${false}\n options=${[{\"label\":\"Water Gardening\",\"value\":\"value-1\",\"isDisabled\":false},{\"label\":\"Lawn Maintenance\",\"value\":\"value-2\",\"isDisabled\":false},{\"label\":\"Cutting Leaf\",\"value\":\"value-3\",\"isDisabled\":false},{\"label\":\"Landscaping Design\",\"value\":\"value-4\",\"isDisabled\":false},{\"label\":\"Lawn Cleaning\",\"value\":\"value-5\",\"isDisabled\":false}]}\n value=${parent.getValue(\"mf-select\") ? [{\"label\":\"Water Gardening\",\"value\":\"value-1\",\"isDisabled\":false},{\"label\":\"Lawn Maintenance\",\"value\":\"value-2\",\"isDisabled\":false},{\"label\":\"Cutting Leaf\",\"value\":\"value-3\",\"isDisabled\":false},{\"label\":\"Landscaping Design\",\"value\":\"value-4\",\"isDisabled\":false},{\"label\":\"Lawn Cleaning\",\"value\":\"value-5\",\"isDisabled\":false}].filter(item => item.value === parent.getValue(\"mf-select\"))[0] : []}\n onChange=${(e)=> parent.handleSelect(e, \"mf-select\")}\n ref=${() => {\n register({ name: \"mf-select\" }, parent.activateValidation({\"message\":\"This field is required.\",\"minLength\":1,\"maxLength\":\"\",\"type\":\"none\",\"required\":false}));\n if ( parent.getValue(\"mf-select\") === \'\' && false ) {\n parent.setValue( \'mf-select\', \'\', true );\n parent.handleChange({\n target: {\n name: \'mf-select\',\n value: \'\'\n }\n });\n }\n }}\n />\n <${validation.ErrorMessage}\n errors=${validation.errors}\n name=\"mf-select\"\n as=${html``}\n />\n \n <${validation.ErrorMessage}\n errors=${validation.errors}\n name=\"mf-comment\"\n as=${html``}\n />\n ','MetForm Appointment','','publish','closed','closed','','metform-appointment','','','2024-07-24 14:13:55','2024-07-24 14:13:55','',0,'https://victor-quintero.designsfunnelserver.com/?elementor_library=metform-appointment',0,'elementor_library','',0),(170,1,'2024-07-24 14:13:55','2024-07-24 14:13:55','{\n parent.activateValidation({\"message\":\"This field is required.\",\"minLength\":1,\"maxLength\":\"\",\"type\":\"none\",\"required\":false,\"expression\":\"null\"}, el)\n }}\n />\n <${validation.ErrorMessage}\n errors=${validation.errors}\n name=\"mf-first-name\"\n as=${html``}\n />\n parent.activateValidation({\"message\":\"This field is required.\",\"emailMessage\":\"Please enter a valid Email address\",\"minLength\":1,\"maxLength\":\"\",\"type\":\"none\",\"required\":false,\"expression\":\"null\"}, el)}\n />\n <${validation.ErrorMessage} \n errors=${validation.errors} \n name=\"mf-email\" \n as=${html``}\n />\n parent.activateValidation({\"message\":\"This field is required.\",\"minLength\":1,\"maxLength\":\"\",\"type\":\"none\",\"required\":false,\"expression\":\"null\"}, el)}\n />\n <${validation.ErrorMessage}\n errors=${validation.errors}\n name=\"mf-telephone\"\n as=${html``}\n />\n <${props.Flatpickr}\n name=\"mf-date\"\n className=\"mf-input mf-date-input mf-left-parent \"\n placeholder=\"${ parent.decodeEntities(`Date`) } \"\n options=${{\"minDate\":\"\",\"maxDate\":\"\",\"dateFormat\":\"m-d-Y\",\"enableTime\":\"\",\"disable\":[],\"mode\":\"single\",\"static\":true,\"disableMobile\":true,\"time_24hr\":false}}\n value=${parent.getValue(\'mf-date\')}\n onInput=${parent.handleDateTime}\n aria-invalid=${validation.errors[\'mf-date\'] ? \'true\' : \'false\'}\n ref=${el => props.DateWidget(\n el, \n \'\', \n {\"message\":\"This field is required.\",\"required\":false}, \n register, \n parent \n )}\n />\n <${validation.ErrorMessage}\n errors=${validation.errors}\n name=\"mf-date\"\n as=${html``}\n />\n <${props.Select}\n className=${\"mf-input mf-input-select \" + ( validation.errors[\'mf-select\'] ? \'mf-invalid\' : \'\' )}\n classNamePrefix=\"mf_select\"\n name=\"mf-select\"\n placeholder=\"${ parent.decodeEntities(`Select Services`) } \"\n isSearchable=${false}\n options=${[{\"label\":\"Water Gardening\",\"value\":\"value-1\",\"isDisabled\":false},{\"label\":\"Lawn Maintenance\",\"value\":\"value-2\",\"isDisabled\":false},{\"label\":\"Cutting Leaf\",\"value\":\"value-3\",\"isDisabled\":false},{\"label\":\"Landscaping Design\",\"value\":\"value-4\",\"isDisabled\":false},{\"label\":\"Lawn Cleaning\",\"value\":\"value-5\",\"isDisabled\":false}]}\n value=${parent.getValue(\"mf-select\") ? [{\"label\":\"Water Gardening\",\"value\":\"value-1\",\"isDisabled\":false},{\"label\":\"Lawn Maintenance\",\"value\":\"value-2\",\"isDisabled\":false},{\"label\":\"Cutting Leaf\",\"value\":\"value-3\",\"isDisabled\":false},{\"label\":\"Landscaping Design\",\"value\":\"value-4\",\"isDisabled\":false},{\"label\":\"Lawn Cleaning\",\"value\":\"value-5\",\"isDisabled\":false}].filter(item => item.value === parent.getValue(\"mf-select\"))[0] : []}\n onChange=${(e)=> parent.handleSelect(e, \"mf-select\")}\n ref=${() => {\n register({ name: \"mf-select\" }, parent.activateValidation({\"message\":\"This field is required.\",\"minLength\":1,\"maxLength\":\"\",\"type\":\"none\",\"required\":false}));\n if ( parent.getValue(\"mf-select\") === \'\' && false ) {\n parent.setValue( \'mf-select\', \'\', true );\n parent.handleChange({\n target: {\n name: \'mf-select\',\n value: \'\'\n }\n });\n }\n }}\n />\n <${validation.ErrorMessage}\n errors=${validation.errors}\n name=\"mf-select\"\n as=${html``}\n />\n \n <${validation.ErrorMessage}\n errors=${validation.errors}\n name=\"mf-comment\"\n as=${html``}\n />\n ','MetForm Appointment','','inherit','closed','closed','','169-revision-v1','','','2024-07-24 14:13:55','2024-07-24 14:13:55','',169,'https://victor-quintero.designsfunnelserver.com/?p=170',0,'revision','',0),(171,1,'2024-07-24 14:14:00','2024-07-24 14:14:00','

Complete For All Landscape Service And Maintenance

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation \n \n Contact Us\n \n \n \n Watch Intro\n \n
About Prestige Luxury Cleanings LLC
\n

We Provide Landscaping And Garden Care Services

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit \n \"gardener-and-his-flowers.jpg\" \n
    \n
  • \n Public Liability Insurance\n
  • \n
  • \n Environmentally Friendly\n
  • \n
  • \n On Time, Every Time\n
  • \n
  • \n Beautiful Garden Designs\n
  • \n
  • \n Modern Machinery And Tool\n
  • \n
\n \n More About Us\n \n \"gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w\" \n \"gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68\" \n 0\n +\n Projects Completed\n \n
Why Choose Us
\n

We Have The Perfect Solution For Your Landscape Problems

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation \n

Variation Gardening

Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

\n

Expert Landscapers

Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

\n

Affordable Price

Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

\n

Free Consultation

Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

\n
Our Services
\n

Find The Best Service For Your Garden

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n

Lawn Services

Lorem ipsum dolor sit amet \n \n

Driveway Pressure Washing

Lorem ipsum dolor sit amet \n \n

Deck Pressure Washing

Lorem ipsum dolor sit amet \n \n

Weed Control

Lorem ipsum dolor sit amet \n \n

Grass Feed

Lorem ipsum dolor sit amet \n \n

Edging Cleaning

Lorem ipsum dolor sit amet \n \n
Best Landscaping
\n

Need Someone To Take Care Your Garden & Lawn?

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

Make Appointment & Take Care Your Garden

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore

\n \n
Work Process
\n

We Complete Every Step Carefully

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n

\n Start Consultation \n

\n 01 \n

\n Design Installation \n

\n 02 \n

\n Start Consturction \n

\n 03 \n

\n Finished Work \n

\n 04 \n 0\n +\n Years of Experience\n 0\n +\n Projects Completed\n 0\n +\n Happy Customers\n 0\n +\n Expert Landscapers\n
Our Projects
\n

Project We Have Done\n

\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n All Projects\n \n \"Cutting\n

Cutting Leaf

\n

\n

Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

\n
    \n \"Home\n

    Home Garden

    \n

    \n

    Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

    \n
      \n \"Build\n

      Build Backyard

      \n

      \n

      Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

      \n
        \n
        Testimonials
        \n

        What They Says About Us

        \n

        Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

        \n
          \n \"Regan\n Regan Traynor\n

          Entrepreneur

          \n

          Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

          \n
            \n \"Maisha\n Maisha Dunn\n

            Entrepreneur

            \n

            Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

            \n
              \n \"Reis\n Reis Leonard\n

              Businessman

              \n
              Our Blog
              \n

              Lates News and Articles

              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n ','Home','','inherit','closed','closed','','24-revision-v1','','','2024-07-24 14:14:00','2024-07-24 14:14:00','',24,'https://victor-quintero.designsfunnelserver.com/?p=171',0,'revision','',0),(172,1,'2024-07-24 14:14:00','2024-07-24 14:14:00','

              Complete For All Landscape Service And Maintenance

              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation \n \n Contact Us\n \n \n \n Watch Intro\n \n
              About Prestige Luxury Cleanings LLC
              \n

              We Provide Landscaping And Garden Care Services

              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit \n \"gardener-and-his-flowers.jpg\" \n
                \n
              • \n Public Liability Insurance\n
              • \n
              • \n Environmentally Friendly\n
              • \n
              • \n On Time, Every Time\n
              • \n
              • \n Beautiful Garden Designs\n
              • \n
              • \n Modern Machinery And Tool\n
              • \n
              \n \n More About Us\n \n \"gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w\" \n \"gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68\" \n 0\n +\n Projects Completed\n \n
              Why Choose Us
              \n

              We Have The Perfect Solution For Your Landscape Problems

              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation \n

              Variation Gardening

              Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

              \n

              Expert Landscapers

              Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

              \n

              Affordable Price

              Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

              \n

              Free Consultation

              Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

              \n
              Our Services
              \n

              Find The Best Service For Your Garden

              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n

              Lawn Services

              Lorem ipsum dolor sit amet \n \n

              Driveway Pressure Washing

              Lorem ipsum dolor sit amet \n \n

              Deck Pressure Washing

              Lorem ipsum dolor sit amet \n \n

              Weed Control

              Lorem ipsum dolor sit amet \n \n

              Grass Feed

              Lorem ipsum dolor sit amet \n \n

              Edging Cleaning

              Lorem ipsum dolor sit amet \n \n
              Best Landscaping
              \n

              Need Someone To Take Care Your Garden & Lawn?

              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

              Make Appointment & Take Care Your Garden

              Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore

              \n \n
              Work Process
              \n

              We Complete Every Step Carefully

              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n

              \n Start Consultation \n

              \n 01 \n

              \n Design Installation \n

              \n 02 \n

              \n Start Consturction \n

              \n 03 \n

              \n Finished Work \n

              \n 04 \n 0\n +\n Years of Experience\n 0\n +\n Projects Completed\n 0\n +\n Happy Customers\n 0\n +\n Expert Landscapers\n
              Our Projects
              \n

              Project We Have Done\n

              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n All Projects\n \n \"Cutting\n

              Cutting Leaf

              \n

              \n

              Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

              \n
                \n \"Home\n

                Home Garden

                \n

                \n

                Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                \n
                  \n \"Build\n

                  Build Backyard

                  \n

                  \n

                  Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                  \n
                    \n
                    Testimonials
                    \n

                    What They Says About Us

                    \n

                    Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                    \n
                      \n \"Regan\n Regan Traynor\n

                      Entrepreneur

                      \n

                      Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                      \n
                        \n \"Maisha\n Maisha Dunn\n

                        Entrepreneur

                        \n

                        Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                        \n
                          \n \"Reis\n Reis Leonard\n

                          Businessman

                          \n
                          Our Blog
                          \n

                          Lates News and Articles

                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n ','Home','','inherit','closed','closed','','24-revision-v1','','','2024-07-24 14:14:00','2024-07-24 14:14:00','',24,'https://victor-quintero.designsfunnelserver.com/?p=172',0,'revision','',0),(173,1,'2024-07-24 14:14:01','2024-07-24 14:14:01','

                          Complete For All Landscape Service And Maintenance

                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation \n \n Contact Us\n \n \n \n Watch Intro\n \n
                          About Prestige Luxury Cleanings LLC
                          \n

                          We Provide Landscaping And Garden Care Services

                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit \n \"gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk\" \n
                            \n
                          • \n Public Liability Insurance\n
                          • \n
                          • \n Environmentally Friendly\n
                          • \n
                          • \n On Time, Every Time\n
                          • \n
                          • \n Beautiful Garden Designs\n
                          • \n
                          • \n Modern Machinery And Tool\n
                          • \n
                          \n \n More About Us\n \n \"gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w\" \n \"gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68\" \n 0\n +\n Projects Completed\n \n
                          Why Choose Us
                          \n

                          We Have The Perfect Solution For Your Landscape Problems

                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation \n

                          Variation Gardening

                          Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                          \n

                          Expert Landscapers

                          Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                          \n

                          Affordable Price

                          Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                          \n

                          Free Consultation

                          Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                          \n
                          Our Services
                          \n

                          Find The Best Service For Your Garden

                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n

                          Lawn Services

                          Lorem ipsum dolor sit amet \n \n

                          Driveway Pressure Washing

                          Lorem ipsum dolor sit amet \n \n

                          Deck Pressure Washing

                          Lorem ipsum dolor sit amet \n \n

                          Weed Control

                          Lorem ipsum dolor sit amet \n \n

                          Grass Feed

                          Lorem ipsum dolor sit amet \n \n

                          Edging Cleaning

                          Lorem ipsum dolor sit amet \n \n
                          Best Landscaping
                          \n

                          Need Someone To Take Care Your Garden & Lawn?

                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

                          Make Appointment & Take Care Your Garden

                          Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore

                          \n \n
                          Work Process
                          \n

                          We Complete Every Step Carefully

                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n

                          \n Start Consultation \n

                          \n 01 \n

                          \n Design Installation \n

                          \n 02 \n

                          \n Start Consturction \n

                          \n 03 \n

                          \n Finished Work \n

                          \n 04 \n 0\n +\n Years of Experience\n 0\n +\n Projects Completed\n 0\n +\n Happy Customers\n 0\n +\n Expert Landscapers\n
                          Our Projects
                          \n

                          Project We Have Done\n

                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n All Projects\n \n \"Cutting\n

                          Cutting Leaf

                          \n

                          \n

                          Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                          \n
                            \n \"Home\n

                            Home Garden

                            \n

                            \n

                            Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                            \n
                              \n \"Build\n

                              Build Backyard

                              \n

                              \n

                              Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                              \n
                                \n
                                Testimonials
                                \n

                                What They Says About Us

                                \n

                                Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                \n
                                  \n \"Regan\n Regan Traynor\n

                                  Entrepreneur

                                  \n

                                  Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                  \n
                                    \n \"Maisha\n Maisha Dunn\n

                                    Entrepreneur

                                    \n

                                    Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                    \n
                                      \n \"Reis\n Reis Leonard\n

                                      Businessman

                                      \n
                                      Our Blog
                                      \n

                                      Lates News and Articles

                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n ','Home','','inherit','closed','closed','','24-revision-v1','','','2024-07-24 14:14:01','2024-07-24 14:14:01','',24,'https://victor-quintero.designsfunnelserver.com/?p=173',0,'revision','',0),(174,1,'2024-07-24 14:14:21','2024-07-24 14:14:21','','garden-maintenance-performed-by-pro-gardener','','inherit','open','closed','','garden-maintenance-performed-by-pro-gardener','','','2024-07-24 14:14:21','2024-07-24 14:14:21','',24,'https://victor-quintero.designsfunnelserver.com/wp-content/uploads/2024/07/garden-maintenance-performed-by-pro-gardener-1.jpg',0,'attachment','image/jpeg',0); INSERT INTO `victorq_posts` VALUES (175,1,'2024-07-24 14:14:33','2024-07-24 14:14:33','

                                      Complete For All Landscape Service And Maintenance

                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation \n \n Contact Us\n \n \n \n Watch Intro\n \n
                                      About Prestige Luxury Cleanings LLC
                                      \n

                                      We Provide Landscaping And Garden Care Services

                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit \n \"gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk\" \n
                                        \n
                                      • \n Public Liability Insurance\n
                                      • \n
                                      • \n Environmentally Friendly\n
                                      • \n
                                      • \n On Time, Every Time\n
                                      • \n
                                      • \n Beautiful Garden Designs\n
                                      • \n
                                      • \n Modern Machinery And Tool\n
                                      • \n
                                      \n \n More About Us\n \n \"gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w\" \n \"gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68\" \n 0\n +\n Projects Completed\n \n
                                      Why Choose Us
                                      \n

                                      We Have The Perfect Solution For Your Landscape Problems

                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation \n

                                      Variation Gardening

                                      Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                      \n

                                      Expert Landscapers

                                      Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                      \n

                                      Affordable Price

                                      Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                      \n

                                      Free Consultation

                                      Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                      \n
                                      Our Services
                                      \n

                                      Find The Best Service For Your Garden

                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n

                                      Lawn Services

                                      Lorem ipsum dolor sit amet \n \n

                                      Driveway Pressure Washing

                                      Lorem ipsum dolor sit amet \n \n

                                      Deck Pressure Washing

                                      Lorem ipsum dolor sit amet \n \n

                                      Weed Control

                                      Lorem ipsum dolor sit amet \n \n

                                      Grass Feed

                                      Lorem ipsum dolor sit amet \n \n

                                      Edging Cleaning

                                      Lorem ipsum dolor sit amet \n \n
                                      Best Landscaping
                                      \n

                                      Need Someone To Take Care Your Garden & Lawn?

                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

                                      Make Appointment & Take Care Your Garden

                                      Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                      \n \n
                                      Work Process
                                      \n

                                      We Complete Every Step Carefully

                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n

                                      \n Start Consultation \n

                                      \n 01 \n

                                      \n Design Installation \n

                                      \n 02 \n

                                      \n Start Consturction \n

                                      \n 03 \n

                                      \n Finished Work \n

                                      \n 04 \n 0\n +\n Years of Experience\n 0\n +\n Projects Completed\n 0\n +\n Happy Customers\n 0\n +\n Expert Landscapers\n
                                      Our Projects
                                      \n

                                      Project We Have Done\n

                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n All Projects\n \n \"Cutting\n

                                      Cutting Leaf

                                      \n

                                      \n

                                      Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                      \n
                                        \n \"Home\n

                                        Home Garden

                                        \n

                                        \n

                                        Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                        \n
                                          \n \"Build\n

                                          Build Backyard

                                          \n

                                          \n

                                          Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                          \n
                                            \n
                                            Testimonials
                                            \n

                                            What They Says About Us

                                            \n

                                            Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                            \n
                                              \n \"Regan\n Regan Traynor\n

                                              Entrepreneur

                                              \n

                                              Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                              \n
                                                \n \"Maisha\n Maisha Dunn\n

                                                Entrepreneur

                                                \n

                                                Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                \n
                                                  \n \"Reis\n Reis Leonard\n

                                                  Businessman

                                                  \n
                                                  Our Blog
                                                  \n

                                                  Lates News and Articles

                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n ','Home','','inherit','closed','closed','','24-revision-v1','','','2024-07-24 14:14:33','2024-07-24 14:14:33','',24,'https://victor-quintero.designsfunnelserver.com/?p=175',0,'revision','',0),(176,1,'2024-07-24 14:14:33','2024-07-24 14:14:33','

                                                  Complete For All Landscape Service And Maintenance

                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation \n \n Contact Us\n \n \n \n Watch Intro\n \n
                                                  About Prestige Luxury Cleanings LLC
                                                  \n

                                                  We Provide Landscaping And Garden Care Services

                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit \n \"gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk\" \n
                                                    \n
                                                  • \n Public Liability Insurance\n
                                                  • \n
                                                  • \n Environmentally Friendly\n
                                                  • \n
                                                  • \n On Time, Every Time\n
                                                  • \n
                                                  • \n Beautiful Garden Designs\n
                                                  • \n
                                                  • \n Modern Machinery And Tool\n
                                                  • \n
                                                  \n \n More About Us\n \n \"gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w\" \n \"gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68\" \n 0\n +\n Projects Completed\n \n
                                                  Why Choose Us
                                                  \n

                                                  We Have The Perfect Solution For Your Landscape Problems

                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation \n

                                                  Variation Gardening

                                                  Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                  \n

                                                  Expert Landscapers

                                                  Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                  \n

                                                  Affordable Price

                                                  Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                  \n

                                                  Free Consultation

                                                  Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                  \n
                                                  Our Services
                                                  \n

                                                  Find The Best Service For Your Garden

                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n

                                                  Lawn Services

                                                  Lorem ipsum dolor sit amet \n \n

                                                  Driveway Pressure Washing

                                                  Lorem ipsum dolor sit amet \n \n

                                                  Deck Pressure Washing

                                                  Lorem ipsum dolor sit amet \n \n

                                                  Weed Control

                                                  Lorem ipsum dolor sit amet \n \n

                                                  Grass Feed

                                                  Lorem ipsum dolor sit amet \n \n

                                                  Edging Cleaning

                                                  Lorem ipsum dolor sit amet \n \n
                                                  Best Landscaping
                                                  \n

                                                  Need Someone To Take Care Your Garden & Lawn?

                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

                                                  Make Appointment & Take Care Your Garden

                                                  Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                  \n \n
                                                  Work Process
                                                  \n

                                                  We Complete Every Step Carefully

                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n

                                                  \n Start Consultation \n

                                                  \n 01 \n

                                                  \n Design Installation \n

                                                  \n 02 \n

                                                  \n Start Consturction \n

                                                  \n 03 \n

                                                  \n Finished Work \n

                                                  \n 04 \n 0\n +\n Years of Experience\n 0\n +\n Projects Completed\n 0\n +\n Happy Customers\n 0\n +\n Expert Landscapers\n
                                                  Our Projects
                                                  \n

                                                  Project We Have Done\n

                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n All Projects\n \n \"Cutting\n

                                                  Cutting Leaf

                                                  \n

                                                  \n

                                                  Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                  \n
                                                    \n \"Home\n

                                                    Home Garden

                                                    \n

                                                    \n

                                                    Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                    \n
                                                      \n \"Build\n

                                                      Build Backyard

                                                      \n

                                                      \n

                                                      Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                      \n
                                                        \n
                                                        Testimonials
                                                        \n

                                                        What They Says About Us

                                                        \n

                                                        Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                        \n
                                                          \n \"Regan\n Regan Traynor\n

                                                          Entrepreneur

                                                          \n

                                                          Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                          \n
                                                            \n \"Maisha\n Maisha Dunn\n

                                                            Entrepreneur

                                                            \n

                                                            Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                            \n
                                                              \n \"Reis\n Reis Leonard\n

                                                              Businessman

                                                              \n
                                                              Our Blog
                                                              \n

                                                              Lates News and Articles

                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n ','Home','','inherit','closed','closed','','24-revision-v1','','','2024-07-24 14:14:33','2024-07-24 14:14:33','',24,'https://victor-quintero.designsfunnelserver.com/?p=176',0,'revision','',0),(177,1,'2024-07-24 14:14:33','2024-07-24 14:14:33','

                                                              Complete For All Landscape Service And Maintenance

                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation \n \n Contact Us\n \n \n \n Watch Intro\n \n
                                                              About Prestige Luxury Cleanings LLC
                                                              \n

                                                              We Provide Landscaping And Garden Care Services

                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit \n \"gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk\" \n
                                                                \n
                                                              • \n Public Liability Insurance\n
                                                              • \n
                                                              • \n Environmentally Friendly\n
                                                              • \n
                                                              • \n On Time, Every Time\n
                                                              • \n
                                                              • \n Beautiful Garden Designs\n
                                                              • \n
                                                              • \n Modern Machinery And Tool\n
                                                              • \n
                                                              \n \n More About Us\n \n \"gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w\" \n \"gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68\" \n 0\n +\n Projects Completed\n \n
                                                              Why Choose Us
                                                              \n

                                                              We Have The Perfect Solution For Your Landscape Problems

                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation \n

                                                              Variation Gardening

                                                              Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                              \n

                                                              Expert Landscapers

                                                              Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                              \n

                                                              Affordable Price

                                                              Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                              \n

                                                              Free Consultation

                                                              Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                              \n
                                                              Our Services
                                                              \n

                                                              Find The Best Service For Your Garden

                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n

                                                              Lawn Services

                                                              Lorem ipsum dolor sit amet \n \n

                                                              Driveway Pressure Washing

                                                              Lorem ipsum dolor sit amet \n \n

                                                              Deck Pressure Washing

                                                              Lorem ipsum dolor sit amet \n \n

                                                              Weed Control

                                                              Lorem ipsum dolor sit amet \n \n

                                                              Grass Feed

                                                              Lorem ipsum dolor sit amet \n \n

                                                              Edging Cleaning

                                                              Lorem ipsum dolor sit amet \n \n
                                                              Best Landscaping
                                                              \n

                                                              Need Someone To Take Care Your Garden & Lawn?

                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

                                                              Make Appointment & Take Care Your Garden

                                                              Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                              \n \n
                                                              Work Process
                                                              \n

                                                              We Complete Every Step Carefully

                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n

                                                              \n Start Consultation \n

                                                              \n 01 \n

                                                              \n Design Installation \n

                                                              \n 02 \n

                                                              \n Start Consturction \n

                                                              \n 03 \n

                                                              \n Finished Work \n

                                                              \n 04 \n 0\n +\n Years of Experience\n 0\n +\n Projects Completed\n 0\n +\n Happy Customers\n 0\n +\n Expert Landscapers\n
                                                              Our Projects
                                                              \n

                                                              Project We Have Done\n

                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n All Projects\n \n \"Cutting\n

                                                              Cutting Leaf

                                                              \n

                                                              \n

                                                              Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                              \n
                                                                \n \"Home\n

                                                                Home Garden

                                                                \n

                                                                \n

                                                                Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                \n
                                                                  \n \"Build\n

                                                                  Build Backyard

                                                                  \n

                                                                  \n

                                                                  Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                  \n
                                                                    \n
                                                                    Testimonials
                                                                    \n

                                                                    What They Says About Us

                                                                    \n

                                                                    Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                    \n
                                                                      \n \"Regan\n Regan Traynor\n

                                                                      Entrepreneur

                                                                      \n

                                                                      Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                      \n
                                                                        \n \"Maisha\n Maisha Dunn\n

                                                                        Entrepreneur

                                                                        \n

                                                                        Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                        \n
                                                                          \n \"Reis\n Reis Leonard\n

                                                                          Businessman

                                                                          \n
                                                                          Our Blog
                                                                          \n

                                                                          Lates News and Articles

                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n ','Home','','inherit','closed','closed','','24-revision-v1','','','2024-07-24 14:14:33','2024-07-24 14:14:33','',24,'https://victor-quintero.designsfunnelserver.com/?p=177',0,'revision','',0),(178,1,'2024-07-24 14:18:30','2024-07-24 14:18:30','{\n parent.activateValidation({\"message\":\"This field is required.\",\"minLength\":1,\"maxLength\":\"\",\"type\":\"none\",\"required\":false,\"expression\":\"null\"}, el)\n }}\n />\n <${validation.ErrorMessage}\n errors=${validation.errors}\n name=\"mf-first-name\"\n as=${html``}\n />\n parent.activateValidation({\"message\":\"This field is required.\",\"emailMessage\":\"Please enter a valid Email address\",\"minLength\":1,\"maxLength\":\"\",\"type\":\"none\",\"required\":false,\"expression\":\"null\"}, el)}\n />\n <${validation.ErrorMessage} \n errors=${validation.errors} \n name=\"mf-email\" \n as=${html``}\n />\n parent.activateValidation({\"message\":\"This field is required.\",\"minLength\":1,\"maxLength\":\"\",\"type\":\"none\",\"required\":false,\"expression\":\"null\"}, el)}\n />\n <${validation.ErrorMessage}\n errors=${validation.errors}\n name=\"mf-telephone\"\n as=${html``}\n />\n <${props.Flatpickr}\n name=\"mf-date\"\n className=\"mf-input mf-date-input mf-left-parent \"\n placeholder=\"${ parent.decodeEntities(`Date`) } \"\n options=${{\"minDate\":\"\",\"maxDate\":\"\",\"dateFormat\":\"m-d-Y\",\"enableTime\":\"\",\"disable\":[],\"mode\":\"single\",\"static\":true,\"disableMobile\":true,\"time_24hr\":false}}\n value=${parent.getValue(\'mf-date\')}\n onInput=${parent.handleDateTime}\n aria-invalid=${validation.errors[\'mf-date\'] ? \'true\' : \'false\'}\n ref=${el => props.DateWidget(\n el, \n \'\', \n {\"message\":\"This field is required.\",\"required\":false}, \n register, \n parent \n )}\n />\n <${validation.ErrorMessage}\n errors=${validation.errors}\n name=\"mf-date\"\n as=${html``}\n />\n <${props.Select}\n className=${\"mf-input mf-input-select \" + ( validation.errors[\'mf-select\'] ? \'mf-invalid\' : \'\' )}\n classNamePrefix=\"mf_select\"\n name=\"mf-select\"\n placeholder=\"${ parent.decodeEntities(`Select Services`) } \"\n isSearchable=${false}\n options=${[{\"label\":\"Water Gardening\",\"value\":\"value-1\",\"isDisabled\":false},{\"label\":\"Lawn Maintenance\",\"value\":\"value-2\",\"isDisabled\":false},{\"label\":\"Cutting Leaf\",\"value\":\"value-3\",\"isDisabled\":false},{\"label\":\"Landscaping Design\",\"value\":\"value-4\",\"isDisabled\":false},{\"label\":\"Lawn Cleaning\",\"value\":\"value-5\",\"isDisabled\":false}]}\n value=${parent.getValue(\"mf-select\") ? [{\"label\":\"Water Gardening\",\"value\":\"value-1\",\"isDisabled\":false},{\"label\":\"Lawn Maintenance\",\"value\":\"value-2\",\"isDisabled\":false},{\"label\":\"Cutting Leaf\",\"value\":\"value-3\",\"isDisabled\":false},{\"label\":\"Landscaping Design\",\"value\":\"value-4\",\"isDisabled\":false},{\"label\":\"Lawn Cleaning\",\"value\":\"value-5\",\"isDisabled\":false}].filter(item => item.value === parent.getValue(\"mf-select\"))[0] : []}\n onChange=${(e)=> parent.handleSelect(e, \"mf-select\")}\n ref=${() => {\n register({ name: \"mf-select\" }, parent.activateValidation({\"message\":\"This field is required.\",\"minLength\":1,\"maxLength\":\"\",\"type\":\"none\",\"required\":false}));\n if ( parent.getValue(\"mf-select\") === \'\' && false ) {\n parent.setValue( \'mf-select\', \'\', true );\n parent.handleChange({\n target: {\n name: \'mf-select\',\n value: \'\'\n }\n });\n }\n }}\n />\n <${validation.ErrorMessage}\n errors=${validation.errors}\n name=\"mf-select\"\n as=${html``}\n />\n \n <${validation.ErrorMessage}\n errors=${validation.errors}\n name=\"mf-comment\"\n as=${html``}\n />\n ','Appointment Form','','publish','closed','closed','','appointment-form','','','2024-07-24 14:19:54','2024-07-24 14:19:54','',0,'https://victor-quintero.designsfunnelserver.com/metform-form/appointment-form/',0,'metform-form','',0),(180,1,'2024-07-24 14:19:54','2024-07-24 14:19:54','','Appointment Form','','inherit','closed','closed','','178-revision-v1','','','2024-07-24 14:19:54','2024-07-24 14:19:54','',178,'https://victor-quintero.designsfunnelserver.com/?p=180',0,'revision','',0),(181,1,'2024-07-24 14:19:54','2024-07-24 14:19:54','','Appointment Form','','inherit','closed','closed','','178-revision-v1','','','2024-07-24 14:19:54','2024-07-24 14:19:54','',178,'https://victor-quintero.designsfunnelserver.com/?p=181',0,'revision','',0),(182,1,'2024-07-24 14:19:54','2024-07-24 14:19:54','{\n parent.activateValidation({\"message\":\"This field is required.\",\"minLength\":1,\"maxLength\":\"\",\"type\":\"none\",\"required\":false,\"expression\":\"null\"}, el)\n }}\n />\n <${validation.ErrorMessage}\n errors=${validation.errors}\n name=\"mf-first-name\"\n as=${html``}\n />\n parent.activateValidation({\"message\":\"This field is required.\",\"emailMessage\":\"Please enter a valid Email address\",\"minLength\":1,\"maxLength\":\"\",\"type\":\"none\",\"required\":false,\"expression\":\"null\"}, el)}\n />\n <${validation.ErrorMessage} \n errors=${validation.errors} \n name=\"mf-email\" \n as=${html``}\n />\n parent.activateValidation({\"message\":\"This field is required.\",\"minLength\":1,\"maxLength\":\"\",\"type\":\"none\",\"required\":false,\"expression\":\"null\"}, el)}\n />\n <${validation.ErrorMessage}\n errors=${validation.errors}\n name=\"mf-telephone\"\n as=${html``}\n />\n <${props.Flatpickr}\n name=\"mf-date\"\n className=\"mf-input mf-date-input mf-left-parent \"\n placeholder=\"${ parent.decodeEntities(`Date`) } \"\n options=${{\"minDate\":\"\",\"maxDate\":\"\",\"dateFormat\":\"m-d-Y\",\"enableTime\":\"\",\"disable\":[],\"mode\":\"single\",\"static\":true,\"disableMobile\":true,\"time_24hr\":false}}\n value=${parent.getValue(\'mf-date\')}\n onInput=${parent.handleDateTime}\n aria-invalid=${validation.errors[\'mf-date\'] ? \'true\' : \'false\'}\n ref=${el => props.DateWidget(\n el, \n \'\', \n {\"message\":\"This field is required.\",\"required\":false}, \n register, \n parent \n )}\n />\n <${validation.ErrorMessage}\n errors=${validation.errors}\n name=\"mf-date\"\n as=${html``}\n />\n <${props.Select}\n className=${\"mf-input mf-input-select \" + ( validation.errors[\'mf-select\'] ? \'mf-invalid\' : \'\' )}\n classNamePrefix=\"mf_select\"\n name=\"mf-select\"\n placeholder=\"${ parent.decodeEntities(`Select Services`) } \"\n isSearchable=${false}\n options=${[{\"label\":\"Water Gardening\",\"value\":\"value-1\",\"isDisabled\":false},{\"label\":\"Lawn Maintenance\",\"value\":\"value-2\",\"isDisabled\":false},{\"label\":\"Cutting Leaf\",\"value\":\"value-3\",\"isDisabled\":false},{\"label\":\"Landscaping Design\",\"value\":\"value-4\",\"isDisabled\":false},{\"label\":\"Lawn Cleaning\",\"value\":\"value-5\",\"isDisabled\":false}]}\n value=${parent.getValue(\"mf-select\") ? [{\"label\":\"Water Gardening\",\"value\":\"value-1\",\"isDisabled\":false},{\"label\":\"Lawn Maintenance\",\"value\":\"value-2\",\"isDisabled\":false},{\"label\":\"Cutting Leaf\",\"value\":\"value-3\",\"isDisabled\":false},{\"label\":\"Landscaping Design\",\"value\":\"value-4\",\"isDisabled\":false},{\"label\":\"Lawn Cleaning\",\"value\":\"value-5\",\"isDisabled\":false}].filter(item => item.value === parent.getValue(\"mf-select\"))[0] : []}\n onChange=${(e)=> parent.handleSelect(e, \"mf-select\")}\n ref=${() => {\n register({ name: \"mf-select\" }, parent.activateValidation({\"message\":\"This field is required.\",\"minLength\":1,\"maxLength\":\"\",\"type\":\"none\",\"required\":false}));\n if ( parent.getValue(\"mf-select\") === \'\' && false ) {\n parent.setValue( \'mf-select\', \'\', true );\n parent.handleChange({\n target: {\n name: \'mf-select\',\n value: \'\'\n }\n });\n }\n }}\n />\n <${validation.ErrorMessage}\n errors=${validation.errors}\n name=\"mf-select\"\n as=${html``}\n />\n \n <${validation.ErrorMessage}\n errors=${validation.errors}\n name=\"mf-comment\"\n as=${html``}\n />\n ','Appointment Form','','inherit','closed','closed','','178-revision-v1','','','2024-07-24 14:19:54','2024-07-24 14:19:54','',178,'https://victor-quintero.designsfunnelserver.com/?p=182',0,'revision','',0),(183,1,'2024-07-24 14:20:05','2024-07-24 14:20:05','

                                                                          Complete For All Landscape Service And Maintenance

                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation \n \n Contact Us\n \n \n \n Watch Intro\n \n
                                                                          About Prestige Luxury Cleanings LLC
                                                                          \n

                                                                          We Provide Landscaping And Garden Care Services

                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit \n \"gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk\" \n
                                                                            \n
                                                                          • \n Public Liability Insurance\n
                                                                          • \n
                                                                          • \n Environmentally Friendly\n
                                                                          • \n
                                                                          • \n On Time, Every Time\n
                                                                          • \n
                                                                          • \n Beautiful Garden Designs\n
                                                                          • \n
                                                                          • \n Modern Machinery And Tool\n
                                                                          • \n
                                                                          \n \n More About Us\n \n \"gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w\" \n \"gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68\" \n 0\n +\n Projects Completed\n \n
                                                                          Why Choose Us
                                                                          \n

                                                                          We Have The Perfect Solution For Your Landscape Problems

                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation \n

                                                                          Variation Gardening

                                                                          Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                          \n

                                                                          Expert Landscapers

                                                                          Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                          \n

                                                                          Affordable Price

                                                                          Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                          \n

                                                                          Free Consultation

                                                                          Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                          \n
                                                                          Our Services
                                                                          \n

                                                                          Find The Best Service For Your Garden

                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n

                                                                          Lawn Services

                                                                          Lorem ipsum dolor sit amet \n \n

                                                                          Driveway Pressure Washing

                                                                          Lorem ipsum dolor sit amet \n \n

                                                                          Deck Pressure Washing

                                                                          Lorem ipsum dolor sit amet \n \n

                                                                          Weed Control

                                                                          Lorem ipsum dolor sit amet \n \n

                                                                          Grass Feed

                                                                          Lorem ipsum dolor sit amet \n \n

                                                                          Edging Cleaning

                                                                          Lorem ipsum dolor sit amet \n \n
                                                                          Best Landscaping
                                                                          \n

                                                                          Need Someone To Take Care Your Garden & Lawn?

                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

                                                                          Make Appointment & Take Care Your Garden

                                                                          Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                          \n \n
                                                                          Work Process
                                                                          \n

                                                                          We Complete Every Step Carefully

                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n

                                                                          \n Start Consultation \n

                                                                          \n 01 \n

                                                                          \n Design Installation \n

                                                                          \n 02 \n

                                                                          \n Start Consturction \n

                                                                          \n 03 \n

                                                                          \n Finished Work \n

                                                                          \n 04 \n 0\n +\n Years of Experience\n 0\n +\n Projects Completed\n 0\n +\n Happy Customers\n 0\n +\n Expert Landscapers\n
                                                                          Our Projects
                                                                          \n

                                                                          Project We Have Done\n

                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n All Projects\n \n \"Cutting\n

                                                                          Cutting Leaf

                                                                          \n

                                                                          \n

                                                                          Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                          \n
                                                                            \n \"Home\n

                                                                            Home Garden

                                                                            \n

                                                                            \n

                                                                            Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                            \n
                                                                              \n \"Build\n

                                                                              Build Backyard

                                                                              \n

                                                                              \n

                                                                              Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                              \n
                                                                                \n
                                                                                Testimonials
                                                                                \n

                                                                                What They Says About Us

                                                                                \n

                                                                                Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                \n
                                                                                  \n \"Regan\n Regan Traynor\n

                                                                                  Entrepreneur

                                                                                  \n

                                                                                  Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                  \n
                                                                                    \n \"Maisha\n Maisha Dunn\n

                                                                                    Entrepreneur

                                                                                    \n

                                                                                    Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                    \n
                                                                                      \n \"Reis\n Reis Leonard\n

                                                                                      Businessman

                                                                                      \n
                                                                                      Our Blog
                                                                                      \n

                                                                                      Lates News and Articles

                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n ','Home','','inherit','closed','closed','','24-revision-v1','','','2024-07-24 14:20:05','2024-07-24 14:20:05','',24,'https://victor-quintero.designsfunnelserver.com/?p=183',0,'revision','',0),(184,1,'2024-07-24 14:20:05','2024-07-24 14:20:05','

                                                                                      Complete For All Landscape Service And Maintenance

                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation \n \n Contact Us\n \n \n \n Watch Intro\n \n
                                                                                      About Prestige Luxury Cleanings LLC
                                                                                      \n

                                                                                      We Provide Landscaping And Garden Care Services

                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit \n \"gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk\" \n
                                                                                        \n
                                                                                      • \n Public Liability Insurance\n
                                                                                      • \n
                                                                                      • \n Environmentally Friendly\n
                                                                                      • \n
                                                                                      • \n On Time, Every Time\n
                                                                                      • \n
                                                                                      • \n Beautiful Garden Designs\n
                                                                                      • \n
                                                                                      • \n Modern Machinery And Tool\n
                                                                                      • \n
                                                                                      \n \n More About Us\n \n \"gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w\" \n \"gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68\" \n 0\n +\n Projects Completed\n \n
                                                                                      Why Choose Us
                                                                                      \n

                                                                                      We Have The Perfect Solution For Your Landscape Problems

                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation \n

                                                                                      Variation Gardening

                                                                                      Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                      \n

                                                                                      Expert Landscapers

                                                                                      Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                      \n

                                                                                      Affordable Price

                                                                                      Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                      \n

                                                                                      Free Consultation

                                                                                      Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                      \n
                                                                                      Our Services
                                                                                      \n

                                                                                      Find The Best Service For Your Garden

                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n

                                                                                      Lawn Services

                                                                                      Lorem ipsum dolor sit amet \n \n

                                                                                      Driveway Pressure Washing

                                                                                      Lorem ipsum dolor sit amet \n \n

                                                                                      Deck Pressure Washing

                                                                                      Lorem ipsum dolor sit amet \n \n

                                                                                      Weed Control

                                                                                      Lorem ipsum dolor sit amet \n \n

                                                                                      Grass Feed

                                                                                      Lorem ipsum dolor sit amet \n \n

                                                                                      Edging Cleaning

                                                                                      Lorem ipsum dolor sit amet \n \n
                                                                                      Best Landscaping
                                                                                      \n

                                                                                      Need Someone To Take Care Your Garden & Lawn?

                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

                                                                                      Make Appointment & Take Care Your Garden

                                                                                      Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                      \n \n
                                                                                      Work Process
                                                                                      \n

                                                                                      We Complete Every Step Carefully

                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n

                                                                                      \n Start Consultation \n

                                                                                      \n 01 \n

                                                                                      \n Design Installation \n

                                                                                      \n 02 \n

                                                                                      \n Start Consturction \n

                                                                                      \n 03 \n

                                                                                      \n Finished Work \n

                                                                                      \n 04 \n 0\n +\n Years of Experience\n 0\n +\n Projects Completed\n 0\n +\n Happy Customers\n 0\n +\n Expert Landscapers\n
                                                                                      Our Projects
                                                                                      \n

                                                                                      Project We Have Done\n

                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n All Projects\n \n \"Cutting\n

                                                                                      Cutting Leaf

                                                                                      \n

                                                                                      \n

                                                                                      Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                      \n
                                                                                        \n \"Home\n

                                                                                        Home Garden

                                                                                        \n

                                                                                        \n

                                                                                        Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                        \n
                                                                                          \n \"Build\n

                                                                                          Build Backyard

                                                                                          \n

                                                                                          \n

                                                                                          Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                          \n
                                                                                            \n
                                                                                            Testimonials
                                                                                            \n

                                                                                            What They Says About Us

                                                                                            \n

                                                                                            Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                            \n
                                                                                              \n \"Regan\n Regan Traynor\n

                                                                                              Entrepreneur

                                                                                              \n

                                                                                              Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                              \n
                                                                                                \n \"Maisha\n Maisha Dunn\n

                                                                                                Entrepreneur

                                                                                                \n

                                                                                                Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                \n
                                                                                                  \n \"Reis\n Reis Leonard\n

                                                                                                  Businessman

                                                                                                  \n
                                                                                                  Our Blog
                                                                                                  \n

                                                                                                  Lates News and Articles

                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n ','Home','','inherit','closed','closed','','24-revision-v1','','','2024-07-24 14:20:05','2024-07-24 14:20:05','',24,'https://victor-quintero.designsfunnelserver.com/?p=184',0,'revision','',0),(185,1,'2024-07-24 14:20:07','2024-07-24 14:20:07','

                                                                                                  Complete For All Landscape Service And Maintenance

                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation \n \n Contact Us\n \n \n \n Watch Intro\n \n
                                                                                                  About Prestige Luxury Cleanings LLC
                                                                                                  \n

                                                                                                  We Provide Landscaping And Garden Care Services

                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit \n \"gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk\" \n
                                                                                                    \n
                                                                                                  • \n Public Liability Insurance\n
                                                                                                  • \n
                                                                                                  • \n Environmentally Friendly\n
                                                                                                  • \n
                                                                                                  • \n On Time, Every Time\n
                                                                                                  • \n
                                                                                                  • \n Beautiful Garden Designs\n
                                                                                                  • \n
                                                                                                  • \n Modern Machinery And Tool\n
                                                                                                  • \n
                                                                                                  \n \n More About Us\n \n \"gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w\" \n \"gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68\" \n 0\n +\n Projects Completed\n \n
                                                                                                  Why Choose Us
                                                                                                  \n

                                                                                                  We Have The Perfect Solution For Your Landscape Problems

                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation \n

                                                                                                  Variation Gardening

                                                                                                  Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                  \n

                                                                                                  Expert Landscapers

                                                                                                  Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                  \n

                                                                                                  Affordable Price

                                                                                                  Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                  \n

                                                                                                  Free Consultation

                                                                                                  Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                  \n
                                                                                                  Our Services
                                                                                                  \n

                                                                                                  Find The Best Service For Your Garden

                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n

                                                                                                  Lawn Services

                                                                                                  Lorem ipsum dolor sit amet \n \n

                                                                                                  Driveway Pressure Washing

                                                                                                  Lorem ipsum dolor sit amet \n \n

                                                                                                  Deck Pressure Washing

                                                                                                  Lorem ipsum dolor sit amet \n \n

                                                                                                  Weed Control

                                                                                                  Lorem ipsum dolor sit amet \n \n

                                                                                                  Grass Feed

                                                                                                  Lorem ipsum dolor sit amet \n \n

                                                                                                  Edging Cleaning

                                                                                                  Lorem ipsum dolor sit amet \n \n
                                                                                                  Best Landscaping
                                                                                                  \n

                                                                                                  Need Someone To Take Care Your Garden & Lawn?

                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

                                                                                                  Make Appointment & Take Care Your Garden

                                                                                                  Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                  \n \n
                                                                                                  Work Process
                                                                                                  \n

                                                                                                  We Complete Every Step Carefully

                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n

                                                                                                  \n Start Consultation \n

                                                                                                  \n 01 \n

                                                                                                  \n Design Installation \n

                                                                                                  \n 02 \n

                                                                                                  \n Start Consturction \n

                                                                                                  \n 03 \n

                                                                                                  \n Finished Work \n

                                                                                                  \n 04 \n 0\n +\n Years of Experience\n 0\n +\n Projects Completed\n 0\n +\n Happy Customers\n 0\n +\n Expert Landscapers\n
                                                                                                  Our Projects
                                                                                                  \n

                                                                                                  Project We Have Done\n

                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n All Projects\n \n \"Cutting\n

                                                                                                  Cutting Leaf

                                                                                                  \n

                                                                                                  \n

                                                                                                  Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                  \n
                                                                                                    \n \"Home\n

                                                                                                    Home Garden

                                                                                                    \n

                                                                                                    \n

                                                                                                    Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                    \n
                                                                                                      \n \"Build\n

                                                                                                      Build Backyard

                                                                                                      \n

                                                                                                      \n

                                                                                                      Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                      \n
                                                                                                        \n
                                                                                                        Testimonials
                                                                                                        \n

                                                                                                        What They Says About Us

                                                                                                        \n

                                                                                                        Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                        \n
                                                                                                          \n \"Regan\n Regan Traynor\n

                                                                                                          Entrepreneur

                                                                                                          \n

                                                                                                          Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                          \n
                                                                                                            \n \"Maisha\n Maisha Dunn\n

                                                                                                            Entrepreneur

                                                                                                            \n

                                                                                                            Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                            \n
                                                                                                              \n \"Reis\n Reis Leonard\n

                                                                                                              Businessman

                                                                                                              \n
                                                                                                              Our Blog
                                                                                                              \n

                                                                                                              Lates News and Articles

                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n ','Home','','inherit','closed','closed','','24-revision-v1','','','2024-07-24 14:20:07','2024-07-24 14:20:07','',24,'https://victor-quintero.designsfunnelserver.com/?p=185',0,'revision','',0),(186,1,'2024-07-24 14:21:11','2024-07-24 14:21:11','','a-gardener-watering-plants-in-a-flowerbed-2RT8DWL','','inherit','open','closed','','a-gardener-watering-plants-in-a-flowerbed-2rt8dwl','','','2024-07-24 14:21:11','2024-07-24 14:21:11','',24,'https://victor-quintero.designsfunnelserver.com/wp-content/uploads/2024/07/a-gardener-watering-plants-in-a-flowerbed-2RT8DWL-1.jpg',0,'attachment','image/jpeg',0),(187,1,'2024-07-24 14:21:22','2024-07-24 14:21:22','

                                                                                                              Complete For All Landscape Service And Maintenance

                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation \n \n Contact Us\n \n \n \n Watch Intro\n \n
                                                                                                              About Prestige Luxury Cleanings LLC
                                                                                                              \n

                                                                                                              We Provide Landscaping And Garden Care Services

                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit \n \"gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk\" \n
                                                                                                                \n
                                                                                                              • \n Public Liability Insurance\n
                                                                                                              • \n
                                                                                                              • \n Environmentally Friendly\n
                                                                                                              • \n
                                                                                                              • \n On Time, Every Time\n
                                                                                                              • \n
                                                                                                              • \n Beautiful Garden Designs\n
                                                                                                              • \n
                                                                                                              • \n Modern Machinery And Tool\n
                                                                                                              • \n
                                                                                                              \n \n More About Us\n \n \"gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w\" \n \"gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68\" \n 0\n +\n Projects Completed\n \n
                                                                                                              Why Choose Us
                                                                                                              \n

                                                                                                              We Have The Perfect Solution For Your Landscape Problems

                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation \n

                                                                                                              Variation Gardening

                                                                                                              Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                              \n

                                                                                                              Expert Landscapers

                                                                                                              Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                              \n

                                                                                                              Affordable Price

                                                                                                              Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                              \n

                                                                                                              Free Consultation

                                                                                                              Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                              \n
                                                                                                              Our Services
                                                                                                              \n

                                                                                                              Find The Best Service For Your Garden

                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n

                                                                                                              Lawn Services

                                                                                                              Lorem ipsum dolor sit amet \n \n

                                                                                                              Driveway Pressure Washing

                                                                                                              Lorem ipsum dolor sit amet \n \n

                                                                                                              Deck Pressure Washing

                                                                                                              Lorem ipsum dolor sit amet \n \n

                                                                                                              Weed Control

                                                                                                              Lorem ipsum dolor sit amet \n \n

                                                                                                              Grass Feed

                                                                                                              Lorem ipsum dolor sit amet \n \n

                                                                                                              Edging Cleaning

                                                                                                              Lorem ipsum dolor sit amet \n \n
                                                                                                              Best Landscaping
                                                                                                              \n

                                                                                                              Need Someone To Take Care Your Garden & Lawn?

                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

                                                                                                              Make Appointment & Take Care Your Garden

                                                                                                              Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                              \n \n
                                                                                                              Work Process
                                                                                                              \n

                                                                                                              We Complete Every Step Carefully

                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n

                                                                                                              \n Start Consultation \n

                                                                                                              \n 01 \n

                                                                                                              \n Design Installation \n

                                                                                                              \n 02 \n

                                                                                                              \n Start Consturction \n

                                                                                                              \n 03 \n

                                                                                                              \n Finished Work \n

                                                                                                              \n 04 \n 0\n +\n Years of Experience\n 0\n +\n Projects Completed\n 0\n +\n Happy Customers\n 0\n +\n Expert Landscapers\n
                                                                                                              Our Projects
                                                                                                              \n

                                                                                                              Project We Have Done\n

                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n All Projects\n \n \"Cutting\n

                                                                                                              Cutting Leaf

                                                                                                              \n

                                                                                                              \n

                                                                                                              Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                              \n
                                                                                                                \n \"Home\n

                                                                                                                Home Garden

                                                                                                                \n

                                                                                                                \n

                                                                                                                Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                \n
                                                                                                                  \n \"Build\n

                                                                                                                  Build Backyard

                                                                                                                  \n

                                                                                                                  \n

                                                                                                                  Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                  \n
                                                                                                                    \n
                                                                                                                    Testimonials
                                                                                                                    \n

                                                                                                                    What They Says About Us

                                                                                                                    \n

                                                                                                                    Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                    \n
                                                                                                                      \n \"Regan\n Regan Traynor\n

                                                                                                                      Entrepreneur

                                                                                                                      \n

                                                                                                                      Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                      \n
                                                                                                                        \n \"Maisha\n Maisha Dunn\n

                                                                                                                        Entrepreneur

                                                                                                                        \n

                                                                                                                        Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                        \n
                                                                                                                          \n \"Reis\n Reis Leonard\n

                                                                                                                          Businessman

                                                                                                                          \n
                                                                                                                          Our Blog
                                                                                                                          \n

                                                                                                                          Lates News and Articles

                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n ','Home','','inherit','closed','closed','','24-revision-v1','','','2024-07-24 14:21:22','2024-07-24 14:21:22','',24,'https://victor-quintero.designsfunnelserver.com/?p=187',0,'revision','',0),(188,1,'2024-07-24 14:21:23','2024-07-24 14:21:23','

                                                                                                                          Complete For All Landscape Service And Maintenance

                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation \n \n Contact Us\n \n \n \n Watch Intro\n \n
                                                                                                                          About Prestige Luxury Cleanings LLC
                                                                                                                          \n

                                                                                                                          We Provide Landscaping And Garden Care Services

                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit \n \"gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk\" \n
                                                                                                                            \n
                                                                                                                          • \n Public Liability Insurance\n
                                                                                                                          • \n
                                                                                                                          • \n Environmentally Friendly\n
                                                                                                                          • \n
                                                                                                                          • \n On Time, Every Time\n
                                                                                                                          • \n
                                                                                                                          • \n Beautiful Garden Designs\n
                                                                                                                          • \n
                                                                                                                          • \n Modern Machinery And Tool\n
                                                                                                                          • \n
                                                                                                                          \n \n More About Us\n \n \"gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w\" \n \"gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68\" \n 0\n +\n Projects Completed\n \n
                                                                                                                          Why Choose Us
                                                                                                                          \n

                                                                                                                          We Have The Perfect Solution For Your Landscape Problems

                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation \n

                                                                                                                          Variation Gardening

                                                                                                                          Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                          \n

                                                                                                                          Expert Landscapers

                                                                                                                          Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                          \n

                                                                                                                          Affordable Price

                                                                                                                          Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                          \n

                                                                                                                          Free Consultation

                                                                                                                          Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                          \n
                                                                                                                          Our Services
                                                                                                                          \n

                                                                                                                          Find The Best Service For Your Garden

                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n

                                                                                                                          Lawn Services

                                                                                                                          Lorem ipsum dolor sit amet \n \n

                                                                                                                          Driveway Pressure Washing

                                                                                                                          Lorem ipsum dolor sit amet \n \n

                                                                                                                          Deck Pressure Washing

                                                                                                                          Lorem ipsum dolor sit amet \n \n

                                                                                                                          Weed Control

                                                                                                                          Lorem ipsum dolor sit amet \n \n

                                                                                                                          Grass Feed

                                                                                                                          Lorem ipsum dolor sit amet \n \n

                                                                                                                          Edging Cleaning

                                                                                                                          Lorem ipsum dolor sit amet \n \n
                                                                                                                          Best Landscaping
                                                                                                                          \n

                                                                                                                          Need Someone To Take Care Your Garden & Lawn?

                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

                                                                                                                          Make Appointment & Take Care Your Garden

                                                                                                                          Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                          \n \n
                                                                                                                          Work Process
                                                                                                                          \n

                                                                                                                          We Complete Every Step Carefully

                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n

                                                                                                                          \n Start Consultation \n

                                                                                                                          \n 01 \n

                                                                                                                          \n Design Installation \n

                                                                                                                          \n 02 \n

                                                                                                                          \n Start Consturction \n

                                                                                                                          \n 03 \n

                                                                                                                          \n Finished Work \n

                                                                                                                          \n 04 \n 0\n +\n Years of Experience\n 0\n +\n Projects Completed\n 0\n +\n Happy Customers\n 0\n +\n Expert Landscapers\n
                                                                                                                          Our Projects
                                                                                                                          \n

                                                                                                                          Project We Have Done\n

                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n All Projects\n \n \"Cutting\n

                                                                                                                          Cutting Leaf

                                                                                                                          \n

                                                                                                                          \n

                                                                                                                          Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                          \n
                                                                                                                            \n \"Home\n

                                                                                                                            Home Garden

                                                                                                                            \n

                                                                                                                            \n

                                                                                                                            Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                            \n
                                                                                                                              \n \"Build\n

                                                                                                                              Build Backyard

                                                                                                                              \n

                                                                                                                              \n

                                                                                                                              Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                              \n
                                                                                                                                \n
                                                                                                                                Testimonials
                                                                                                                                \n

                                                                                                                                What They Says About Us

                                                                                                                                \n

                                                                                                                                Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                \n
                                                                                                                                  \n \"Regan\n Regan Traynor\n

                                                                                                                                  Entrepreneur

                                                                                                                                  \n

                                                                                                                                  Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                  \n
                                                                                                                                    \n \"Maisha\n Maisha Dunn\n

                                                                                                                                    Entrepreneur

                                                                                                                                    \n

                                                                                                                                    Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                    \n
                                                                                                                                      \n \"Reis\n Reis Leonard\n

                                                                                                                                      Businessman

                                                                                                                                      \n
                                                                                                                                      Our Blog
                                                                                                                                      \n

                                                                                                                                      Lates News and Articles

                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n ','Home','','inherit','closed','closed','','24-revision-v1','','','2024-07-24 14:21:23','2024-07-24 14:21:23','',24,'https://victor-quintero.designsfunnelserver.com/?p=188',0,'revision','',0),(189,1,'2024-07-24 14:21:23','2024-07-24 14:21:23','

                                                                                                                                      Complete For All Landscape Service And Maintenance

                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation \n \n Contact Us\n \n \n \n Watch Intro\n \n
                                                                                                                                      About Prestige Luxury Cleanings LLC
                                                                                                                                      \n

                                                                                                                                      We Provide Landscaping And Garden Care Services

                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit \n \"gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk\" \n
                                                                                                                                        \n
                                                                                                                                      • \n Public Liability Insurance\n
                                                                                                                                      • \n
                                                                                                                                      • \n Environmentally Friendly\n
                                                                                                                                      • \n
                                                                                                                                      • \n On Time, Every Time\n
                                                                                                                                      • \n
                                                                                                                                      • \n Beautiful Garden Designs\n
                                                                                                                                      • \n
                                                                                                                                      • \n Modern Machinery And Tool\n
                                                                                                                                      • \n
                                                                                                                                      \n \n More About Us\n \n \"gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w\" \n \"gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68\" \n 0\n +\n Projects Completed\n \n
                                                                                                                                      Why Choose Us
                                                                                                                                      \n

                                                                                                                                      We Have The Perfect Solution For Your Landscape Problems

                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation \n

                                                                                                                                      Variation Gardening

                                                                                                                                      Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                      \n

                                                                                                                                      Expert Landscapers

                                                                                                                                      Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                      \n

                                                                                                                                      Affordable Price

                                                                                                                                      Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                      \n

                                                                                                                                      Free Consultation

                                                                                                                                      Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                      \n
                                                                                                                                      Our Services
                                                                                                                                      \n

                                                                                                                                      Find The Best Service For Your Garden

                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n

                                                                                                                                      Lawn Services

                                                                                                                                      Lorem ipsum dolor sit amet \n \n

                                                                                                                                      Driveway Pressure Washing

                                                                                                                                      Lorem ipsum dolor sit amet \n \n

                                                                                                                                      Deck Pressure Washing

                                                                                                                                      Lorem ipsum dolor sit amet \n \n

                                                                                                                                      Weed Control

                                                                                                                                      Lorem ipsum dolor sit amet \n \n

                                                                                                                                      Grass Feed

                                                                                                                                      Lorem ipsum dolor sit amet \n \n

                                                                                                                                      Edging Cleaning

                                                                                                                                      Lorem ipsum dolor sit amet \n \n
                                                                                                                                      Best Landscaping
                                                                                                                                      \n

                                                                                                                                      Need Someone To Take Care Your Garden & Lawn?

                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

                                                                                                                                      Make Appointment & Take Care Your Garden

                                                                                                                                      Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                      \n \n
                                                                                                                                      Work Process
                                                                                                                                      \n

                                                                                                                                      We Complete Every Step Carefully

                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n

                                                                                                                                      \n Start Consultation \n

                                                                                                                                      \n 01 \n

                                                                                                                                      \n Design Installation \n

                                                                                                                                      \n 02 \n

                                                                                                                                      \n Start Consturction \n

                                                                                                                                      \n 03 \n

                                                                                                                                      \n Finished Work \n

                                                                                                                                      \n 04 \n 0\n +\n Years of Experience\n 0\n +\n Projects Completed\n 0\n +\n Happy Customers\n 0\n +\n Expert Landscapers\n
                                                                                                                                      Our Projects
                                                                                                                                      \n

                                                                                                                                      Project We Have Done\n

                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n All Projects\n \n \"Cutting\n

                                                                                                                                      Cutting Leaf

                                                                                                                                      \n

                                                                                                                                      \n

                                                                                                                                      Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                      \n
                                                                                                                                        \n \"Home\n

                                                                                                                                        Home Garden

                                                                                                                                        \n

                                                                                                                                        \n

                                                                                                                                        Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                        \n
                                                                                                                                          \n \"Build\n

                                                                                                                                          Build Backyard

                                                                                                                                          \n

                                                                                                                                          \n

                                                                                                                                          Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                          \n
                                                                                                                                            \n
                                                                                                                                            Testimonials
                                                                                                                                            \n

                                                                                                                                            What They Says About Us

                                                                                                                                            \n

                                                                                                                                            Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                            \n
                                                                                                                                              \n \"Regan\n Regan Traynor\n

                                                                                                                                              Entrepreneur

                                                                                                                                              \n

                                                                                                                                              Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                              \n
                                                                                                                                                \n \"Maisha\n Maisha Dunn\n

                                                                                                                                                Entrepreneur

                                                                                                                                                \n

                                                                                                                                                Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                \n
                                                                                                                                                  \n \"Reis\n Reis Leonard\n

                                                                                                                                                  Businessman

                                                                                                                                                  \n
                                                                                                                                                  Our Blog
                                                                                                                                                  \n

                                                                                                                                                  Lates News and Articles

                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n ','Home','','inherit','closed','closed','','24-revision-v1','','','2024-07-24 14:21:23','2024-07-24 14:21:23','',24,'https://victor-quintero.designsfunnelserver.com/?p=189',0,'revision','',0),(191,1,'2024-07-24 14:28:11','2024-07-24 14:28:11','','happy-gardeners-with-plants-and-lawn-mower','','inherit','open','closed','','happy-gardeners-with-plants-and-lawn-mower','','','2024-07-24 14:28:11','2024-07-24 14:28:11','',24,'https://victor-quintero.designsfunnelserver.com/wp-content/uploads/2024/07/happy-gardeners-with-plants-and-lawn-mower-1.jpg',0,'attachment','image/jpeg',0),(192,1,'2024-07-24 14:35:54','2024-07-24 14:35:54','

                                                                                                                                                  Complete For All Landscape Service And Maintenance

                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation \n \n Contact Us\n \n \n \n Watch Intro\n \n
                                                                                                                                                  About Prestige Luxury Cleanings LLC
                                                                                                                                                  \n

                                                                                                                                                  We Provide Landscaping And Garden Care Services

                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit \n \"gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk\" \n
                                                                                                                                                    \n
                                                                                                                                                  • \n Public Liability Insurance\n
                                                                                                                                                  • \n
                                                                                                                                                  • \n Environmentally Friendly\n
                                                                                                                                                  • \n
                                                                                                                                                  • \n On Time, Every Time\n
                                                                                                                                                  • \n
                                                                                                                                                  • \n Beautiful Garden Designs\n
                                                                                                                                                  • \n
                                                                                                                                                  • \n Modern Machinery And Tool\n
                                                                                                                                                  • \n
                                                                                                                                                  \n \n More About Us\n \n \"gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w\" \n \"gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68\" \n 0\n +\n Projects Completed\n \n
                                                                                                                                                  Why Choose Us
                                                                                                                                                  \n

                                                                                                                                                  We Have The Perfect Solution For Your Landscape Problems

                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation \n

                                                                                                                                                  Variation Gardening

                                                                                                                                                  Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                  \n

                                                                                                                                                  Expert Landscapers

                                                                                                                                                  Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                  \n

                                                                                                                                                  Affordable Price

                                                                                                                                                  Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                  \n

                                                                                                                                                  Free Consultation

                                                                                                                                                  Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                  \n
                                                                                                                                                  Our Services
                                                                                                                                                  \n

                                                                                                                                                  Find The Best Service For Your Garden

                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n

                                                                                                                                                  Lawn Services

                                                                                                                                                  Lorem ipsum dolor sit amet \n \n

                                                                                                                                                  Driveway Pressure Washing

                                                                                                                                                  Lorem ipsum dolor sit amet \n \n

                                                                                                                                                  Deck Pressure Washing

                                                                                                                                                  Lorem ipsum dolor sit amet \n \n

                                                                                                                                                  Weed Control

                                                                                                                                                  Lorem ipsum dolor sit amet \n \n

                                                                                                                                                  Grass Feed

                                                                                                                                                  Lorem ipsum dolor sit amet \n \n

                                                                                                                                                  Edging Cleaning

                                                                                                                                                  Lorem ipsum dolor sit amet \n \n
                                                                                                                                                  Best Landscaping
                                                                                                                                                  \n

                                                                                                                                                  Need Someone To Take Care Your Garden & Lawn?

                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

                                                                                                                                                  Make Appointment & Take Care Your Garden

                                                                                                                                                  Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                  \n \n
                                                                                                                                                  Work Process
                                                                                                                                                  \n

                                                                                                                                                  We Complete Every Step Carefully

                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n

                                                                                                                                                  \n Start Consultation \n

                                                                                                                                                  \n 01 \n

                                                                                                                                                  \n Design Installation \n

                                                                                                                                                  \n 02 \n

                                                                                                                                                  \n Start Consturction \n

                                                                                                                                                  \n 03 \n

                                                                                                                                                  \n Finished Work \n

                                                                                                                                                  \n 04 \n 0\n +\n Years of Experience\n 0\n +\n Projects Completed\n 0\n +\n Happy Customers\n 0\n +\n Expert Landscapers\n
                                                                                                                                                  Our Projects
                                                                                                                                                  \n

                                                                                                                                                  Project We Have Done\n

                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n All Projects\n \n \"Cutting\n

                                                                                                                                                  Cutting Leaf

                                                                                                                                                  \n

                                                                                                                                                  \n

                                                                                                                                                  Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                  \n
                                                                                                                                                    \n \"Home\n

                                                                                                                                                    Home Garden

                                                                                                                                                    \n

                                                                                                                                                    \n

                                                                                                                                                    Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                    \n
                                                                                                                                                      \n \"Build\n

                                                                                                                                                      Build Backyard

                                                                                                                                                      \n

                                                                                                                                                      \n

                                                                                                                                                      Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                      \n
                                                                                                                                                        \n
                                                                                                                                                        Testimonials
                                                                                                                                                        \n

                                                                                                                                                        What They Says About Us

                                                                                                                                                        \n

                                                                                                                                                        Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                        \n
                                                                                                                                                          \n \"Regan\n Regan Traynor\n

                                                                                                                                                          Entrepreneur

                                                                                                                                                          \n

                                                                                                                                                          Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                          \n
                                                                                                                                                            \n \"Maisha\n Maisha Dunn\n

                                                                                                                                                            Entrepreneur

                                                                                                                                                            \n

                                                                                                                                                            Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                            \n
                                                                                                                                                              \n \"Reis\n Reis Leonard\n

                                                                                                                                                              Businessman

                                                                                                                                                              \n
                                                                                                                                                              Our Blog
                                                                                                                                                              \n

                                                                                                                                                              Lates News and Articles

                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n ','Home','','inherit','closed','closed','','24-revision-v1','','','2024-07-24 14:35:54','2024-07-24 14:35:54','',24,'https://victor-quintero.designsfunnelserver.com/?p=192',0,'revision','',0),(193,1,'2024-07-24 14:35:54','2024-07-24 14:35:54','

                                                                                                                                                              Complete For All Landscape Service And Maintenance

                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation \n \n Contact Us\n \n \n \n Watch Intro\n \n
                                                                                                                                                              About Prestige Luxury Cleanings LLC
                                                                                                                                                              \n

                                                                                                                                                              We Provide Landscaping And Garden Care Services

                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit \n \"gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk\" \n
                                                                                                                                                                \n
                                                                                                                                                              • \n Public Liability Insurance\n
                                                                                                                                                              • \n
                                                                                                                                                              • \n Environmentally Friendly\n
                                                                                                                                                              • \n
                                                                                                                                                              • \n On Time, Every Time\n
                                                                                                                                                              • \n
                                                                                                                                                              • \n Beautiful Garden Designs\n
                                                                                                                                                              • \n
                                                                                                                                                              • \n Modern Machinery And Tool\n
                                                                                                                                                              • \n
                                                                                                                                                              \n \n More About Us\n \n \"gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w\" \n \"gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68\" \n 0\n +\n Projects Completed\n \n
                                                                                                                                                              Why Choose Us
                                                                                                                                                              \n

                                                                                                                                                              We Have The Perfect Solution For Your Landscape Problems

                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation \n

                                                                                                                                                              Variation Gardening

                                                                                                                                                              Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                              \n

                                                                                                                                                              Expert Landscapers

                                                                                                                                                              Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                              \n

                                                                                                                                                              Affordable Price

                                                                                                                                                              Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                              \n

                                                                                                                                                              Free Consultation

                                                                                                                                                              Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                              \n
                                                                                                                                                              Our Services
                                                                                                                                                              \n

                                                                                                                                                              Find The Best Service For Your Garden

                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n

                                                                                                                                                              Lawn Services

                                                                                                                                                              Lorem ipsum dolor sit amet \n \n

                                                                                                                                                              Driveway Pressure Washing

                                                                                                                                                              Lorem ipsum dolor sit amet \n \n

                                                                                                                                                              Deck Pressure Washing

                                                                                                                                                              Lorem ipsum dolor sit amet \n \n

                                                                                                                                                              Weed Control

                                                                                                                                                              Lorem ipsum dolor sit amet \n \n

                                                                                                                                                              Grass Feed

                                                                                                                                                              Lorem ipsum dolor sit amet \n \n

                                                                                                                                                              Edging Cleaning

                                                                                                                                                              Lorem ipsum dolor sit amet \n \n
                                                                                                                                                              Best Landscaping
                                                                                                                                                              \n

                                                                                                                                                              Need Someone To Take Care Your Garden & Lawn?

                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

                                                                                                                                                              Make Appointment & Take Care Your Garden

                                                                                                                                                              Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                              \n \n
                                                                                                                                                              Work Process
                                                                                                                                                              \n

                                                                                                                                                              We Complete Every Step Carefully

                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n

                                                                                                                                                              \n Start Consultation \n

                                                                                                                                                              \n 01 \n

                                                                                                                                                              \n Design Installation \n

                                                                                                                                                              \n 02 \n

                                                                                                                                                              \n Start Consturction \n

                                                                                                                                                              \n 03 \n

                                                                                                                                                              \n Finished Work \n

                                                                                                                                                              \n 04 \n 0\n +\n Years of Experience\n 0\n +\n Projects Completed\n 0\n +\n Happy Customers\n 0\n +\n Expert Landscapers\n
                                                                                                                                                              Our Projects
                                                                                                                                                              \n

                                                                                                                                                              Project We Have Done\n

                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n All Projects\n \n \"Cutting\n

                                                                                                                                                              Cutting Leaf

                                                                                                                                                              \n

                                                                                                                                                              \n

                                                                                                                                                              Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                              \n
                                                                                                                                                                \n \"Home\n

                                                                                                                                                                Home Garden

                                                                                                                                                                \n

                                                                                                                                                                \n

                                                                                                                                                                Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                \n
                                                                                                                                                                  \n \"Build\n

                                                                                                                                                                  Build Backyard

                                                                                                                                                                  \n

                                                                                                                                                                  \n

                                                                                                                                                                  Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                  \n
                                                                                                                                                                    \n
                                                                                                                                                                    Testimonials
                                                                                                                                                                    \n

                                                                                                                                                                    What They Says About Us

                                                                                                                                                                    \n

                                                                                                                                                                    Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                    \n
                                                                                                                                                                      \n \"Regan\n Regan Traynor\n

                                                                                                                                                                      Entrepreneur

                                                                                                                                                                      \n

                                                                                                                                                                      Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                      \n
                                                                                                                                                                        \n \"Maisha\n Maisha Dunn\n

                                                                                                                                                                        Entrepreneur

                                                                                                                                                                        \n

                                                                                                                                                                        Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                        \n
                                                                                                                                                                          \n \"Reis\n Reis Leonard\n

                                                                                                                                                                          Businessman

                                                                                                                                                                          \n
                                                                                                                                                                          Our Blog
                                                                                                                                                                          \n

                                                                                                                                                                          Lates News and Articles

                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n ','Home','','inherit','closed','closed','','24-revision-v1','','','2024-07-24 14:35:54','2024-07-24 14:35:54','',24,'https://victor-quintero.designsfunnelserver.com/?p=193',0,'revision','',0),(194,1,'2024-07-24 14:35:55','2024-07-24 14:35:55','

                                                                                                                                                                          Complete For All Landscape Service And Maintenance

                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation \n \n Contact Us\n \n \n \n Watch Intro\n \n
                                                                                                                                                                          About Prestige Luxury Cleanings LLC
                                                                                                                                                                          \n

                                                                                                                                                                          We Provide Landscaping And Garden Care Services

                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit \n \"gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk\" \n
                                                                                                                                                                            \n
                                                                                                                                                                          • \n Public Liability Insurance\n
                                                                                                                                                                          • \n
                                                                                                                                                                          • \n Environmentally Friendly\n
                                                                                                                                                                          • \n
                                                                                                                                                                          • \n On Time, Every Time\n
                                                                                                                                                                          • \n
                                                                                                                                                                          • \n Beautiful Garden Designs\n
                                                                                                                                                                          • \n
                                                                                                                                                                          • \n Modern Machinery And Tool\n
                                                                                                                                                                          • \n
                                                                                                                                                                          \n \n More About Us\n \n \"gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w\" \n \"gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68\" \n 0\n +\n Projects Completed\n \n
                                                                                                                                                                          Why Choose Us
                                                                                                                                                                          \n

                                                                                                                                                                          We Have The Perfect Solution For Your Landscape Problems

                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation \n

                                                                                                                                                                          Variation Gardening

                                                                                                                                                                          Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                          \n

                                                                                                                                                                          Expert Landscapers

                                                                                                                                                                          Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                          \n

                                                                                                                                                                          Affordable Price

                                                                                                                                                                          Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                          \n

                                                                                                                                                                          Free Consultation

                                                                                                                                                                          Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                          \n
                                                                                                                                                                          Our Services
                                                                                                                                                                          \n

                                                                                                                                                                          Find The Best Service For Your Garden

                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n

                                                                                                                                                                          Lawn Services

                                                                                                                                                                          Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                          Driveway Pressure Washing

                                                                                                                                                                          Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                          Deck Pressure Washing

                                                                                                                                                                          Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                          Weed Control

                                                                                                                                                                          Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                          Grass Feed

                                                                                                                                                                          Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                          Edging Cleaning

                                                                                                                                                                          Lorem ipsum dolor sit amet \n \n
                                                                                                                                                                          Best Landscaping
                                                                                                                                                                          \n

                                                                                                                                                                          Need Someone To Take Care Your Garden & Lawn?

                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

                                                                                                                                                                          Make Appointment & Take Care Your Garden

                                                                                                                                                                          Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                          \n \n
                                                                                                                                                                          Work Process
                                                                                                                                                                          \n

                                                                                                                                                                          We Complete Every Step Carefully

                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n

                                                                                                                                                                          \n Start Consultation \n

                                                                                                                                                                          \n 01 \n

                                                                                                                                                                          \n Design Installation \n

                                                                                                                                                                          \n 02 \n

                                                                                                                                                                          \n Start Consturction \n

                                                                                                                                                                          \n 03 \n

                                                                                                                                                                          \n Finished Work \n

                                                                                                                                                                          \n 04 \n 0\n +\n Years of Experience\n 0\n +\n Projects Completed\n 0\n +\n Happy Customers\n 0\n +\n Expert Landscapers\n
                                                                                                                                                                          Our Projects
                                                                                                                                                                          \n

                                                                                                                                                                          Project We Have Done\n

                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n All Projects\n \n \"Cutting\n

                                                                                                                                                                          Cutting Leaf

                                                                                                                                                                          \n

                                                                                                                                                                          \n

                                                                                                                                                                          Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                          \n
                                                                                                                                                                            \n \"Home\n

                                                                                                                                                                            Home Garden

                                                                                                                                                                            \n

                                                                                                                                                                            \n

                                                                                                                                                                            Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                            \n
                                                                                                                                                                              \n \"Build\n

                                                                                                                                                                              Build Backyard

                                                                                                                                                                              \n

                                                                                                                                                                              \n

                                                                                                                                                                              Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                              \n
                                                                                                                                                                                \n
                                                                                                                                                                                Testimonials
                                                                                                                                                                                \n

                                                                                                                                                                                What They Says About Us

                                                                                                                                                                                \n

                                                                                                                                                                                Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                \n
                                                                                                                                                                                  \n \"Regan\n Regan Traynor\n

                                                                                                                                                                                  Entrepreneur

                                                                                                                                                                                  \n

                                                                                                                                                                                  Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                  \n
                                                                                                                                                                                    \n \"Maisha\n Maisha Dunn\n

                                                                                                                                                                                    Entrepreneur

                                                                                                                                                                                    \n

                                                                                                                                                                                    Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                    \n
                                                                                                                                                                                      \n \"Reis\n Reis Leonard\n

                                                                                                                                                                                      Businessman

                                                                                                                                                                                      \n
                                                                                                                                                                                      Our Blog
                                                                                                                                                                                      \n

                                                                                                                                                                                      Lates News and Articles

                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n ','Home','','inherit','closed','closed','','24-revision-v1','','','2024-07-24 14:35:55','2024-07-24 14:35:55','',24,'https://victor-quintero.designsfunnelserver.com/?p=194',0,'revision','',0),(195,1,'2024-07-24 14:38:12','2024-07-24 14:38:12','','build-backyard','','inherit','open','closed','','build-backyard','','','2024-07-24 14:38:12','2024-07-24 14:38:12','',24,'https://victor-quintero.designsfunnelserver.com/wp-content/uploads/2024/07/build-backyard.jpg',0,'attachment','image/jpeg',0),(196,1,'2024-07-24 14:38:14','2024-07-24 14:38:14','','Cutting-Leaf','','inherit','open','closed','','cutting-leaf','','','2024-07-24 14:38:14','2024-07-24 14:38:14','',24,'https://victor-quintero.designsfunnelserver.com/wp-content/uploads/2024/07/Cutting-Leaf.jpg',0,'attachment','image/jpeg',0),(197,1,'2024-07-24 14:38:16','2024-07-24 14:38:16','','Home-Garden','','inherit','open','closed','','home-garden','','','2024-07-24 14:38:16','2024-07-24 14:38:16','',24,'https://victor-quintero.designsfunnelserver.com/wp-content/uploads/2024/07/Home-Garden.jpg',0,'attachment','image/jpeg',0),(198,1,'2024-07-24 14:38:43','2024-07-24 14:38:43','

                                                                                                                                                                                      Complete For All Landscape Service And Maintenance

                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation \n \n Contact Us\n \n \n \n Watch Intro\n \n
                                                                                                                                                                                      About Prestige Luxury Cleanings LLC
                                                                                                                                                                                      \n

                                                                                                                                                                                      We Provide Landscaping And Garden Care Services

                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit \n \"gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk\" \n
                                                                                                                                                                                        \n
                                                                                                                                                                                      • \n Public Liability Insurance\n
                                                                                                                                                                                      • \n
                                                                                                                                                                                      • \n Environmentally Friendly\n
                                                                                                                                                                                      • \n
                                                                                                                                                                                      • \n On Time, Every Time\n
                                                                                                                                                                                      • \n
                                                                                                                                                                                      • \n Beautiful Garden Designs\n
                                                                                                                                                                                      • \n
                                                                                                                                                                                      • \n Modern Machinery And Tool\n
                                                                                                                                                                                      • \n
                                                                                                                                                                                      \n \n More About Us\n \n \"gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w\" \n \"gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68\" \n 0\n +\n Projects Completed\n \n
                                                                                                                                                                                      Why Choose Us
                                                                                                                                                                                      \n

                                                                                                                                                                                      We Have The Perfect Solution For Your Landscape Problems

                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation \n

                                                                                                                                                                                      Variation Gardening

                                                                                                                                                                                      Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                      \n

                                                                                                                                                                                      Expert Landscapers

                                                                                                                                                                                      Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                      \n

                                                                                                                                                                                      Affordable Price

                                                                                                                                                                                      Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                      \n

                                                                                                                                                                                      Free Consultation

                                                                                                                                                                                      Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                      \n
                                                                                                                                                                                      Our Services
                                                                                                                                                                                      \n

                                                                                                                                                                                      Find The Best Service For Your Garden

                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n

                                                                                                                                                                                      Lawn Services

                                                                                                                                                                                      Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                      Driveway Pressure Washing

                                                                                                                                                                                      Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                      Deck Pressure Washing

                                                                                                                                                                                      Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                      Weed Control

                                                                                                                                                                                      Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                      Grass Feed

                                                                                                                                                                                      Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                      Edging Cleaning

                                                                                                                                                                                      Lorem ipsum dolor sit amet \n \n
                                                                                                                                                                                      Best Landscaping
                                                                                                                                                                                      \n

                                                                                                                                                                                      Need Someone To Take Care Your Garden & Lawn?

                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

                                                                                                                                                                                      Make Appointment & Take Care Your Garden

                                                                                                                                                                                      Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                      \n \n
                                                                                                                                                                                      Work Process
                                                                                                                                                                                      \n

                                                                                                                                                                                      We Complete Every Step Carefully

                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n

                                                                                                                                                                                      \n Start Consultation \n

                                                                                                                                                                                      \n 01 \n

                                                                                                                                                                                      \n Design Installation \n

                                                                                                                                                                                      \n 02 \n

                                                                                                                                                                                      \n Start Consturction \n

                                                                                                                                                                                      \n 03 \n

                                                                                                                                                                                      \n Finished Work \n

                                                                                                                                                                                      \n 04 \n 0\n +\n Years of Experience\n 0\n +\n Projects Completed\n 0\n +\n Happy Customers\n 0\n +\n Expert Landscapers\n
                                                                                                                                                                                      Our Projects
                                                                                                                                                                                      \n

                                                                                                                                                                                      Project We Have Done\n

                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n All Projects\n \n \"Cutting\n

                                                                                                                                                                                      Cutting Leaf

                                                                                                                                                                                      \n

                                                                                                                                                                                      \n

                                                                                                                                                                                      Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                      \n
                                                                                                                                                                                        \n \"Home\n

                                                                                                                                                                                        Home Garden

                                                                                                                                                                                        \n

                                                                                                                                                                                        \n

                                                                                                                                                                                        Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                        \n
                                                                                                                                                                                          \n \"Build\n

                                                                                                                                                                                          Build Backyard

                                                                                                                                                                                          \n

                                                                                                                                                                                          \n

                                                                                                                                                                                          Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                          \n
                                                                                                                                                                                            \n
                                                                                                                                                                                            Testimonials
                                                                                                                                                                                            \n

                                                                                                                                                                                            What They Says About Us

                                                                                                                                                                                            \n

                                                                                                                                                                                            Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                            \n
                                                                                                                                                                                              \n \"Regan\n Regan Traynor\n

                                                                                                                                                                                              Entrepreneur

                                                                                                                                                                                              \n

                                                                                                                                                                                              Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                              \n
                                                                                                                                                                                                \n \"Maisha\n Maisha Dunn\n

                                                                                                                                                                                                Entrepreneur

                                                                                                                                                                                                \n

                                                                                                                                                                                                Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                \n
                                                                                                                                                                                                  \n \"Reis\n Reis Leonard\n

                                                                                                                                                                                                  Businessman

                                                                                                                                                                                                  \n
                                                                                                                                                                                                  Our Blog
                                                                                                                                                                                                  \n

                                                                                                                                                                                                  Lates News and Articles

                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n ','Home','','inherit','closed','closed','','24-revision-v1','','','2024-07-24 14:38:43','2024-07-24 14:38:43','',24,'https://victor-quintero.designsfunnelserver.com/?p=198',0,'revision','',0),(199,1,'2024-07-24 14:38:43','2024-07-24 14:38:43','

                                                                                                                                                                                                  Complete For All Landscape Service And Maintenance

                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation \n \n Contact Us\n \n \n \n Watch Intro\n \n
                                                                                                                                                                                                  About Prestige Luxury Cleanings LLC
                                                                                                                                                                                                  \n

                                                                                                                                                                                                  We Provide Landscaping And Garden Care Services

                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit \n \"gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk\" \n
                                                                                                                                                                                                    \n
                                                                                                                                                                                                  • \n Public Liability Insurance\n
                                                                                                                                                                                                  • \n
                                                                                                                                                                                                  • \n Environmentally Friendly\n
                                                                                                                                                                                                  • \n
                                                                                                                                                                                                  • \n On Time, Every Time\n
                                                                                                                                                                                                  • \n
                                                                                                                                                                                                  • \n Beautiful Garden Designs\n
                                                                                                                                                                                                  • \n
                                                                                                                                                                                                  • \n Modern Machinery And Tool\n
                                                                                                                                                                                                  • \n
                                                                                                                                                                                                  \n \n More About Us\n \n \"gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w\" \n \"gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68\" \n 0\n +\n Projects Completed\n \n
                                                                                                                                                                                                  Why Choose Us
                                                                                                                                                                                                  \n

                                                                                                                                                                                                  We Have The Perfect Solution For Your Landscape Problems

                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation \n

                                                                                                                                                                                                  Variation Gardening

                                                                                                                                                                                                  Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                  \n

                                                                                                                                                                                                  Expert Landscapers

                                                                                                                                                                                                  Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                  \n

                                                                                                                                                                                                  Affordable Price

                                                                                                                                                                                                  Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                  \n

                                                                                                                                                                                                  Free Consultation

                                                                                                                                                                                                  Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                  \n
                                                                                                                                                                                                  Our Services
                                                                                                                                                                                                  \n

                                                                                                                                                                                                  Find The Best Service For Your Garden

                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n

                                                                                                                                                                                                  Lawn Services

                                                                                                                                                                                                  Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                  Driveway Pressure Washing

                                                                                                                                                                                                  Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                  Deck Pressure Washing

                                                                                                                                                                                                  Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                  Weed Control

                                                                                                                                                                                                  Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                  Grass Feed

                                                                                                                                                                                                  Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                  Edging Cleaning

                                                                                                                                                                                                  Lorem ipsum dolor sit amet \n \n
                                                                                                                                                                                                  Best Landscaping
                                                                                                                                                                                                  \n

                                                                                                                                                                                                  Need Someone To Take Care Your Garden & Lawn?

                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

                                                                                                                                                                                                  Make Appointment & Take Care Your Garden

                                                                                                                                                                                                  Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                  \n \n
                                                                                                                                                                                                  Work Process
                                                                                                                                                                                                  \n

                                                                                                                                                                                                  We Complete Every Step Carefully

                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n

                                                                                                                                                                                                  \n Start Consultation \n

                                                                                                                                                                                                  \n 01 \n

                                                                                                                                                                                                  \n Design Installation \n

                                                                                                                                                                                                  \n 02 \n

                                                                                                                                                                                                  \n Start Consturction \n

                                                                                                                                                                                                  \n 03 \n

                                                                                                                                                                                                  \n Finished Work \n

                                                                                                                                                                                                  \n 04 \n 0\n +\n Years of Experience\n 0\n +\n Projects Completed\n 0\n +\n Happy Customers\n 0\n +\n Expert Landscapers\n
                                                                                                                                                                                                  Our Projects
                                                                                                                                                                                                  \n

                                                                                                                                                                                                  Project We Have Done\n

                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n All Projects\n \n \"Cutting\n

                                                                                                                                                                                                  Cutting Leaf

                                                                                                                                                                                                  \n

                                                                                                                                                                                                  \n

                                                                                                                                                                                                  Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                  \n
                                                                                                                                                                                                    \n \"Home\n

                                                                                                                                                                                                    Home Garden

                                                                                                                                                                                                    \n

                                                                                                                                                                                                    \n

                                                                                                                                                                                                    Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                    \n
                                                                                                                                                                                                      \n \"Build\n

                                                                                                                                                                                                      Build Backyard

                                                                                                                                                                                                      \n

                                                                                                                                                                                                      \n

                                                                                                                                                                                                      Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                      \n
                                                                                                                                                                                                        \n
                                                                                                                                                                                                        Testimonials
                                                                                                                                                                                                        \n

                                                                                                                                                                                                        What They Says About Us

                                                                                                                                                                                                        \n

                                                                                                                                                                                                        Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                        \n
                                                                                                                                                                                                          \n \"Regan\n Regan Traynor\n

                                                                                                                                                                                                          Entrepreneur

                                                                                                                                                                                                          \n

                                                                                                                                                                                                          Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                          \n
                                                                                                                                                                                                            \n \"Maisha\n Maisha Dunn\n

                                                                                                                                                                                                            Entrepreneur

                                                                                                                                                                                                            \n

                                                                                                                                                                                                            Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                            \n
                                                                                                                                                                                                              \n \"Reis\n Reis Leonard\n

                                                                                                                                                                                                              Businessman

                                                                                                                                                                                                              \n
                                                                                                                                                                                                              Our Blog
                                                                                                                                                                                                              \n

                                                                                                                                                                                                              Lates News and Articles

                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n ','Home','','inherit','closed','closed','','24-revision-v1','','','2024-07-24 14:38:43','2024-07-24 14:38:43','',24,'https://victor-quintero.designsfunnelserver.com/?p=199',0,'revision','',0),(200,1,'2024-07-24 14:38:43','2024-07-24 14:38:43','

                                                                                                                                                                                                              Complete For All Landscape Service And Maintenance

                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation \n \n Contact Us\n \n \n \n Watch Intro\n \n
                                                                                                                                                                                                              About Prestige Luxury Cleanings LLC
                                                                                                                                                                                                              \n

                                                                                                                                                                                                              We Provide Landscaping And Garden Care Services

                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit \n \"gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk\" \n
                                                                                                                                                                                                                \n
                                                                                                                                                                                                              • \n Public Liability Insurance\n
                                                                                                                                                                                                              • \n
                                                                                                                                                                                                              • \n Environmentally Friendly\n
                                                                                                                                                                                                              • \n
                                                                                                                                                                                                              • \n On Time, Every Time\n
                                                                                                                                                                                                              • \n
                                                                                                                                                                                                              • \n Beautiful Garden Designs\n
                                                                                                                                                                                                              • \n
                                                                                                                                                                                                              • \n Modern Machinery And Tool\n
                                                                                                                                                                                                              • \n
                                                                                                                                                                                                              \n \n More About Us\n \n \"gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w\" \n \"gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68\" \n 0\n +\n Projects Completed\n \n
                                                                                                                                                                                                              Why Choose Us
                                                                                                                                                                                                              \n

                                                                                                                                                                                                              We Have The Perfect Solution For Your Landscape Problems

                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation \n

                                                                                                                                                                                                              Variation Gardening

                                                                                                                                                                                                              Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                              \n

                                                                                                                                                                                                              Expert Landscapers

                                                                                                                                                                                                              Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                              \n

                                                                                                                                                                                                              Affordable Price

                                                                                                                                                                                                              Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                              \n

                                                                                                                                                                                                              Free Consultation

                                                                                                                                                                                                              Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                              \n
                                                                                                                                                                                                              Our Services
                                                                                                                                                                                                              \n

                                                                                                                                                                                                              Find The Best Service For Your Garden

                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n

                                                                                                                                                                                                              Lawn Services

                                                                                                                                                                                                              Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                              Driveway Pressure Washing

                                                                                                                                                                                                              Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                              Deck Pressure Washing

                                                                                                                                                                                                              Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                              Weed Control

                                                                                                                                                                                                              Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                              Grass Feed

                                                                                                                                                                                                              Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                              Edging Cleaning

                                                                                                                                                                                                              Lorem ipsum dolor sit amet \n \n
                                                                                                                                                                                                              Best Landscaping
                                                                                                                                                                                                              \n

                                                                                                                                                                                                              Need Someone To Take Care Your Garden & Lawn?

                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

                                                                                                                                                                                                              Make Appointment & Take Care Your Garden

                                                                                                                                                                                                              Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                              \n \n
                                                                                                                                                                                                              Work Process
                                                                                                                                                                                                              \n

                                                                                                                                                                                                              We Complete Every Step Carefully

                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n

                                                                                                                                                                                                              \n Start Consultation \n

                                                                                                                                                                                                              \n 01 \n

                                                                                                                                                                                                              \n Design Installation \n

                                                                                                                                                                                                              \n 02 \n

                                                                                                                                                                                                              \n Start Consturction \n

                                                                                                                                                                                                              \n 03 \n

                                                                                                                                                                                                              \n Finished Work \n

                                                                                                                                                                                                              \n 04 \n 0\n +\n Years of Experience\n 0\n +\n Projects Completed\n 0\n +\n Happy Customers\n 0\n +\n Expert Landscapers\n
                                                                                                                                                                                                              Our Projects
                                                                                                                                                                                                              \n

                                                                                                                                                                                                              Project We Have Done\n

                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n All Projects\n \n \"Cutting\n

                                                                                                                                                                                                              Cutting Leaf

                                                                                                                                                                                                              \n

                                                                                                                                                                                                              \n

                                                                                                                                                                                                              Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                              \n
                                                                                                                                                                                                                \n \"Home\n

                                                                                                                                                                                                                Home Garden

                                                                                                                                                                                                                \n

                                                                                                                                                                                                                \n

                                                                                                                                                                                                                Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                \n
                                                                                                                                                                                                                  \n \"Build\n

                                                                                                                                                                                                                  Build Backyard

                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                  Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                    \n
                                                                                                                                                                                                                    Testimonials
                                                                                                                                                                                                                    \n

                                                                                                                                                                                                                    What They Says About Us

                                                                                                                                                                                                                    \n

                                                                                                                                                                                                                    Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                    \n
                                                                                                                                                                                                                      \n \"Regan\n Regan Traynor\n

                                                                                                                                                                                                                      Entrepreneur

                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                      Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                        \n \"Maisha\n Maisha Dunn\n

                                                                                                                                                                                                                        Entrepreneur

                                                                                                                                                                                                                        \n

                                                                                                                                                                                                                        Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                        \n
                                                                                                                                                                                                                          \n \"Reis\n Reis Leonard\n

                                                                                                                                                                                                                          Businessman

                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                          Our Blog
                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                          Lates News and Articles

                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n ','Home','','inherit','closed','closed','','24-revision-v1','','','2024-07-24 14:38:43','2024-07-24 14:38:43','',24,'https://victor-quintero.designsfunnelserver.com/?p=200',0,'revision','',0),(201,1,'2024-07-24 14:42:34','2024-07-24 14:42:34','','Lawn Moving Aerial Photo','','inherit','open','closed','','lawn-moving-aerial-photo','','','2024-07-24 14:42:34','2024-07-24 14:42:34','',24,'https://victor-quintero.designsfunnelserver.com/wp-content/uploads/2024/07/lawn-moving-aerial-photo-Z8KDGJ9-1.jpg',0,'attachment','image/jpeg',0),(202,1,'2024-07-24 14:43:28','2024-07-24 14:43:28','

                                                                                                                                                                                                                          Complete For All Landscape Service And Maintenance

                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation \n \n Contact Us\n \n \n \n Watch Intro\n \n
                                                                                                                                                                                                                          About Prestige Luxury Cleanings LLC
                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                          We Provide Landscaping And Garden Care Services

                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit \n \"gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk\" \n
                                                                                                                                                                                                                            \n
                                                                                                                                                                                                                          • \n Public Liability Insurance\n
                                                                                                                                                                                                                          • \n
                                                                                                                                                                                                                          • \n Environmentally Friendly\n
                                                                                                                                                                                                                          • \n
                                                                                                                                                                                                                          • \n On Time, Every Time\n
                                                                                                                                                                                                                          • \n
                                                                                                                                                                                                                          • \n Beautiful Garden Designs\n
                                                                                                                                                                                                                          • \n
                                                                                                                                                                                                                          • \n Modern Machinery And Tool\n
                                                                                                                                                                                                                          • \n
                                                                                                                                                                                                                          \n \n More About Us\n \n \"gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w\" \n \"gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68\" \n 0\n +\n Projects Completed\n \n
                                                                                                                                                                                                                          Why Choose Us
                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                          We Have The Perfect Solution For Your Landscape Problems

                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation \n

                                                                                                                                                                                                                          Variation Gardening

                                                                                                                                                                                                                          Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                          Expert Landscapers

                                                                                                                                                                                                                          Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                          Affordable Price

                                                                                                                                                                                                                          Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                          Free Consultation

                                                                                                                                                                                                                          Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                          Our Services
                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                          Find The Best Service For Your Garden

                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n

                                                                                                                                                                                                                          Lawn Services

                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                          Driveway Pressure Washing

                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                          Deck Pressure Washing

                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                          Weed Control

                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                          Grass Feed

                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                          Edging Cleaning

                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n \n
                                                                                                                                                                                                                          Best Landscaping
                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                          Need Someone To Take Care Your Garden & Lawn?

                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

                                                                                                                                                                                                                          Make Appointment & Take Care Your Garden

                                                                                                                                                                                                                          Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                          \n \n
                                                                                                                                                                                                                          Work Process
                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                          We Complete Every Step Carefully

                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n

                                                                                                                                                                                                                          \n Start Consultation \n

                                                                                                                                                                                                                          \n 01 \n

                                                                                                                                                                                                                          \n Design Installation \n

                                                                                                                                                                                                                          \n 02 \n

                                                                                                                                                                                                                          \n Start Consturction \n

                                                                                                                                                                                                                          \n 03 \n

                                                                                                                                                                                                                          \n Finished Work \n

                                                                                                                                                                                                                          \n 04 \n 0\n +\n Years of Experience\n 0\n +\n Projects Completed\n 0\n +\n Happy Customers\n 0\n +\n Expert Landscapers\n
                                                                                                                                                                                                                          Our Projects
                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                          Project We Have Done\n

                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n All Projects\n \n \"Cutting\n

                                                                                                                                                                                                                          Cutting Leaf

                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                          Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                            \n \"Home\n

                                                                                                                                                                                                                            Home Garden

                                                                                                                                                                                                                            \n

                                                                                                                                                                                                                            \n

                                                                                                                                                                                                                            Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                            \n
                                                                                                                                                                                                                              \n \"Build\n

                                                                                                                                                                                                                              Build Backyard

                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                              Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                \n
                                                                                                                                                                                                                                Testimonials
                                                                                                                                                                                                                                \n

                                                                                                                                                                                                                                What They Says About Us

                                                                                                                                                                                                                                \n

                                                                                                                                                                                                                                Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                \n
                                                                                                                                                                                                                                  \n \"Regan\n Regan Traynor\n

                                                                                                                                                                                                                                  Entrepreneur

                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                    \n \"Maisha\n Maisha Dunn\n

                                                                                                                                                                                                                                    Entrepreneur

                                                                                                                                                                                                                                    \n

                                                                                                                                                                                                                                    Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                    \n
                                                                                                                                                                                                                                      \n \"Reis\n Reis Leonard\n

                                                                                                                                                                                                                                      Businessman

                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                      Our Blog
                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                      Lates News and Articles

                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n ','Home','','inherit','closed','closed','','24-revision-v1','','','2024-07-24 14:43:28','2024-07-24 14:43:28','',24,'https://victor-quintero.designsfunnelserver.com/?p=202',0,'revision','',0),(203,1,'2024-07-24 14:43:28','2024-07-24 14:43:28','

                                                                                                                                                                                                                                      Complete For All Landscape Service And Maintenance

                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation \n \n Contact Us\n \n \n \n Watch Intro\n \n
                                                                                                                                                                                                                                      About Prestige Luxury Cleanings LLC
                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                      We Provide Landscaping And Garden Care Services

                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit \n \"gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk\" \n
                                                                                                                                                                                                                                        \n
                                                                                                                                                                                                                                      • \n Public Liability Insurance\n
                                                                                                                                                                                                                                      • \n
                                                                                                                                                                                                                                      • \n Environmentally Friendly\n
                                                                                                                                                                                                                                      • \n
                                                                                                                                                                                                                                      • \n On Time, Every Time\n
                                                                                                                                                                                                                                      • \n
                                                                                                                                                                                                                                      • \n Beautiful Garden Designs\n
                                                                                                                                                                                                                                      • \n
                                                                                                                                                                                                                                      • \n Modern Machinery And Tool\n
                                                                                                                                                                                                                                      • \n
                                                                                                                                                                                                                                      \n \n More About Us\n \n \"gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w\" \n \"gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68\" \n 0\n +\n Projects Completed\n \n
                                                                                                                                                                                                                                      Why Choose Us
                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                      We Have The Perfect Solution For Your Landscape Problems

                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation \n

                                                                                                                                                                                                                                      Variation Gardening

                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                      Expert Landscapers

                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                      Affordable Price

                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                      Free Consultation

                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                      Our Services
                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                      Find The Best Service For Your Garden

                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n

                                                                                                                                                                                                                                      Lawn Services

                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                      Driveway Pressure Washing

                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                      Deck Pressure Washing

                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                      Weed Control

                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                      Grass Feed

                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                      Edging Cleaning

                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n \n
                                                                                                                                                                                                                                      Best Landscaping
                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                      Need Someone To Take Care Your Garden & Lawn?

                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

                                                                                                                                                                                                                                      Make Appointment & Take Care Your Garden

                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                      \n \n
                                                                                                                                                                                                                                      Work Process
                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                      We Complete Every Step Carefully

                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n

                                                                                                                                                                                                                                      \n Start Consultation \n

                                                                                                                                                                                                                                      \n 01 \n

                                                                                                                                                                                                                                      \n Design Installation \n

                                                                                                                                                                                                                                      \n 02 \n

                                                                                                                                                                                                                                      \n Start Consturction \n

                                                                                                                                                                                                                                      \n 03 \n

                                                                                                                                                                                                                                      \n Finished Work \n

                                                                                                                                                                                                                                      \n 04 \n 0\n +\n Years of Experience\n 0\n +\n Projects Completed\n 0\n +\n Happy Customers\n 0\n +\n Expert Landscapers\n
                                                                                                                                                                                                                                      Our Projects
                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                      Project We Have Done\n

                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n All Projects\n \n \"Cutting\n

                                                                                                                                                                                                                                      Cutting Leaf

                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                        \n \"Home\n

                                                                                                                                                                                                                                        Home Garden

                                                                                                                                                                                                                                        \n

                                                                                                                                                                                                                                        \n

                                                                                                                                                                                                                                        Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                        \n
                                                                                                                                                                                                                                          \n \"Build\n

                                                                                                                                                                                                                                          Build Backyard

                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                            \n
                                                                                                                                                                                                                                            Testimonials
                                                                                                                                                                                                                                            \n

                                                                                                                                                                                                                                            What They Says About Us

                                                                                                                                                                                                                                            \n

                                                                                                                                                                                                                                            Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                            \n
                                                                                                                                                                                                                                              \n \"Regan\n Regan Traynor\n

                                                                                                                                                                                                                                              Entrepreneur

                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                \n \"Maisha\n Maisha Dunn\n

                                                                                                                                                                                                                                                Entrepreneur

                                                                                                                                                                                                                                                \n

                                                                                                                                                                                                                                                Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                \n
                                                                                                                                                                                                                                                  \n \"Reis\n Reis Leonard\n

                                                                                                                                                                                                                                                  Businessman

                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                  Our Blog
                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                  Lates News and Articles

                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n ','Home','','inherit','closed','closed','','24-revision-v1','','','2024-07-24 14:43:28','2024-07-24 14:43:28','',24,'https://victor-quintero.designsfunnelserver.com/?p=203',0,'revision','',0),(204,1,'2024-07-24 14:43:29','2024-07-24 14:43:29','

                                                                                                                                                                                                                                                  Complete For All Landscape Service And Maintenance

                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation \n \n Contact Us\n \n \n \n Watch Intro\n \n
                                                                                                                                                                                                                                                  About Prestige Luxury Cleanings LLC
                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                  We Provide Landscaping And Garden Care Services

                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit \n \"gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk\" \n
                                                                                                                                                                                                                                                    \n
                                                                                                                                                                                                                                                  • \n Public Liability Insurance\n
                                                                                                                                                                                                                                                  • \n
                                                                                                                                                                                                                                                  • \n Environmentally Friendly\n
                                                                                                                                                                                                                                                  • \n
                                                                                                                                                                                                                                                  • \n On Time, Every Time\n
                                                                                                                                                                                                                                                  • \n
                                                                                                                                                                                                                                                  • \n Beautiful Garden Designs\n
                                                                                                                                                                                                                                                  • \n
                                                                                                                                                                                                                                                  • \n Modern Machinery And Tool\n
                                                                                                                                                                                                                                                  • \n
                                                                                                                                                                                                                                                  \n \n More About Us\n \n \"gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w\" \n \"gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68\" \n 0\n +\n Projects Completed\n \n
                                                                                                                                                                                                                                                  Why Choose Us
                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                  We Have The Perfect Solution For Your Landscape Problems

                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation \n

                                                                                                                                                                                                                                                  Variation Gardening

                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                  Expert Landscapers

                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                  Affordable Price

                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                  Free Consultation

                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                  Our Services
                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                  Find The Best Service For Your Garden

                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n

                                                                                                                                                                                                                                                  Lawn Services

                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                  Driveway Pressure Washing

                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                  Deck Pressure Washing

                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                  Weed Control

                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                  Grass Feed

                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                  Edging Cleaning

                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet \n \n
                                                                                                                                                                                                                                                  Best Landscaping
                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                  Need Someone To Take Care Your Garden & Lawn?

                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

                                                                                                                                                                                                                                                  Make Appointment & Take Care Your Garden

                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                  \n \n
                                                                                                                                                                                                                                                  Work Process
                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                  We Complete Every Step Carefully

                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n

                                                                                                                                                                                                                                                  \n Start Consultation \n

                                                                                                                                                                                                                                                  \n 01 \n

                                                                                                                                                                                                                                                  \n Design Installation \n

                                                                                                                                                                                                                                                  \n 02 \n

                                                                                                                                                                                                                                                  \n Start Consturction \n

                                                                                                                                                                                                                                                  \n 03 \n

                                                                                                                                                                                                                                                  \n Finished Work \n

                                                                                                                                                                                                                                                  \n 04 \n 0\n +\n Years of Experience\n 0\n +\n Projects Completed\n 0\n +\n Happy Customers\n 0\n +\n Expert Landscapers\n
                                                                                                                                                                                                                                                  Our Projects
                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                  Project We Have Done\n

                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n All Projects\n \n \"Cutting\n

                                                                                                                                                                                                                                                  Cutting Leaf

                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                    \n \"Home\n

                                                                                                                                                                                                                                                    Home Garden

                                                                                                                                                                                                                                                    \n

                                                                                                                                                                                                                                                    \n

                                                                                                                                                                                                                                                    Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                    \n
                                                                                                                                                                                                                                                      \n \"Build\n

                                                                                                                                                                                                                                                      Build Backyard

                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                        \n
                                                                                                                                                                                                                                                        Testimonials
                                                                                                                                                                                                                                                        \n

                                                                                                                                                                                                                                                        What They Says About Us

                                                                                                                                                                                                                                                        \n

                                                                                                                                                                                                                                                        Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                        \n
                                                                                                                                                                                                                                                          \n \"Regan\n Regan Traynor\n

                                                                                                                                                                                                                                                          Entrepreneur

                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                            \n \"Maisha\n Maisha Dunn\n

                                                                                                                                                                                                                                                            Entrepreneur

                                                                                                                                                                                                                                                            \n

                                                                                                                                                                                                                                                            Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                            \n
                                                                                                                                                                                                                                                              \n \"Reis\n Reis Leonard\n

                                                                                                                                                                                                                                                              Businessman

                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                              Our Blog
                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                              Lates News and Articles

                                                                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n ','Home','','inherit','closed','closed','','24-revision-v1','','','2024-07-24 14:43:29','2024-07-24 14:43:29','',24,'https://victor-quintero.designsfunnelserver.com/?p=204',0,'revision','',0),(205,1,'2024-07-24 14:53:59','2024-07-24 14:53:59','

                                                                                                                                                                                                                                                              Complete For All Landscape Service And Maintenance

                                                                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation \n \n Contact Us\n \n \n \n Watch Intro\n \n
                                                                                                                                                                                                                                                              About Prestige Luxury Cleanings LLC
                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                              We Provide Landscaping And Garden Care Services

                                                                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit \n \"gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk\" \n
                                                                                                                                                                                                                                                                \n
                                                                                                                                                                                                                                                              • \n Public Liability Insurance\n
                                                                                                                                                                                                                                                              • \n
                                                                                                                                                                                                                                                              • \n Environmentally Friendly\n
                                                                                                                                                                                                                                                              • \n
                                                                                                                                                                                                                                                              • \n On Time, Every Time\n
                                                                                                                                                                                                                                                              • \n
                                                                                                                                                                                                                                                              • \n Beautiful Garden Designs\n
                                                                                                                                                                                                                                                              • \n
                                                                                                                                                                                                                                                              • \n Modern Machinery And Tool\n
                                                                                                                                                                                                                                                              • \n
                                                                                                                                                                                                                                                              \n \n More About Us\n \n \"gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w\" \n \"gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68\" \n 0\n +\n Projects Completed\n \n
                                                                                                                                                                                                                                                              Why Choose Us
                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                              We Have The Perfect Solution For Your Landscape Problems

                                                                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation \n

                                                                                                                                                                                                                                                              Variation Gardening

                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                              Expert Landscapers

                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                              Affordable Price

                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                              Free Consultation

                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                              Our Services
                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                              Find The Best Service For Your Garden

                                                                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n

                                                                                                                                                                                                                                                              Lawn Services

                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                              Driveway Pressure Washing

                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                              Deck Pressure Washing

                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                              Weed Control

                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                              Grass Feed

                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                              Edging Cleaning

                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet \n \n
                                                                                                                                                                                                                                                              Best Landscaping
                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                              Need Someone To Take Care Your Garden & Lawn?

                                                                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

                                                                                                                                                                                                                                                              Make Appointment & Take Care Your Garden

                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                              \n \n
                                                                                                                                                                                                                                                              Work Process
                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                              We Complete Every Step Carefully

                                                                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n

                                                                                                                                                                                                                                                              \n Start Consultation \n

                                                                                                                                                                                                                                                              \n 01 \n

                                                                                                                                                                                                                                                              \n Design Installation \n

                                                                                                                                                                                                                                                              \n 02 \n

                                                                                                                                                                                                                                                              \n Start Consturction \n

                                                                                                                                                                                                                                                              \n 03 \n

                                                                                                                                                                                                                                                              \n Finished Work \n

                                                                                                                                                                                                                                                              \n 04 \n 0\n +\n Years of Experience\n 0\n +\n Projects Completed\n 0\n +\n Happy Customers\n 0\n +\n Expert Landscapers\n
                                                                                                                                                                                                                                                              Our Projects
                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                              Project We Have Done\n

                                                                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n All Projects\n \n \"Cutting\n

                                                                                                                                                                                                                                                              Cutting Leaf

                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                \n \"Home\n

                                                                                                                                                                                                                                                                Home Garden

                                                                                                                                                                                                                                                                \n

                                                                                                                                                                                                                                                                \n

                                                                                                                                                                                                                                                                Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                \n
                                                                                                                                                                                                                                                                  \n \"Build\n

                                                                                                                                                                                                                                                                  Build Backyard

                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                    \n
                                                                                                                                                                                                                                                                    Testimonials
                                                                                                                                                                                                                                                                    \n

                                                                                                                                                                                                                                                                    What They Says About Us

                                                                                                                                                                                                                                                                    \n

                                                                                                                                                                                                                                                                    Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                    \n
                                                                                                                                                                                                                                                                      \n \"Regan\n Regan Traynor\n

                                                                                                                                                                                                                                                                      Entrepreneur

                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                        \n \"Maisha\n Maisha Dunn\n

                                                                                                                                                                                                                                                                        Entrepreneur

                                                                                                                                                                                                                                                                        \n

                                                                                                                                                                                                                                                                        Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                        \n
                                                                                                                                                                                                                                                                          \n \"Reis\n Reis Leonard\n

                                                                                                                                                                                                                                                                          Businessman

                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                          Our Blog
                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                          Lates News and Articles

                                                                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n ','Home','','inherit','closed','closed','','24-revision-v1','','','2024-07-24 14:53:59','2024-07-24 14:53:59','',24,'https://victor-quintero.designsfunnelserver.com/?p=205',0,'revision','',0),(206,1,'2024-07-24 14:54:00','2024-07-24 14:54:00','

                                                                                                                                                                                                                                                                          Complete For All Landscape Service And Maintenance

                                                                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation \n \n Contact Us\n \n \n \n Watch Intro\n \n
                                                                                                                                                                                                                                                                          About Prestige Luxury Cleanings LLC
                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                          We Provide Landscaping And Garden Care Services

                                                                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit \n \"gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk\" \n
                                                                                                                                                                                                                                                                            \n
                                                                                                                                                                                                                                                                          • \n Public Liability Insurance\n
                                                                                                                                                                                                                                                                          • \n
                                                                                                                                                                                                                                                                          • \n Environmentally Friendly\n
                                                                                                                                                                                                                                                                          • \n
                                                                                                                                                                                                                                                                          • \n On Time, Every Time\n
                                                                                                                                                                                                                                                                          • \n
                                                                                                                                                                                                                                                                          • \n Beautiful Garden Designs\n
                                                                                                                                                                                                                                                                          • \n
                                                                                                                                                                                                                                                                          • \n Modern Machinery And Tool\n
                                                                                                                                                                                                                                                                          • \n
                                                                                                                                                                                                                                                                          \n \n More About Us\n \n \"gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w\" \n \"gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68\" \n 0\n +\n Projects Completed\n \n
                                                                                                                                                                                                                                                                          Why Choose Us
                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                          We Have The Perfect Solution For Your Landscape Problems

                                                                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation \n

                                                                                                                                                                                                                                                                          Variation Gardening

                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                          Expert Landscapers

                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                          Affordable Price

                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                          Free Consultation

                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                          Our Services
                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                          Find The Best Service For Your Garden

                                                                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n

                                                                                                                                                                                                                                                                          Lawn Services

                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                          Driveway Pressure Washing

                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                          Deck Pressure Washing

                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                          Weed Control

                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                          Grass Feed

                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                          Edging Cleaning

                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n \n
                                                                                                                                                                                                                                                                          Best Landscaping
                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                          Need Someone To Take Care Your Garden & Lawn?

                                                                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

                                                                                                                                                                                                                                                                          Make Appointment & Take Care Your Garden

                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                          \n \n
                                                                                                                                                                                                                                                                          Work Process
                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                          We Complete Every Step Carefully

                                                                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n

                                                                                                                                                                                                                                                                          \n Start Consultation \n

                                                                                                                                                                                                                                                                          \n 01 \n

                                                                                                                                                                                                                                                                          \n Design Installation \n

                                                                                                                                                                                                                                                                          \n 02 \n

                                                                                                                                                                                                                                                                          \n Start Consturction \n

                                                                                                                                                                                                                                                                          \n 03 \n

                                                                                                                                                                                                                                                                          \n Finished Work \n

                                                                                                                                                                                                                                                                          \n 04 \n 0\n +\n Years of Experience\n 0\n +\n Projects Completed\n 0\n +\n Happy Customers\n 0\n +\n Expert Landscapers\n
                                                                                                                                                                                                                                                                          Our Projects
                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                          Project We Have Done\n

                                                                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n All Projects\n \n \"Cutting\n

                                                                                                                                                                                                                                                                          Cutting Leaf

                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                            \n \"Home\n

                                                                                                                                                                                                                                                                            Home Garden

                                                                                                                                                                                                                                                                            \n

                                                                                                                                                                                                                                                                            \n

                                                                                                                                                                                                                                                                            Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                            \n
                                                                                                                                                                                                                                                                              \n \"Build\n

                                                                                                                                                                                                                                                                              Build Backyard

                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                \n
                                                                                                                                                                                                                                                                                Testimonials
                                                                                                                                                                                                                                                                                \n

                                                                                                                                                                                                                                                                                What They Says About Us

                                                                                                                                                                                                                                                                                \n

                                                                                                                                                                                                                                                                                Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                \n
                                                                                                                                                                                                                                                                                  \n \"Regan\n Regan Traynor\n

                                                                                                                                                                                                                                                                                  Entrepreneur

                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                    \n \"Maisha\n Maisha Dunn\n

                                                                                                                                                                                                                                                                                    Entrepreneur

                                                                                                                                                                                                                                                                                    \n

                                                                                                                                                                                                                                                                                    Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                    \n
                                                                                                                                                                                                                                                                                      \n \"Reis\n Reis Leonard\n

                                                                                                                                                                                                                                                                                      Businessman

                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                      Our Blog
                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                      Lates News and Articles

                                                                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n ','Home','','inherit','closed','closed','','24-revision-v1','','','2024-07-24 14:54:00','2024-07-24 14:54:00','',24,'https://victor-quintero.designsfunnelserver.com/?p=206',0,'revision','',0),(207,1,'2024-07-24 14:54:00','2024-07-24 14:54:00','

                                                                                                                                                                                                                                                                                      Complete For All Landscape Service And Maintenance

                                                                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation \n \n Contact Us\n \n \n \n Watch Intro\n \n
                                                                                                                                                                                                                                                                                      About Prestige Luxury Cleanings LLC
                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                      We Provide Landscaping And Garden Care Services

                                                                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit \n \"gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk\" \n
                                                                                                                                                                                                                                                                                        \n
                                                                                                                                                                                                                                                                                      • \n Public Liability Insurance\n
                                                                                                                                                                                                                                                                                      • \n
                                                                                                                                                                                                                                                                                      • \n Environmentally Friendly\n
                                                                                                                                                                                                                                                                                      • \n
                                                                                                                                                                                                                                                                                      • \n On Time, Every Time\n
                                                                                                                                                                                                                                                                                      • \n
                                                                                                                                                                                                                                                                                      • \n Beautiful Garden Designs\n
                                                                                                                                                                                                                                                                                      • \n
                                                                                                                                                                                                                                                                                      • \n Modern Machinery And Tool\n
                                                                                                                                                                                                                                                                                      • \n
                                                                                                                                                                                                                                                                                      \n \n More About Us\n \n \"gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w\" \n \"gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68\" \n 0\n +\n Projects Completed\n \n
                                                                                                                                                                                                                                                                                      Why Choose Us
                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                      We Have The Perfect Solution For Your Landscape Problems

                                                                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation \n

                                                                                                                                                                                                                                                                                      Variation Gardening

                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                      Expert Landscapers

                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                      Affordable Price

                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                      Free Consultation

                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                      Our Services
                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                      Find The Best Service For Your Garden

                                                                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n

                                                                                                                                                                                                                                                                                      Lawn Services

                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                      Driveway Pressure Washing

                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                      Deck Pressure Washing

                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                      Weed Control

                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                      Grass Feed

                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                      Edging Cleaning

                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n \n
                                                                                                                                                                                                                                                                                      Best Landscaping
                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                      Need Someone To Take Care Your Garden & Lawn?

                                                                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

                                                                                                                                                                                                                                                                                      Make Appointment & Take Care Your Garden

                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                      \n \n
                                                                                                                                                                                                                                                                                      Work Process
                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                      We Complete Every Step Carefully

                                                                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n

                                                                                                                                                                                                                                                                                      \n Start Consultation \n

                                                                                                                                                                                                                                                                                      \n 01 \n

                                                                                                                                                                                                                                                                                      \n Design Installation \n

                                                                                                                                                                                                                                                                                      \n 02 \n

                                                                                                                                                                                                                                                                                      \n Start Consturction \n

                                                                                                                                                                                                                                                                                      \n 03 \n

                                                                                                                                                                                                                                                                                      \n Finished Work \n

                                                                                                                                                                                                                                                                                      \n 04 \n 0\n +\n Years of Experience\n 0\n +\n Projects Completed\n 0\n +\n Happy Customers\n 0\n +\n Expert Landscapers\n
                                                                                                                                                                                                                                                                                      Our Projects
                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                      Project We Have Done\n

                                                                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n All Projects\n \n \"Cutting\n

                                                                                                                                                                                                                                                                                      Cutting Leaf

                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                        \n \"Home\n

                                                                                                                                                                                                                                                                                        Home Garden

                                                                                                                                                                                                                                                                                        \n

                                                                                                                                                                                                                                                                                        \n

                                                                                                                                                                                                                                                                                        Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                        \n
                                                                                                                                                                                                                                                                                          \n \"Build\n

                                                                                                                                                                                                                                                                                          Build Backyard

                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                            \n
                                                                                                                                                                                                                                                                                            Testimonials
                                                                                                                                                                                                                                                                                            \n

                                                                                                                                                                                                                                                                                            What They Says About Us

                                                                                                                                                                                                                                                                                            \n

                                                                                                                                                                                                                                                                                            Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                            \n
                                                                                                                                                                                                                                                                                              \n \"Regan\n Regan Traynor\n

                                                                                                                                                                                                                                                                                              Entrepreneur

                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                \n \"Maisha\n Maisha Dunn\n

                                                                                                                                                                                                                                                                                                Entrepreneur

                                                                                                                                                                                                                                                                                                \n

                                                                                                                                                                                                                                                                                                Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                \n
                                                                                                                                                                                                                                                                                                  \n \"Reis\n Reis Leonard\n

                                                                                                                                                                                                                                                                                                  Businessman

                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                  Our Blog
                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                  Lates News and Articles

                                                                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n ','Home','','inherit','closed','closed','','24-revision-v1','','','2024-07-24 14:54:00','2024-07-24 14:54:00','',24,'https://victor-quintero.designsfunnelserver.com/?p=207',0,'revision','',0),(208,1,'2024-07-24 14:58:32','2024-07-24 14:58:32','

                                                                                                                                                                                                                                                                                                  Complete For All Landscape Service And Maintenance

                                                                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation \n \n Contact Us\n \n \n \n Watch Intro\n \n
                                                                                                                                                                                                                                                                                                  About Prestige Luxury Cleanings LLC
                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                  We Provide Landscaping And Garden Care Services

                                                                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit \n \"gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk\" \n
                                                                                                                                                                                                                                                                                                    \n
                                                                                                                                                                                                                                                                                                  • \n Public Liability Insurance\n
                                                                                                                                                                                                                                                                                                  • \n
                                                                                                                                                                                                                                                                                                  • \n Environmentally Friendly\n
                                                                                                                                                                                                                                                                                                  • \n
                                                                                                                                                                                                                                                                                                  • \n On Time, Every Time\n
                                                                                                                                                                                                                                                                                                  • \n
                                                                                                                                                                                                                                                                                                  • \n Beautiful Garden Designs\n
                                                                                                                                                                                                                                                                                                  • \n
                                                                                                                                                                                                                                                                                                  • \n Modern Machinery And Tool\n
                                                                                                                                                                                                                                                                                                  • \n
                                                                                                                                                                                                                                                                                                  \n \n More About Us\n \n \"gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w\" \n \"gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68\" \n 0\n +\n Projects Completed\n \n
                                                                                                                                                                                                                                                                                                  Why Choose Us
                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                  We Have The Perfect Solution For Your Landscape Problems

                                                                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation \n

                                                                                                                                                                                                                                                                                                  Variation Gardening

                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                  Expert Landscapers

                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                  Affordable Price

                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                  Free Consultation

                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                  Our Services
                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                  Find The Best Service For Your Garden

                                                                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n

                                                                                                                                                                                                                                                                                                  Lawn Services

                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                  Driveway Pressure Washing

                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                  Deck Pressure Washing

                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                  Weed Control

                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                  Grass Feed

                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                  Edging Cleaning

                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet \n \n
                                                                                                                                                                                                                                                                                                  Best Landscaping
                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                  Need Someone To Take Care Your Garden & Lawn?

                                                                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

                                                                                                                                                                                                                                                                                                  Make Appointment & Take Care Your Garden

                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                  \n \n
                                                                                                                                                                                                                                                                                                  Work Process
                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                  We Complete Every Step Carefully

                                                                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n

                                                                                                                                                                                                                                                                                                  \n Start Consultation \n

                                                                                                                                                                                                                                                                                                  \n 01 \n

                                                                                                                                                                                                                                                                                                  \n Design Installation \n

                                                                                                                                                                                                                                                                                                  \n 02 \n

                                                                                                                                                                                                                                                                                                  \n Start Consturction \n

                                                                                                                                                                                                                                                                                                  \n 03 \n

                                                                                                                                                                                                                                                                                                  \n Finished Work \n

                                                                                                                                                                                                                                                                                                  \n 04 \n 0\n +\n Years of Experience\n 0\n +\n Projects Completed\n 0\n +\n Happy Customers\n 0\n +\n Expert Landscapers\n
                                                                                                                                                                                                                                                                                                  Our Projects
                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                  Project We Have Done\n

                                                                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n All Projects\n \n \"Cutting\n

                                                                                                                                                                                                                                                                                                  Cutting Leaf

                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                    \n \"Home\n

                                                                                                                                                                                                                                                                                                    Home Garden

                                                                                                                                                                                                                                                                                                    \n

                                                                                                                                                                                                                                                                                                    \n

                                                                                                                                                                                                                                                                                                    Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                    \n
                                                                                                                                                                                                                                                                                                      \n \"Build\n

                                                                                                                                                                                                                                                                                                      Build Backyard

                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                        \n
                                                                                                                                                                                                                                                                                                        Testimonials
                                                                                                                                                                                                                                                                                                        \n

                                                                                                                                                                                                                                                                                                        What They Says About Us

                                                                                                                                                                                                                                                                                                        \n

                                                                                                                                                                                                                                                                                                        Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                        \n
                                                                                                                                                                                                                                                                                                          \n \"Regan\n Regan Traynor\n

                                                                                                                                                                                                                                                                                                          Entrepreneur

                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                            \n \"Maisha\n Maisha Dunn\n

                                                                                                                                                                                                                                                                                                            Entrepreneur

                                                                                                                                                                                                                                                                                                            \n

                                                                                                                                                                                                                                                                                                            Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                            \n
                                                                                                                                                                                                                                                                                                              \n \"Reis\n Reis Leonard\n

                                                                                                                                                                                                                                                                                                              Businessman

                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                              Our Blog
                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                              Lates News and Articles

                                                                                                                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n ','Home','','inherit','closed','closed','','24-revision-v1','','','2024-07-24 14:58:32','2024-07-24 14:58:32','',24,'https://victor-quintero.designsfunnelserver.com/?p=208',0,'revision','',0),(209,1,'2024-07-24 14:58:32','2024-07-24 14:58:32','

                                                                                                                                                                                                                                                                                                              Complete For All Landscape Service And Maintenance

                                                                                                                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation \n \n Contact Us\n \n \n \n Watch Intro\n \n
                                                                                                                                                                                                                                                                                                              About Prestige Luxury Cleanings LLC
                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                              We Provide Landscaping And Garden Care Services

                                                                                                                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit \n \"gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk\" \n
                                                                                                                                                                                                                                                                                                                \n
                                                                                                                                                                                                                                                                                                              • \n Public Liability Insurance\n
                                                                                                                                                                                                                                                                                                              • \n
                                                                                                                                                                                                                                                                                                              • \n Environmentally Friendly\n
                                                                                                                                                                                                                                                                                                              • \n
                                                                                                                                                                                                                                                                                                              • \n On Time, Every Time\n
                                                                                                                                                                                                                                                                                                              • \n
                                                                                                                                                                                                                                                                                                              • \n Beautiful Garden Designs\n
                                                                                                                                                                                                                                                                                                              • \n
                                                                                                                                                                                                                                                                                                              • \n Modern Machinery And Tool\n
                                                                                                                                                                                                                                                                                                              • \n
                                                                                                                                                                                                                                                                                                              \n \n More About Us\n \n \"gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w\" \n \"gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68\" \n 0\n +\n Projects Completed\n \n
                                                                                                                                                                                                                                                                                                              Why Choose Us
                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                              We Have The Perfect Solution For Your Landscape Problems

                                                                                                                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation \n

                                                                                                                                                                                                                                                                                                              Variation Gardening

                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                              Expert Landscapers

                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                              Affordable Price

                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                              Free Consultation

                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                              Our Services
                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                              Find The Best Service For Your Garden

                                                                                                                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n

                                                                                                                                                                                                                                                                                                              Lawn Services

                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                              Driveway Pressure Washing

                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                              Deck Pressure Washing

                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                              Weed Control

                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                              Grass Feed

                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                              Edging Cleaning

                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet \n \n
                                                                                                                                                                                                                                                                                                              Best Landscaping
                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                              Need Someone To Take Care Your Garden & Lawn?

                                                                                                                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

                                                                                                                                                                                                                                                                                                              Make Appointment & Take Care Your Garden

                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                              \n \n
                                                                                                                                                                                                                                                                                                              Work Process
                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                              We Complete Every Step Carefully

                                                                                                                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n

                                                                                                                                                                                                                                                                                                              \n Start Consultation \n

                                                                                                                                                                                                                                                                                                              \n 01 \n

                                                                                                                                                                                                                                                                                                              \n Design Installation \n

                                                                                                                                                                                                                                                                                                              \n 02 \n

                                                                                                                                                                                                                                                                                                              \n Start Consturction \n

                                                                                                                                                                                                                                                                                                              \n 03 \n

                                                                                                                                                                                                                                                                                                              \n Finished Work \n

                                                                                                                                                                                                                                                                                                              \n 04 \n 0\n +\n Years of Experience\n 0\n +\n Projects Completed\n 0\n +\n Happy Customers\n 0\n +\n Expert Landscapers\n
                                                                                                                                                                                                                                                                                                              Our Projects
                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                              Project We Have Done\n

                                                                                                                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n All Projects\n \n \"Cutting\n

                                                                                                                                                                                                                                                                                                              Cutting Leaf

                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                \n \"Home\n

                                                                                                                                                                                                                                                                                                                Home Garden

                                                                                                                                                                                                                                                                                                                \n

                                                                                                                                                                                                                                                                                                                \n

                                                                                                                                                                                                                                                                                                                Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                \n
                                                                                                                                                                                                                                                                                                                  \n \"Build\n

                                                                                                                                                                                                                                                                                                                  Build Backyard

                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                    \n
                                                                                                                                                                                                                                                                                                                    Testimonials
                                                                                                                                                                                                                                                                                                                    \n

                                                                                                                                                                                                                                                                                                                    What They Says About Us

                                                                                                                                                                                                                                                                                                                    \n

                                                                                                                                                                                                                                                                                                                    Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                    \n
                                                                                                                                                                                                                                                                                                                      \n \"Regan\n Regan Traynor\n

                                                                                                                                                                                                                                                                                                                      Entrepreneur

                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                        \n \"Maisha\n Maisha Dunn\n

                                                                                                                                                                                                                                                                                                                        Entrepreneur

                                                                                                                                                                                                                                                                                                                        \n

                                                                                                                                                                                                                                                                                                                        Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                        \n
                                                                                                                                                                                                                                                                                                                          \n \"Reis\n Reis Leonard\n

                                                                                                                                                                                                                                                                                                                          Businessman

                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                          Our Blog
                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                          Lates News and Articles

                                                                                                                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n ','Home','','inherit','closed','closed','','24-revision-v1','','','2024-07-24 14:58:32','2024-07-24 14:58:32','',24,'https://victor-quintero.designsfunnelserver.com/?p=209',0,'revision','',0),(210,1,'2024-07-24 14:58:33','2024-07-24 14:58:33','

                                                                                                                                                                                                                                                                                                                          Complete For All Landscape Service And Maintenance

                                                                                                                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation \n \n Contact Us\n \n \n \n Watch Intro\n \n
                                                                                                                                                                                                                                                                                                                          About Prestige Luxury Cleanings LLC
                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                          We Provide Landscaping And Garden Care Services

                                                                                                                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit \n \"gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk\" \n
                                                                                                                                                                                                                                                                                                                            \n
                                                                                                                                                                                                                                                                                                                          • \n Public Liability Insurance\n
                                                                                                                                                                                                                                                                                                                          • \n
                                                                                                                                                                                                                                                                                                                          • \n Environmentally Friendly\n
                                                                                                                                                                                                                                                                                                                          • \n
                                                                                                                                                                                                                                                                                                                          • \n On Time, Every Time\n
                                                                                                                                                                                                                                                                                                                          • \n
                                                                                                                                                                                                                                                                                                                          • \n Beautiful Garden Designs\n
                                                                                                                                                                                                                                                                                                                          • \n
                                                                                                                                                                                                                                                                                                                          • \n Modern Machinery And Tool\n
                                                                                                                                                                                                                                                                                                                          • \n
                                                                                                                                                                                                                                                                                                                          \n \n More About Us\n \n \"gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w\" \n \"gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68\" \n 0\n +\n Projects Completed\n \n
                                                                                                                                                                                                                                                                                                                          Why Choose Us
                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                          We Have The Perfect Solution For Your Landscape Problems

                                                                                                                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation \n

                                                                                                                                                                                                                                                                                                                          Variation Gardening

                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                          Expert Landscapers

                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                          Affordable Price

                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                          Free Consultation

                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                          Our Services
                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                          Find The Best Service For Your Garden

                                                                                                                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n

                                                                                                                                                                                                                                                                                                                          Residential And Commercial Projects

                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                          Driveway Pressure Washing

                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                          Deck Pressure Washing

                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                          Weed Control

                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                          Grass Feed

                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                          Lawn Services

                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n \n
                                                                                                                                                                                                                                                                                                                          Best Landscaping
                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                          Need Someone To Take Care Your Garden & Lawn?

                                                                                                                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

                                                                                                                                                                                                                                                                                                                          Make Appointment & Take Care Your Garden

                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                          \n \n
                                                                                                                                                                                                                                                                                                                          Work Process
                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                          We Complete Every Step Carefully

                                                                                                                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n

                                                                                                                                                                                                                                                                                                                          \n Start Consultation \n

                                                                                                                                                                                                                                                                                                                          \n 01 \n

                                                                                                                                                                                                                                                                                                                          \n Design Installation \n

                                                                                                                                                                                                                                                                                                                          \n 02 \n

                                                                                                                                                                                                                                                                                                                          \n Start Consturction \n

                                                                                                                                                                                                                                                                                                                          \n 03 \n

                                                                                                                                                                                                                                                                                                                          \n Finished Work \n

                                                                                                                                                                                                                                                                                                                          \n 04 \n 0\n +\n Years of Experience\n 0\n +\n Projects Completed\n 0\n +\n Happy Customers\n 0\n +\n Expert Landscapers\n
                                                                                                                                                                                                                                                                                                                          Our Projects
                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                          Project We Have Done\n

                                                                                                                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n All Projects\n \n \"Cutting\n

                                                                                                                                                                                                                                                                                                                          Cutting Leaf

                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                            \n \"Home\n

                                                                                                                                                                                                                                                                                                                            Home Garden

                                                                                                                                                                                                                                                                                                                            \n

                                                                                                                                                                                                                                                                                                                            \n

                                                                                                                                                                                                                                                                                                                            Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                            \n
                                                                                                                                                                                                                                                                                                                              \n \"Build\n

                                                                                                                                                                                                                                                                                                                              Build Backyard

                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                \n
                                                                                                                                                                                                                                                                                                                                Testimonials
                                                                                                                                                                                                                                                                                                                                \n

                                                                                                                                                                                                                                                                                                                                What They Says About Us

                                                                                                                                                                                                                                                                                                                                \n

                                                                                                                                                                                                                                                                                                                                Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                \n
                                                                                                                                                                                                                                                                                                                                  \n \"Regan\n Regan Traynor\n

                                                                                                                                                                                                                                                                                                                                  Entrepreneur

                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                    \n \"Maisha\n Maisha Dunn\n

                                                                                                                                                                                                                                                                                                                                    Entrepreneur

                                                                                                                                                                                                                                                                                                                                    \n

                                                                                                                                                                                                                                                                                                                                    Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                    \n
                                                                                                                                                                                                                                                                                                                                      \n \"Reis\n Reis Leonard\n

                                                                                                                                                                                                                                                                                                                                      Businessman

                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                      Our Blog
                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                      Lates News and Articles

                                                                                                                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n ','Home','','inherit','closed','closed','','24-revision-v1','','','2024-07-24 14:58:33','2024-07-24 14:58:33','',24,'https://victor-quintero.designsfunnelserver.com/?p=210',0,'revision','',0),(212,1,'2024-07-24 15:03:27','2024-07-24 15:03:27','

                                                                                                                                                                                                                                                                                                                                      Complete For All Landscape Service And Maintenance

                                                                                                                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation \n \n Contact Us\n \n \n \n Watch Intro\n \n
                                                                                                                                                                                                                                                                                                                                      About Prestige Luxury Cleanings LLC
                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                      We Provide Landscaping And Garden Care Services

                                                                                                                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit \n \"gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk\" \n
                                                                                                                                                                                                                                                                                                                                        \n
                                                                                                                                                                                                                                                                                                                                      • \n Public Liability Insurance\n
                                                                                                                                                                                                                                                                                                                                      • \n
                                                                                                                                                                                                                                                                                                                                      • \n Environmentally Friendly\n
                                                                                                                                                                                                                                                                                                                                      • \n
                                                                                                                                                                                                                                                                                                                                      • \n On Time, Every Time\n
                                                                                                                                                                                                                                                                                                                                      • \n
                                                                                                                                                                                                                                                                                                                                      • \n Beautiful Garden Designs\n
                                                                                                                                                                                                                                                                                                                                      • \n
                                                                                                                                                                                                                                                                                                                                      • \n Modern Machinery And Tool\n
                                                                                                                                                                                                                                                                                                                                      • \n
                                                                                                                                                                                                                                                                                                                                      \n \n More About Us\n \n \"gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w\" \n \"gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68\" \n 0\n +\n Projects Completed\n \n
                                                                                                                                                                                                                                                                                                                                      Why Choose Us
                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                      We Have The Perfect Solution For Your Landscape Problems

                                                                                                                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation \n

                                                                                                                                                                                                                                                                                                                                      Variation Gardening

                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                      Expert Landscapers

                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                      Affordable Price

                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                      Free Consultation

                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                      Our Services
                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                      Find The Best Service For Your Garden

                                                                                                                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n

                                                                                                                                                                                                                                                                                                                                      Residential And Commercial Projects

                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                      Driveway Pressure Washing

                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                      Deck Pressure Washing

                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                      Weed Control

                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                      Grass Feed

                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                      Lawn Services

                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n \n
                                                                                                                                                                                                                                                                                                                                      Best Landscaping
                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                      Need Someone To Take Care Your Garden & Lawn?

                                                                                                                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

                                                                                                                                                                                                                                                                                                                                      Make Appointment & Take Care Your Garden

                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                      \n \n
                                                                                                                                                                                                                                                                                                                                      Work Process
                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                      We Complete Every Step Carefully

                                                                                                                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n

                                                                                                                                                                                                                                                                                                                                      \n Start Consultation \n

                                                                                                                                                                                                                                                                                                                                      \n 01 \n

                                                                                                                                                                                                                                                                                                                                      \n Design Installation \n

                                                                                                                                                                                                                                                                                                                                      \n 02 \n

                                                                                                                                                                                                                                                                                                                                      \n Start Consturction \n

                                                                                                                                                                                                                                                                                                                                      \n 03 \n

                                                                                                                                                                                                                                                                                                                                      \n Finished Work \n

                                                                                                                                                                                                                                                                                                                                      \n 04 \n 0\n +\n Years of Experience\n 0\n +\n Projects Completed\n 0\n +\n Happy Customers\n 0\n +\n Expert Landscapers\n
                                                                                                                                                                                                                                                                                                                                      Our Projects
                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                      Project We Have Done\n

                                                                                                                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n All Projects\n \n \"Cutting\n

                                                                                                                                                                                                                                                                                                                                      Cutting Leaf

                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                        \n \"Home\n

                                                                                                                                                                                                                                                                                                                                        Home Garden

                                                                                                                                                                                                                                                                                                                                        \n

                                                                                                                                                                                                                                                                                                                                        \n

                                                                                                                                                                                                                                                                                                                                        Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                        \n
                                                                                                                                                                                                                                                                                                                                          \n \"Build\n

                                                                                                                                                                                                                                                                                                                                          Build Backyard

                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                            \n
                                                                                                                                                                                                                                                                                                                                            Testimonials
                                                                                                                                                                                                                                                                                                                                            \n

                                                                                                                                                                                                                                                                                                                                            What They Says About Us

                                                                                                                                                                                                                                                                                                                                            \n

                                                                                                                                                                                                                                                                                                                                            Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                            \n
                                                                                                                                                                                                                                                                                                                                              \n \"Regan\n Regan Traynor\n

                                                                                                                                                                                                                                                                                                                                              Entrepreneur

                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                \n \"Maisha\n Maisha Dunn\n

                                                                                                                                                                                                                                                                                                                                                Entrepreneur

                                                                                                                                                                                                                                                                                                                                                \n

                                                                                                                                                                                                                                                                                                                                                Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                \n
                                                                                                                                                                                                                                                                                                                                                  \n \"Reis\n Reis Leonard\n

                                                                                                                                                                                                                                                                                                                                                  Businessman

                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                  Our Blog
                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                  Lates News and Articles

                                                                                                                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n ','Home','','inherit','closed','closed','','24-revision-v1','','','2024-07-24 15:03:27','2024-07-24 15:03:27','',24,'https://victor-quintero.designsfunnelserver.com/?p=212',0,'revision','',0),(213,1,'2024-07-24 15:03:27','2024-07-24 15:03:27','

                                                                                                                                                                                                                                                                                                                                                  Complete For All Landscape Service And Maintenance

                                                                                                                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation \n \n Contact Us\n \n \n \n Watch Intro\n \n
                                                                                                                                                                                                                                                                                                                                                  About Prestige Luxury Cleanings LLC
                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                  We Provide Landscaping And Garden Care Services

                                                                                                                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit \n \"gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk\" \n
                                                                                                                                                                                                                                                                                                                                                    \n
                                                                                                                                                                                                                                                                                                                                                  • \n Public Liability Insurance\n
                                                                                                                                                                                                                                                                                                                                                  • \n
                                                                                                                                                                                                                                                                                                                                                  • \n Environmentally Friendly\n
                                                                                                                                                                                                                                                                                                                                                  • \n
                                                                                                                                                                                                                                                                                                                                                  • \n On Time, Every Time\n
                                                                                                                                                                                                                                                                                                                                                  • \n
                                                                                                                                                                                                                                                                                                                                                  • \n Beautiful Garden Designs\n
                                                                                                                                                                                                                                                                                                                                                  • \n
                                                                                                                                                                                                                                                                                                                                                  • \n Modern Machinery And Tool\n
                                                                                                                                                                                                                                                                                                                                                  • \n
                                                                                                                                                                                                                                                                                                                                                  \n \n More About Us\n \n \"gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w\" \n \"gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68\" \n 0\n +\n Projects Completed\n \n
                                                                                                                                                                                                                                                                                                                                                  Why Choose Us
                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                  We Have The Perfect Solution For Your Landscape Problems

                                                                                                                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation \n

                                                                                                                                                                                                                                                                                                                                                  Variation Gardening

                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                  Expert Landscapers

                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                  Affordable Price

                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                  Free Consultation

                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                  Our Services
                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                  Find The Best Service For Your Garden

                                                                                                                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n

                                                                                                                                                                                                                                                                                                                                                  Residential And Commercial Projects

                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                  Driveway Pressure Washing

                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                  Deck Pressure Washing

                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                  Weed Control

                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                  Grass Feed

                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                  Lawn Services

                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet \n \n
                                                                                                                                                                                                                                                                                                                                                  Best Landscaping
                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                  Need Someone To Take Care Your Garden & Lawn?

                                                                                                                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

                                                                                                                                                                                                                                                                                                                                                  Make Appointment & Take Care Your Garden

                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                  \n \n
                                                                                                                                                                                                                                                                                                                                                  Work Process
                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                  We Complete Every Step Carefully

                                                                                                                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n

                                                                                                                                                                                                                                                                                                                                                  \n Start Consultation \n

                                                                                                                                                                                                                                                                                                                                                  \n 01 \n

                                                                                                                                                                                                                                                                                                                                                  \n Design Installation \n

                                                                                                                                                                                                                                                                                                                                                  \n 02 \n

                                                                                                                                                                                                                                                                                                                                                  \n Start Consturction \n

                                                                                                                                                                                                                                                                                                                                                  \n 03 \n

                                                                                                                                                                                                                                                                                                                                                  \n Finished Work \n

                                                                                                                                                                                                                                                                                                                                                  \n 04 \n 0\n +\n Years of Experience\n 0\n +\n Projects Completed\n 0\n +\n Happy Customers\n 0\n +\n Expert Landscapers\n
                                                                                                                                                                                                                                                                                                                                                  Our Projects
                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                  Project We Have Done\n

                                                                                                                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n All Projects\n \n \"Cutting\n

                                                                                                                                                                                                                                                                                                                                                  Cutting Leaf

                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                    \n \"Home\n

                                                                                                                                                                                                                                                                                                                                                    Home Garden

                                                                                                                                                                                                                                                                                                                                                    \n

                                                                                                                                                                                                                                                                                                                                                    \n

                                                                                                                                                                                                                                                                                                                                                    Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                    \n
                                                                                                                                                                                                                                                                                                                                                      \n \"Build\n

                                                                                                                                                                                                                                                                                                                                                      Build Backyard

                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                        \n
                                                                                                                                                                                                                                                                                                                                                        Testimonials
                                                                                                                                                                                                                                                                                                                                                        \n

                                                                                                                                                                                                                                                                                                                                                        What They Says About Us

                                                                                                                                                                                                                                                                                                                                                        \n

                                                                                                                                                                                                                                                                                                                                                        Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                        \n
                                                                                                                                                                                                                                                                                                                                                          \n \"Regan\n Regan Traynor\n

                                                                                                                                                                                                                                                                                                                                                          Entrepreneur

                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                            \n \"Maisha\n Maisha Dunn\n

                                                                                                                                                                                                                                                                                                                                                            Entrepreneur

                                                                                                                                                                                                                                                                                                                                                            \n

                                                                                                                                                                                                                                                                                                                                                            Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                            \n
                                                                                                                                                                                                                                                                                                                                                              \n \"Reis\n Reis Leonard\n

                                                                                                                                                                                                                                                                                                                                                              Businessman

                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                              Our Blog
                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                              Lates News and Articles

                                                                                                                                                                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n ','Home','','inherit','closed','closed','','24-revision-v1','','','2024-07-24 15:03:27','2024-07-24 15:03:27','',24,'https://victor-quintero.designsfunnelserver.com/?p=213',0,'revision','',0),(214,1,'2024-07-24 15:03:27','2024-07-24 15:03:27','

                                                                                                                                                                                                                                                                                                                                                              Complete For All Landscape Service And Maintenance

                                                                                                                                                                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation \n \n Contact Us\n \n \n \n Watch Intro\n \n
                                                                                                                                                                                                                                                                                                                                                              About Prestige Luxury Cleanings LLC
                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                              We Provide Landscaping And Garden Care Services

                                                                                                                                                                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit \n \"gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk\" \n
                                                                                                                                                                                                                                                                                                                                                                \n
                                                                                                                                                                                                                                                                                                                                                              • \n Public Liability Insurance\n
                                                                                                                                                                                                                                                                                                                                                              • \n
                                                                                                                                                                                                                                                                                                                                                              • \n Environmentally Friendly\n
                                                                                                                                                                                                                                                                                                                                                              • \n
                                                                                                                                                                                                                                                                                                                                                              • \n On Time, Every Time\n
                                                                                                                                                                                                                                                                                                                                                              • \n
                                                                                                                                                                                                                                                                                                                                                              • \n Beautiful Garden Designs\n
                                                                                                                                                                                                                                                                                                                                                              • \n
                                                                                                                                                                                                                                                                                                                                                              • \n Modern Machinery And Tool\n
                                                                                                                                                                                                                                                                                                                                                              • \n
                                                                                                                                                                                                                                                                                                                                                              \n \n More About Us\n \n \"gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w\" \n \"gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68\" \n 0\n +\n Projects Completed\n \n
                                                                                                                                                                                                                                                                                                                                                              Why Choose Us
                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                              We Have The Perfect Solution For Your Landscape Problems

                                                                                                                                                                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation \n

                                                                                                                                                                                                                                                                                                                                                              Variation Gardening

                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                              Expert Landscapers

                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                              Affordable Price

                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                              Free Consultation

                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                              Our Services
                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                              Find The Best Service For Your Garden

                                                                                                                                                                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n

                                                                                                                                                                                                                                                                                                                                                              Residential And Commercial Projects

                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                              Lawn Services

                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                              Driveway Pressure Washing

                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                              Deck Pressure Washing

                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                              Weed Control

                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                              Grass Feed

                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet \n \n
                                                                                                                                                                                                                                                                                                                                                              Best Landscaping
                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                              Need Someone To Take Care Your Garden & Lawn?

                                                                                                                                                                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

                                                                                                                                                                                                                                                                                                                                                              Make Appointment & Take Care Your Garden

                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                              \n \n
                                                                                                                                                                                                                                                                                                                                                              Work Process
                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                              We Complete Every Step Carefully

                                                                                                                                                                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n

                                                                                                                                                                                                                                                                                                                                                              \n Start Consultation \n

                                                                                                                                                                                                                                                                                                                                                              \n 01 \n

                                                                                                                                                                                                                                                                                                                                                              \n Design Installation \n

                                                                                                                                                                                                                                                                                                                                                              \n 02 \n

                                                                                                                                                                                                                                                                                                                                                              \n Start Consturction \n

                                                                                                                                                                                                                                                                                                                                                              \n 03 \n

                                                                                                                                                                                                                                                                                                                                                              \n Finished Work \n

                                                                                                                                                                                                                                                                                                                                                              \n 04 \n 0\n +\n Years of Experience\n 0\n +\n Projects Completed\n 0\n +\n Happy Customers\n 0\n +\n Expert Landscapers\n
                                                                                                                                                                                                                                                                                                                                                              Our Projects
                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                              Project We Have Done\n

                                                                                                                                                                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n All Projects\n \n \"Cutting\n

                                                                                                                                                                                                                                                                                                                                                              Cutting Leaf

                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                \n \"Home\n

                                                                                                                                                                                                                                                                                                                                                                Home Garden

                                                                                                                                                                                                                                                                                                                                                                \n

                                                                                                                                                                                                                                                                                                                                                                \n

                                                                                                                                                                                                                                                                                                                                                                Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                \n
                                                                                                                                                                                                                                                                                                                                                                  \n \"Build\n

                                                                                                                                                                                                                                                                                                                                                                  Build Backyard

                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                                    \n
                                                                                                                                                                                                                                                                                                                                                                    Testimonials
                                                                                                                                                                                                                                                                                                                                                                    \n

                                                                                                                                                                                                                                                                                                                                                                    What They Says About Us

                                                                                                                                                                                                                                                                                                                                                                    \n

                                                                                                                                                                                                                                                                                                                                                                    Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                    \n
                                                                                                                                                                                                                                                                                                                                                                      \n \"Regan\n Regan Traynor\n

                                                                                                                                                                                                                                                                                                                                                                      Entrepreneur

                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                        \n \"Maisha\n Maisha Dunn\n

                                                                                                                                                                                                                                                                                                                                                                        Entrepreneur

                                                                                                                                                                                                                                                                                                                                                                        \n

                                                                                                                                                                                                                                                                                                                                                                        Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                        \n
                                                                                                                                                                                                                                                                                                                                                                          \n \"Reis\n Reis Leonard\n

                                                                                                                                                                                                                                                                                                                                                                          Businessman

                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                          Our Blog
                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                          Lates News and Articles

                                                                                                                                                                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n ','Home','','inherit','closed','closed','','24-revision-v1','','','2024-07-24 15:03:27','2024-07-24 15:03:27','',24,'https://victor-quintero.designsfunnelserver.com/?p=214',0,'revision','',0),(215,1,'2024-07-24 15:15:40','2024-07-24 15:15:40','

                                                                                                                                                                                                                                                                                                                                                                          Complete For All Landscape Service And Maintenance

                                                                                                                                                                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation \n \n Contact Us\n \n \n \n Watch Intro\n \n
                                                                                                                                                                                                                                                                                                                                                                          About Prestige Luxury Cleanings LLC
                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                          We Provide Landscaping And Garden Care Services

                                                                                                                                                                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit \n \"gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk\" \n
                                                                                                                                                                                                                                                                                                                                                                            \n
                                                                                                                                                                                                                                                                                                                                                                          • \n Public Liability Insurance\n
                                                                                                                                                                                                                                                                                                                                                                          • \n
                                                                                                                                                                                                                                                                                                                                                                          • \n Environmentally Friendly\n
                                                                                                                                                                                                                                                                                                                                                                          • \n
                                                                                                                                                                                                                                                                                                                                                                          • \n On Time, Every Time\n
                                                                                                                                                                                                                                                                                                                                                                          • \n
                                                                                                                                                                                                                                                                                                                                                                          • \n Beautiful Garden Designs\n
                                                                                                                                                                                                                                                                                                                                                                          • \n
                                                                                                                                                                                                                                                                                                                                                                          • \n Modern Machinery And Tool\n
                                                                                                                                                                                                                                                                                                                                                                          • \n
                                                                                                                                                                                                                                                                                                                                                                          \n \n More About Us\n \n \"gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w\" \n \"gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68\" \n 0\n +\n Projects Completed\n \n
                                                                                                                                                                                                                                                                                                                                                                          Why Choose Us
                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                          We Have The Perfect Solution For Your Landscape Problems

                                                                                                                                                                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation \n

                                                                                                                                                                                                                                                                                                                                                                          Variation Gardening

                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                          Expert Landscapers

                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                          Affordable Price

                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                          Free Consultation

                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                          Our Services
                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                          Find The Best Service For Your Garden

                                                                                                                                                                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n

                                                                                                                                                                                                                                                                                                                                                                          Residential And Commercial Projects

                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                          Lawn Services

                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                          Driveway Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                          Deck Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                          Weed Control

                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                          Grass Feed

                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n \n
                                                                                                                                                                                                                                                                                                                                                                          Best Landscaping
                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                          Need Someone To Take Care Your Garden & Lawn?

                                                                                                                                                                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

                                                                                                                                                                                                                                                                                                                                                                          Make Appointment & Take Care Your Garden

                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                          \n \n
                                                                                                                                                                                                                                                                                                                                                                          Work Process
                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                          We Complete Every Step Carefully

                                                                                                                                                                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n

                                                                                                                                                                                                                                                                                                                                                                          \n Start Consultation \n

                                                                                                                                                                                                                                                                                                                                                                          \n 01 \n

                                                                                                                                                                                                                                                                                                                                                                          \n Design Installation \n

                                                                                                                                                                                                                                                                                                                                                                          \n 02 \n

                                                                                                                                                                                                                                                                                                                                                                          \n Start Consturction \n

                                                                                                                                                                                                                                                                                                                                                                          \n 03 \n

                                                                                                                                                                                                                                                                                                                                                                          \n Finished Work \n

                                                                                                                                                                                                                                                                                                                                                                          \n 04 \n 0\n +\n Years of Experience\n 0\n +\n Projects Completed\n 0\n +\n Happy Customers\n 0\n +\n Expert Landscapers\n
                                                                                                                                                                                                                                                                                                                                                                          Our Projects
                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                          Project We Have Done\n

                                                                                                                                                                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n All Projects\n \n \"Cutting\n

                                                                                                                                                                                                                                                                                                                                                                          Cutting Leaf

                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                            \n \"Home\n

                                                                                                                                                                                                                                                                                                                                                                            Home Garden

                                                                                                                                                                                                                                                                                                                                                                            \n

                                                                                                                                                                                                                                                                                                                                                                            \n

                                                                                                                                                                                                                                                                                                                                                                            Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                            \n
                                                                                                                                                                                                                                                                                                                                                                              \n \"Build\n

                                                                                                                                                                                                                                                                                                                                                                              Build Backyard

                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                \n
                                                                                                                                                                                                                                                                                                                                                                                Testimonials
                                                                                                                                                                                                                                                                                                                                                                                \n

                                                                                                                                                                                                                                                                                                                                                                                What They Says About Us

                                                                                                                                                                                                                                                                                                                                                                                \n

                                                                                                                                                                                                                                                                                                                                                                                Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                \n
                                                                                                                                                                                                                                                                                                                                                                                  \n \"Regan\n Regan Traynor\n

                                                                                                                                                                                                                                                                                                                                                                                  Entrepreneur

                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                                                    \n \"Maisha\n Maisha Dunn\n

                                                                                                                                                                                                                                                                                                                                                                                    Entrepreneur

                                                                                                                                                                                                                                                                                                                                                                                    \n

                                                                                                                                                                                                                                                                                                                                                                                    Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                    \n
                                                                                                                                                                                                                                                                                                                                                                                      \n \"Reis\n Reis Leonard\n

                                                                                                                                                                                                                                                                                                                                                                                      Businessman

                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                      Our Blog
                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                      Lates News and Articles

                                                                                                                                                                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n ','Home','','inherit','closed','closed','','24-revision-v1','','','2024-07-24 15:15:40','2024-07-24 15:15:40','',24,'https://victor-quintero.designsfunnelserver.com/?p=215',0,'revision','',0),(216,1,'2024-07-24 15:15:41','2024-07-24 15:15:41','

                                                                                                                                                                                                                                                                                                                                                                                      Complete For All Landscape Service And Maintenance

                                                                                                                                                                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation \n \n Contact Us\n \n \n \n Watch Intro\n \n
                                                                                                                                                                                                                                                                                                                                                                                      About Prestige Luxury Cleanings LLC
                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                      We Provide Landscaping And Garden Care Services

                                                                                                                                                                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit \n \"gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk\" \n
                                                                                                                                                                                                                                                                                                                                                                                        \n
                                                                                                                                                                                                                                                                                                                                                                                      • \n Public Liability Insurance\n
                                                                                                                                                                                                                                                                                                                                                                                      • \n
                                                                                                                                                                                                                                                                                                                                                                                      • \n Environmentally Friendly\n
                                                                                                                                                                                                                                                                                                                                                                                      • \n
                                                                                                                                                                                                                                                                                                                                                                                      • \n On Time, Every Time\n
                                                                                                                                                                                                                                                                                                                                                                                      • \n
                                                                                                                                                                                                                                                                                                                                                                                      • \n Beautiful Garden Designs\n
                                                                                                                                                                                                                                                                                                                                                                                      • \n
                                                                                                                                                                                                                                                                                                                                                                                      • \n Modern Machinery And Tool\n
                                                                                                                                                                                                                                                                                                                                                                                      • \n
                                                                                                                                                                                                                                                                                                                                                                                      \n \n More About Us\n \n \"gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w\" \n \"gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68\" \n 0\n +\n Projects Completed\n \n
                                                                                                                                                                                                                                                                                                                                                                                      Why Choose Us
                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                      We Have The Perfect Solution For Your Landscape Problems

                                                                                                                                                                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation \n

                                                                                                                                                                                                                                                                                                                                                                                      Variation Gardening

                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                      Expert Landscapers

                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                      Affordable Price

                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                      Free Consultation

                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                      Our Services
                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                      Find The Best Service For Your Garden

                                                                                                                                                                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n

                                                                                                                                                                                                                                                                                                                                                                                      Residential And Commercial Projects

                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                      Lawn Services

                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                      Driveway Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                      Deck Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                      Weed Control

                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                      Grass Feed

                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n \n
                                                                                                                                                                                                                                                                                                                                                                                      Best Landscaping
                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                      Need Someone To Take Care Your Garden & Lawn?

                                                                                                                                                                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

                                                                                                                                                                                                                                                                                                                                                                                      Make Appointment & Take Care Your Garden

                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                      \n \n
                                                                                                                                                                                                                                                                                                                                                                                      Work Process
                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                      We Complete Every Step Carefully

                                                                                                                                                                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n

                                                                                                                                                                                                                                                                                                                                                                                      \n Start Consultation \n

                                                                                                                                                                                                                                                                                                                                                                                      \n 01 \n

                                                                                                                                                                                                                                                                                                                                                                                      \n Design Installation \n

                                                                                                                                                                                                                                                                                                                                                                                      \n 02 \n

                                                                                                                                                                                                                                                                                                                                                                                      \n Start Consturction \n

                                                                                                                                                                                                                                                                                                                                                                                      \n 03 \n

                                                                                                                                                                                                                                                                                                                                                                                      \n Finished Work \n

                                                                                                                                                                                                                                                                                                                                                                                      \n 04 \n 0\n +\n Years of Experience\n 0\n +\n Projects Completed\n 0\n +\n Happy Customers\n 0\n +\n Expert Landscapers\n
                                                                                                                                                                                                                                                                                                                                                                                      Our Projects
                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                      Project We Have Done\n

                                                                                                                                                                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n All Projects\n \n \"Cutting\n

                                                                                                                                                                                                                                                                                                                                                                                      Cutting Leaf

                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                        \n \"Home\n

                                                                                                                                                                                                                                                                                                                                                                                        Home Garden

                                                                                                                                                                                                                                                                                                                                                                                        \n

                                                                                                                                                                                                                                                                                                                                                                                        \n

                                                                                                                                                                                                                                                                                                                                                                                        Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                        \n
                                                                                                                                                                                                                                                                                                                                                                                          \n \"Build\n

                                                                                                                                                                                                                                                                                                                                                                                          Build Backyard

                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                            \n
                                                                                                                                                                                                                                                                                                                                                                                            Testimonials
                                                                                                                                                                                                                                                                                                                                                                                            \n

                                                                                                                                                                                                                                                                                                                                                                                            What They Says About Us

                                                                                                                                                                                                                                                                                                                                                                                            \n

                                                                                                                                                                                                                                                                                                                                                                                            Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                            \n
                                                                                                                                                                                                                                                                                                                                                                                              \n \"Regan\n Regan Traynor\n

                                                                                                                                                                                                                                                                                                                                                                                              Entrepreneur

                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                \n \"Maisha\n Maisha Dunn\n

                                                                                                                                                                                                                                                                                                                                                                                                Entrepreneur

                                                                                                                                                                                                                                                                                                                                                                                                \n

                                                                                                                                                                                                                                                                                                                                                                                                Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                \n
                                                                                                                                                                                                                                                                                                                                                                                                  \n \"Reis\n Reis Leonard\n

                                                                                                                                                                                                                                                                                                                                                                                                  Businessman

                                                                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                                                                  Our Blog
                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                  Lates News and Articles

                                                                                                                                                                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n ','Home','','inherit','closed','closed','','24-revision-v1','','','2024-07-24 15:15:41','2024-07-24 15:15:41','',24,'https://victor-quintero.designsfunnelserver.com/?p=216',0,'revision','',0),(217,1,'2024-07-24 15:15:42','2024-07-24 15:15:42','

                                                                                                                                                                                                                                                                                                                                                                                                  Complete For All Landscape Service And Maintenance

                                                                                                                                                                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation \n \n Contact Us\n \n \n \n Watch Intro\n \n
                                                                                                                                                                                                                                                                                                                                                                                                  About Prestige Luxury Cleanings LLC
                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                  We Provide Landscaping And Garden Care Services

                                                                                                                                                                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit \n \"gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk\" \n
                                                                                                                                                                                                                                                                                                                                                                                                    \n
                                                                                                                                                                                                                                                                                                                                                                                                  • \n Public Liability Insurance\n
                                                                                                                                                                                                                                                                                                                                                                                                  • \n
                                                                                                                                                                                                                                                                                                                                                                                                  • \n Environmentally Friendly\n
                                                                                                                                                                                                                                                                                                                                                                                                  • \n
                                                                                                                                                                                                                                                                                                                                                                                                  • \n On Time, Every Time\n
                                                                                                                                                                                                                                                                                                                                                                                                  • \n
                                                                                                                                                                                                                                                                                                                                                                                                  • \n Beautiful Garden Designs\n
                                                                                                                                                                                                                                                                                                                                                                                                  • \n
                                                                                                                                                                                                                                                                                                                                                                                                  • \n Modern Machinery And Tool\n
                                                                                                                                                                                                                                                                                                                                                                                                  • \n
                                                                                                                                                                                                                                                                                                                                                                                                  \n \n More About Us\n \n \"gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w\" \n \"gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68\" \n 0\n +\n Projects Completed\n \n
                                                                                                                                                                                                                                                                                                                                                                                                  Why Choose Us
                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                  We Have The Perfect Solution For Your Landscape Problems

                                                                                                                                                                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation \n

                                                                                                                                                                                                                                                                                                                                                                                                  Variation Gardening

                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                  Expert Landscapers

                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                  Affordable Price

                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                  Free Consultation

                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                                                                  Our Services
                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                  Find The Best Service For Your Garden

                                                                                                                                                                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n

                                                                                                                                                                                                                                                                                                                                                                                                  Residential And Commercial Projects

                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                  Lawn Services

                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                  Driveway Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                  Deck Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                  Weed Control

                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                  Grass Feed

                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet \n \n
                                                                                                                                                                                                                                                                                                                                                                                                  Best Landscaping
                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                  Need Someone To Take Care Your Garden & Lawn?

                                                                                                                                                                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

                                                                                                                                                                                                                                                                                                                                                                                                  Make Appointment & Take Care Your Garden

                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                  \n \n
                                                                                                                                                                                                                                                                                                                                                                                                  Work Process
                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                  We Complete Every Step Carefully

                                                                                                                                                                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n

                                                                                                                                                                                                                                                                                                                                                                                                  \n Start Consultation \n

                                                                                                                                                                                                                                                                                                                                                                                                  \n 01 \n

                                                                                                                                                                                                                                                                                                                                                                                                  \n Design Installation \n

                                                                                                                                                                                                                                                                                                                                                                                                  \n 02 \n

                                                                                                                                                                                                                                                                                                                                                                                                  \n Start Consturction \n

                                                                                                                                                                                                                                                                                                                                                                                                  \n 03 \n

                                                                                                                                                                                                                                                                                                                                                                                                  \n Finished Work \n

                                                                                                                                                                                                                                                                                                                                                                                                  \n 04 \n 0\n +\n Years of Experience\n 0\n +\n Projects Completed\n 0\n +\n Happy Customers\n 0\n +\n Expert Landscapers\n
                                                                                                                                                                                                                                                                                                                                                                                                  Our Projects
                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                  Project We Have Done\n

                                                                                                                                                                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n All Projects\n \n \"Cutting\n

                                                                                                                                                                                                                                                                                                                                                                                                  Cutting Leaf

                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                                                                    \n \"Home\n

                                                                                                                                                                                                                                                                                                                                                                                                    Home Garden

                                                                                                                                                                                                                                                                                                                                                                                                    \n

                                                                                                                                                                                                                                                                                                                                                                                                    \n

                                                                                                                                                                                                                                                                                                                                                                                                    Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                    \n
                                                                                                                                                                                                                                                                                                                                                                                                      \n \"Build\n

                                                                                                                                                                                                                                                                                                                                                                                                      Build Backyard

                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                        \n
                                                                                                                                                                                                                                                                                                                                                                                                        Testimonials
                                                                                                                                                                                                                                                                                                                                                                                                        \n

                                                                                                                                                                                                                                                                                                                                                                                                        What They Says About Us

                                                                                                                                                                                                                                                                                                                                                                                                        \n

                                                                                                                                                                                                                                                                                                                                                                                                        Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                        \n
                                                                                                                                                                                                                                                                                                                                                                                                          \n \"Regan\n Regan Traynor\n

                                                                                                                                                                                                                                                                                                                                                                                                          Entrepreneur

                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                            \n \"Maisha\n Maisha Dunn\n

                                                                                                                                                                                                                                                                                                                                                                                                            Entrepreneur

                                                                                                                                                                                                                                                                                                                                                                                                            \n

                                                                                                                                                                                                                                                                                                                                                                                                            Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                            \n
                                                                                                                                                                                                                                                                                                                                                                                                              \n \"Reis\n Reis Leonard\n

                                                                                                                                                                                                                                                                                                                                                                                                              Businessman

                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                              Our Blog
                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                              Lates News and Articles

                                                                                                                                                                                                                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n ','Home','','inherit','closed','closed','','24-revision-v1','','','2024-07-24 15:15:42','2024-07-24 15:15:42','',24,'https://victor-quintero.designsfunnelserver.com/?p=217',0,'revision','',0),(218,1,'2024-07-24 15:18:06','2024-07-24 15:18:06','','Prestige-Luxury-Cleanings-LLC-logo-fav (1)','','inherit','open','closed','','prestige-luxury-cleanings-llc-logo-fav-1','','','2024-07-24 15:18:06','2024-07-24 15:18:06','',41,'https://victor-quintero.designsfunnelserver.com/wp-content/uploads/2024/07/Prestige-Luxury-Cleanings-LLC-logo-fav-1.png',0,'attachment','image/png',0),(219,1,'2024-07-24 15:18:07','2024-07-24 15:18:07','','Prestige-Luxury-Cleanings-LLC-logo (2)','','inherit','open','closed','','prestige-luxury-cleanings-llc-logo-2','','','2024-07-24 15:18:07','2024-07-24 15:18:07','',41,'https://victor-quintero.designsfunnelserver.com/wp-content/uploads/2024/07/Prestige-Luxury-Cleanings-LLC-logo-2.png',0,'attachment','image/png',0),(220,1,'2024-07-24 15:18:41','2024-07-24 15:18:41',' \"\" \n \n

                                                                                                                                                                                                                                                                                                                                                                                                              \n Location \n

                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                              \n 123 Wall St\nMiami, FL 12345

                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                              \n Call Us \n

                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                              \n +1 505 555 5555

                                                                                                                                                                                                                                                                                                                                                                                                              \n \n Make Appointment\n \n \n \n \"\"\n \n \n \n Jki-facebook-f\n \n \n X-twitter\n \n \n Instagram\n \n \n Linkedin-in\n ','Header','','inherit','closed','closed','','41-revision-v1','','','2024-07-24 15:18:41','2024-07-24 15:18:41','',41,'https://victor-quintero.designsfunnelserver.com/?p=220',0,'revision','',0),(221,1,'2024-07-24 15:18:41','2024-07-24 15:18:41',' \"\" \n \n

                                                                                                                                                                                                                                                                                                                                                                                                              \n Location \n

                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                              \n 123 Wall St\nMiami, FL 12345

                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                              \n Call Us \n

                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                              \n +1 505 555 5555

                                                                                                                                                                                                                                                                                                                                                                                                              \n \n Make Appointment\n \n \n \n \"\"\n \n \n \n Jki-facebook-f\n \n \n X-twitter\n \n \n Instagram\n \n \n Linkedin-in\n ','Header','','inherit','closed','closed','','41-revision-v1','','','2024-07-24 15:18:41','2024-07-24 15:18:41','',41,'https://victor-quintero.designsfunnelserver.com/?p=221',0,'revision','',0),(222,1,'2024-07-24 15:18:42','2024-07-24 15:18:42',' \"\" \n \n

                                                                                                                                                                                                                                                                                                                                                                                                              \n Location \n

                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                              \n 123 Wall St\nMiami, FL 12345

                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                              \n Call Us \n

                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                              \n +1 505 555 5555

                                                                                                                                                                                                                                                                                                                                                                                                              \n \n Make Appointment\n \n \n \n \"\"\n \n \n \n Jki-facebook-f\n \n \n X-twitter\n \n \n Instagram\n \n \n Linkedin-in\n ','Header','','inherit','closed','closed','','41-revision-v1','','','2024-07-24 15:18:42','2024-07-24 15:18:42','',41,'https://victor-quintero.designsfunnelserver.com/?p=222',0,'revision','',0),(223,1,'2024-07-24 15:27:33','2024-07-24 15:27:33','

                                                                                                                                                                                                                                                                                                                                                                                                              Complete For All Landscape Service And Maintenance

                                                                                                                                                                                                                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation \n \n Contact Us\n \n \n \n Watch Intro\n \n
                                                                                                                                                                                                                                                                                                                                                                                                              About Prestige Luxury Cleanings LLC
                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                              We Provide Landscaping And Garden Care Services

                                                                                                                                                                                                                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit \n \"gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk\" \n
                                                                                                                                                                                                                                                                                                                                                                                                                \n
                                                                                                                                                                                                                                                                                                                                                                                                              • \n Public Liability Insurance\n
                                                                                                                                                                                                                                                                                                                                                                                                              • \n
                                                                                                                                                                                                                                                                                                                                                                                                              • \n Environmentally Friendly\n
                                                                                                                                                                                                                                                                                                                                                                                                              • \n
                                                                                                                                                                                                                                                                                                                                                                                                              • \n On Time, Every Time\n
                                                                                                                                                                                                                                                                                                                                                                                                              • \n
                                                                                                                                                                                                                                                                                                                                                                                                              • \n Beautiful Garden Designs\n
                                                                                                                                                                                                                                                                                                                                                                                                              • \n
                                                                                                                                                                                                                                                                                                                                                                                                              • \n Modern Machinery And Tool\n
                                                                                                                                                                                                                                                                                                                                                                                                              • \n
                                                                                                                                                                                                                                                                                                                                                                                                              \n \n More About Us\n \n \"gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w\" \n \"gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68\" \n 0\n +\n Projects Completed\n \n
                                                                                                                                                                                                                                                                                                                                                                                                              Why Choose Us
                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                              We Have The Perfect Solution For Your Landscape Problems

                                                                                                                                                                                                                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation \n

                                                                                                                                                                                                                                                                                                                                                                                                              Variation Gardening

                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                              Expert Landscapers

                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                              Affordable Price

                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                              Free Consultation

                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                              Our Services
                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                              Find The Best Service For Your Garden

                                                                                                                                                                                                                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n

                                                                                                                                                                                                                                                                                                                                                                                                              Residential And Commercial Projects

                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                              Lawn Services

                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                              Driveway Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                              Deck Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                              Weed Control

                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                              Grass Feed

                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet \n \n
                                                                                                                                                                                                                                                                                                                                                                                                              Best Landscaping
                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                              Need Someone To Take Care Your Garden & Lawn?

                                                                                                                                                                                                                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

                                                                                                                                                                                                                                                                                                                                                                                                              Make Appointment & Take Care Your Garden

                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                              \n \n
                                                                                                                                                                                                                                                                                                                                                                                                              Work Process
                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                              We Complete Every Step Carefully

                                                                                                                                                                                                                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n

                                                                                                                                                                                                                                                                                                                                                                                                              \n Start Consultation \n

                                                                                                                                                                                                                                                                                                                                                                                                              \n 01 \n

                                                                                                                                                                                                                                                                                                                                                                                                              \n Design Installation \n

                                                                                                                                                                                                                                                                                                                                                                                                              \n 02 \n

                                                                                                                                                                                                                                                                                                                                                                                                              \n Start Consturction \n

                                                                                                                                                                                                                                                                                                                                                                                                              \n 03 \n

                                                                                                                                                                                                                                                                                                                                                                                                              \n Finished Work \n

                                                                                                                                                                                                                                                                                                                                                                                                              \n 04 \n 0\n +\n Years of Experience\n 0\n +\n Projects Completed\n 0\n +\n Happy Customers\n 0\n +\n Expert Landscapers\n
                                                                                                                                                                                                                                                                                                                                                                                                              Our Projects
                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                              Project We Have Done\n

                                                                                                                                                                                                                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n All Projects\n \n \"Cutting\n

                                                                                                                                                                                                                                                                                                                                                                                                              Cutting Leaf

                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                \n \"Home\n

                                                                                                                                                                                                                                                                                                                                                                                                                Home Garden

                                                                                                                                                                                                                                                                                                                                                                                                                \n

                                                                                                                                                                                                                                                                                                                                                                                                                \n

                                                                                                                                                                                                                                                                                                                                                                                                                Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                \n
                                                                                                                                                                                                                                                                                                                                                                                                                  \n \"Build\n

                                                                                                                                                                                                                                                                                                                                                                                                                  Build Backyard

                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                                                                                    \n
                                                                                                                                                                                                                                                                                                                                                                                                                    Testimonials
                                                                                                                                                                                                                                                                                                                                                                                                                    \n

                                                                                                                                                                                                                                                                                                                                                                                                                    What They Says About Us

                                                                                                                                                                                                                                                                                                                                                                                                                    \n

                                                                                                                                                                                                                                                                                                                                                                                                                    Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                    \n
                                                                                                                                                                                                                                                                                                                                                                                                                      \n \"Regan\n Regan Traynor\n

                                                                                                                                                                                                                                                                                                                                                                                                                      Entrepreneur

                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                        \n \"Maisha\n Maisha Dunn\n

                                                                                                                                                                                                                                                                                                                                                                                                                        Entrepreneur

                                                                                                                                                                                                                                                                                                                                                                                                                        \n

                                                                                                                                                                                                                                                                                                                                                                                                                        Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                        \n
                                                                                                                                                                                                                                                                                                                                                                                                                          \n \"Reis\n Reis Leonard\n

                                                                                                                                                                                                                                                                                                                                                                                                                          Businessman

                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                          Our Blog
                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                          Lates News and Articles

                                                                                                                                                                                                                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n ','Home','','inherit','closed','closed','','24-revision-v1','','','2024-07-24 15:27:33','2024-07-24 15:27:33','',24,'https://victor-quintero.designsfunnelserver.com/?p=223',0,'revision','',0),(224,1,'2024-07-24 15:27:34','2024-07-24 15:27:34','

                                                                                                                                                                                                                                                                                                                                                                                                                          Complete For All Landscape Service And Maintenance

                                                                                                                                                                                                                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation \n \n Contact Us\n \n \n \n Watch Intro\n \n
                                                                                                                                                                                                                                                                                                                                                                                                                          About Prestige Luxury Cleanings LLC
                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                          We Provide Landscaping And Garden Care Services

                                                                                                                                                                                                                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit \n \"gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk\" \n
                                                                                                                                                                                                                                                                                                                                                                                                                            \n
                                                                                                                                                                                                                                                                                                                                                                                                                          • \n Public Liability Insurance\n
                                                                                                                                                                                                                                                                                                                                                                                                                          • \n
                                                                                                                                                                                                                                                                                                                                                                                                                          • \n Environmentally Friendly\n
                                                                                                                                                                                                                                                                                                                                                                                                                          • \n
                                                                                                                                                                                                                                                                                                                                                                                                                          • \n On Time, Every Time\n
                                                                                                                                                                                                                                                                                                                                                                                                                          • \n
                                                                                                                                                                                                                                                                                                                                                                                                                          • \n Beautiful Garden Designs\n
                                                                                                                                                                                                                                                                                                                                                                                                                          • \n
                                                                                                                                                                                                                                                                                                                                                                                                                          • \n Modern Machinery And Tool\n
                                                                                                                                                                                                                                                                                                                                                                                                                          • \n
                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n More About Us\n \n \"gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w\" \n \"gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68\" \n 0\n +\n Projects Completed\n \n
                                                                                                                                                                                                                                                                                                                                                                                                                          Why Choose Us
                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                          We Have The Perfect Solution For Your Landscape Problems

                                                                                                                                                                                                                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation \n

                                                                                                                                                                                                                                                                                                                                                                                                                          Variation Gardening

                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                          Expert Landscapers

                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                          Affordable Price

                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                          Free Consultation

                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                          Our Services
                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                          Find The Best Service For Your Garden

                                                                                                                                                                                                                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n

                                                                                                                                                                                                                                                                                                                                                                                                                          Residential And Commercial Projects

                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                          Lawn Services

                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                          Driveway Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                          Deck Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                          Weed Control

                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                          Grass Feed

                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                          Best Landscaping
                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                          Need Someone To Take Care Your Garden & Lawn?

                                                                                                                                                                                                                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

                                                                                                                                                                                                                                                                                                                                                                                                                          Make Appointment & Take Care Your Garden

                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                          Work Process
                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                          We Complete Every Step Carefully

                                                                                                                                                                                                                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                          \n Start Consultation \n

                                                                                                                                                                                                                                                                                                                                                                                                                          \n 01 \n

                                                                                                                                                                                                                                                                                                                                                                                                                          \n Design Installation \n

                                                                                                                                                                                                                                                                                                                                                                                                                          \n 02 \n

                                                                                                                                                                                                                                                                                                                                                                                                                          \n Start Consturction \n

                                                                                                                                                                                                                                                                                                                                                                                                                          \n 03 \n

                                                                                                                                                                                                                                                                                                                                                                                                                          \n Finished Work \n

                                                                                                                                                                                                                                                                                                                                                                                                                          \n 04 \n 0\n +\n Years of Experience\n 0\n +\n Projects Completed\n 0\n +\n Happy Customers\n 0\n +\n Expert Landscapers\n
                                                                                                                                                                                                                                                                                                                                                                                                                          Our Projects
                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                          Project We Have Done\n

                                                                                                                                                                                                                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n All Projects\n \n \"Cutting\n

                                                                                                                                                                                                                                                                                                                                                                                                                          Cutting Leaf

                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                            \n \"Home\n

                                                                                                                                                                                                                                                                                                                                                                                                                            Home Garden

                                                                                                                                                                                                                                                                                                                                                                                                                            \n

                                                                                                                                                                                                                                                                                                                                                                                                                            \n

                                                                                                                                                                                                                                                                                                                                                                                                                            Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                            \n
                                                                                                                                                                                                                                                                                                                                                                                                                              \n \"Build\n

                                                                                                                                                                                                                                                                                                                                                                                                                              Build Backyard

                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                \n
                                                                                                                                                                                                                                                                                                                                                                                                                                Testimonials
                                                                                                                                                                                                                                                                                                                                                                                                                                \n

                                                                                                                                                                                                                                                                                                                                                                                                                                What They Says About Us

                                                                                                                                                                                                                                                                                                                                                                                                                                \n

                                                                                                                                                                                                                                                                                                                                                                                                                                Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                \n
                                                                                                                                                                                                                                                                                                                                                                                                                                  \n \"Regan\n Regan Traynor\n

                                                                                                                                                                                                                                                                                                                                                                                                                                  Entrepreneur

                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                                                                                                    \n \"Maisha\n Maisha Dunn\n

                                                                                                                                                                                                                                                                                                                                                                                                                                    Entrepreneur

                                                                                                                                                                                                                                                                                                                                                                                                                                    \n

                                                                                                                                                                                                                                                                                                                                                                                                                                    Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                    \n
                                                                                                                                                                                                                                                                                                                                                                                                                                      \n \"Reis\n Reis Leonard\n

                                                                                                                                                                                                                                                                                                                                                                                                                                      Businessman

                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                      Our Blog
                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                      Lates News and Articles

                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n ','Home','','inherit','closed','closed','','24-revision-v1','','','2024-07-24 15:27:34','2024-07-24 15:27:34','',24,'https://victor-quintero.designsfunnelserver.com/?p=224',0,'revision','',0),(225,1,'2024-07-24 15:27:34','2024-07-24 15:27:34','

                                                                                                                                                                                                                                                                                                                                                                                                                                      Complete For All Landscape Service And Maintenance

                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation \n \n Contact Us\n \n \n \n Watch Intro\n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                      About Prestige Luxury Cleanings LLC
                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                      We Provide Landscaping And Garden Care Services

                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit \n \"gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk\" \n
                                                                                                                                                                                                                                                                                                                                                                                                                                        \n
                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n Public Liability Insurance\n
                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n Environmentally Friendly\n
                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n On Time, Every Time\n
                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n Beautiful Garden Designs\n
                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n Modern Machinery And Tool\n
                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                      \n \n More About Us\n \n \"gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w\" \n \"gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68\" \n 0\n +\n Projects Completed\n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                      Why Choose Us
                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                      We Have The Perfect Solution For Your Landscape Problems

                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                      Variation Gardening

                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                      Expert Landscapers

                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                      Affordable Price

                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                      Free Consultation

                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                      Our Services
                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                      Providing Services For All Your Residential And Commercial Needs.

                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

                                                                                                                                                                                                                                                                                                                                                                                                                                      Providing services for all your residential and commercial needs

                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                      Residential And Commercial Projects

                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                      Lawn Services

                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                      Driveway Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                      Deck Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                      Weed Control

                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                      Grass Feed

                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                      Best Landscaping
                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                      Need Someone To Take Care Your Garden & Lawn?

                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

                                                                                                                                                                                                                                                                                                                                                                                                                                      Make Appointment & Take Care Your Garden

                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                      \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                      Work Process
                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                      We Complete Every Step Carefully

                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Start Consultation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                      \n 01 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Design Installation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                      \n 02 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Start Consturction \n

                                                                                                                                                                                                                                                                                                                                                                                                                                      \n 03 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Finished Work \n

                                                                                                                                                                                                                                                                                                                                                                                                                                      \n 04 \n 0\n +\n Years of Experience\n 0\n +\n Projects Completed\n 0\n +\n Happy Customers\n 0\n +\n Expert Landscapers\n
                                                                                                                                                                                                                                                                                                                                                                                                                                      Our Projects
                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                      Project We Have Done\n

                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n All Projects\n \n \"Cutting\n

                                                                                                                                                                                                                                                                                                                                                                                                                                      Cutting Leaf

                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                        \n \"Home\n

                                                                                                                                                                                                                                                                                                                                                                                                                                        Home Garden

                                                                                                                                                                                                                                                                                                                                                                                                                                        \n

                                                                                                                                                                                                                                                                                                                                                                                                                                        \n

                                                                                                                                                                                                                                                                                                                                                                                                                                        Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                        \n
                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \"Build\n

                                                                                                                                                                                                                                                                                                                                                                                                                                          Build Backyard

                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                                            \n
                                                                                                                                                                                                                                                                                                                                                                                                                                            Testimonials
                                                                                                                                                                                                                                                                                                                                                                                                                                            \n

                                                                                                                                                                                                                                                                                                                                                                                                                                            What They Says About Us

                                                                                                                                                                                                                                                                                                                                                                                                                                            \n

                                                                                                                                                                                                                                                                                                                                                                                                                                            Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                            \n
                                                                                                                                                                                                                                                                                                                                                                                                                                              \n \"Regan\n Regan Traynor\n

                                                                                                                                                                                                                                                                                                                                                                                                                                              Entrepreneur

                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                \n \"Maisha\n Maisha Dunn\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                Entrepreneur

                                                                                                                                                                                                                                                                                                                                                                                                                                                \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n \"Reis\n Reis Leonard\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                  Businessman

                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                  Our Blog
                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lates News and Articles

                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n ','Home','','inherit','closed','closed','','24-revision-v1','','','2024-07-24 15:27:34','2024-07-24 15:27:34','',24,'https://victor-quintero.designsfunnelserver.com/?p=225',0,'revision','',0),(226,1,'2024-07-24 15:27:46','2024-07-24 15:27:46','

                                                                                                                                                                                                                                                                                                                                                                                                                                                  Complete For All Landscape Service And Maintenance

                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation \n \n Contact Us\n \n \n \n Watch Intro\n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                  About Prestige Luxury Cleanings LLC
                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                  We Provide Landscaping And Garden Care Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit \n \"gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk\" \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                  • \n Public Liability Insurance\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                  • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                  • \n Environmentally Friendly\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                  • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                  • \n On Time, Every Time\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                  • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                  • \n Beautiful Garden Designs\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                  • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                  • \n Modern Machinery And Tool\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                  • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n \n More About Us\n \n \"gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w\" \n \"gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68\" \n 0\n +\n Projects Completed\n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                  Why Choose Us
                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                  We Have The Perfect Solution For Your Landscape Problems

                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                  Variation Gardening

                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                  Expert Landscapers

                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                  Affordable Price

                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                  Free Consultation

                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                  Our Services
                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                  Providing Services For All Your Residential And Commercial Needs.

                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                  Providing services for all your residential and commercial needs

                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                  Residential And Commercial Projects

                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lawn Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                  Driveway Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                  Deck Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                  Weed Control

                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                  Grass Feed

                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                  Best Landscaping
                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                  Need Someone To Take Care Your Garden & Lawn?

                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                  Make Appointment & Take Care Your Garden

                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                  Work Process
                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                  We Complete Every Step Carefully

                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Start Consultation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n 01 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Design Installation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n 02 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Start Consturction \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n 03 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Finished Work \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n 04 \n 0\n +\n Years of Experience\n 0\n +\n Projects Completed\n 0\n +\n Happy Customers\n 0\n +\n Expert Landscapers\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                  Our Projects
                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                  Project We Have Done\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n All Projects\n \n \"Cutting\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                  Cutting Leaf

                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n \"Home\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                    Home Garden

                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                    Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n \"Build\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                      Build Backyard

                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                        Testimonials
                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                        What They Says About Us

                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                        Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \"Regan\n Regan Traynor\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                          Entrepreneur

                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n \"Maisha\n Maisha Dunn\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                            Entrepreneur

                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                            Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n \"Reis\n Reis Leonard\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Businessman

                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                              Our Blog
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lates News and Articles

                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n ','Home','','inherit','closed','closed','','24-revision-v1','','','2024-07-24 15:27:46','2024-07-24 15:27:46','',24,'https://victor-quintero.designsfunnelserver.com/?p=226',0,'revision','',0),(227,1,'2024-07-24 15:27:46','2024-07-24 15:27:46','

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Complete For All Landscape Service And Maintenance

                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation \n \n Contact Us\n \n \n \n Watch Intro\n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                              About Prestige Luxury Cleanings LLC
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                              We Provide Landscaping And Garden Care Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit \n \"gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk\" \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • \n Public Liability Insurance\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • \n Environmentally Friendly\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • \n On Time, Every Time\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • \n Beautiful Garden Designs\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • \n Modern Machinery And Tool\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n \n More About Us\n \n \"gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w\" \n \"gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68\" \n 0\n +\n Projects Completed\n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                              Why Choose Us
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                              We Have The Perfect Solution For Your Landscape Problems

                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Variation Gardening

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Expert Landscapers

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Affordable Price

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Free Consultation

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                              Our Services
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Providing Services For All Your Residential And Commercial Needs.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Providing services for all your residential and commercial needs

                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Residential And Commercial Projects

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lawn Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Driveway Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Deck Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Weed Control

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Grass Feed

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                              Best Landscaping
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Need Someone To Take Care Your Garden & Lawn?

                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Make Appointment & Take Care Your Garden

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                              Work Process
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                              We Complete Every Step Carefully

                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Start Consultation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n 01 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Design Installation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n 02 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Start Consturction \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n 03 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Finished Work \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n 04 \n 0\n +\n Years of Experience\n 0\n +\n Projects Completed\n 0\n +\n Happy Customers\n 0\n +\n Expert Landscapers\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                              Our Projects
                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Project We Have Done\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n All Projects\n \n \"Cutting\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Cutting Leaf

                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n \"Home\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                Home Garden

                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n \"Build\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Build Backyard

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Testimonials
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                    What They Says About Us

                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n \"Regan\n Regan Traynor\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Entrepreneur

                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n \"Maisha\n Maisha Dunn\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Entrepreneur

                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \"Reis\n Reis Leonard\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Businessman

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Our Blog
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lates News and Articles

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n ','Home','','inherit','closed','closed','','24-revision-v1','','','2024-07-24 15:27:46','2024-07-24 15:27:46','',24,'https://victor-quintero.designsfunnelserver.com/?p=227',0,'revision','',0),(228,1,'2024-07-24 15:27:47','2024-07-24 15:27:47','

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Complete For All Landscape Service And Maintenance

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation \n \n Contact Us\n \n \n \n Watch Intro\n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          About Prestige Luxury Cleanings LLC
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          We Provide Landscaping And Garden Care Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit \n \"gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk\" \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • \n Public Liability Insurance\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • \n Environmentally Friendly\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • \n On Time, Every Time\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • \n Beautiful Garden Designs\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • \n Modern Machinery And Tool\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n More About Us\n \n \"gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w\" \n \"gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68\" \n 0\n +\n Projects Completed\n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Why Choose Us
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          We Have The Perfect Solution For Your Landscape Problems

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Variation Gardening

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Expert Landscapers

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Affordable Price

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Free Consultation

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Our Services
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Providing Services For All Your Residential And Commercial Needs.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Providing services for all your residential and commercial needs

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Residential And Commercial Projects

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lawn Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Driveway Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Deck Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Weed Control

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Grass Feed

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Best Landscaping
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Need Someone To Take Care Your Garden & Lawn?

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Make Appointment & Take Care Your Garden

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Work Process
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          We Complete Every Step Carefully

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Start Consultation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n 01 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Design Installation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n 02 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Start Consturction \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n 03 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Finished Work \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n 04 \n 0\n +\n Years of Experience\n 0\n +\n Projects Completed\n 0\n +\n Happy Customers\n 0\n +\n Expert Landscapers\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Our Projects
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Project We Have Done\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n All Projects\n \n \"Cutting\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Cutting Leaf

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n \"Home\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Home Garden

                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n \"Build\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Build Backyard

                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Testimonials
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                What They Says About Us

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n \"Regan\n Regan Traynor\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Entrepreneur

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n \"Maisha\n Maisha Dunn\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Entrepreneur

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n \"Reis\n Reis Leonard\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Businessman

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Our Blog
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lates News and Articles

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n ','Home','','inherit','closed','closed','','24-revision-v1','','','2024-07-24 15:27:47','2024-07-24 15:27:47','',24,'https://victor-quintero.designsfunnelserver.com/?p=228',0,'revision','',0),(229,1,'2024-07-24 15:29:48','2024-07-24 15:29:48','https://victor-quintero.designsfunnelserver.com/wp-content/uploads/2024/07/cropped-Prestige-Luxury-Cleanings-LLC-logo-fav-1.png','cropped-Prestige-Luxury-Cleanings-LLC-logo-fav-1.png','','inherit','open','closed','','cropped-prestige-luxury-cleanings-llc-logo-fav-1-png','','','2024-07-24 15:29:48','2024-07-24 15:29:48','',218,'https://victor-quintero.designsfunnelserver.com/wp-content/uploads/2024/07/cropped-Prestige-Luxury-Cleanings-LLC-logo-fav-1.png',0,'attachment','image/png',0),(232,1,'2024-07-24 15:30:54','2024-07-24 15:30:54','

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Complete For All Landscape Service And Maintenance

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation \n \n Contact Us\n \n \n \n Watch Intro\n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      About Prestige Luxury Cleanings LLC
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      We Provide Landscaping And Garden Care Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit \n \"gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk\" \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n Public Liability Insurance\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n Environmentally Friendly\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n On Time, Every Time\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n Beautiful Garden Designs\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n Modern Machinery And Tool\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n \n More About Us\n \n \"gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w\" \n \"gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68\" \n 0\n +\n Projects Completed\n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Why Choose Us
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      We Have The Perfect Solution For Your Landscape Problems

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Variation Gardening

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Expert Landscapers

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Affordable Price

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Free Consultation

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Our Services
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Providing Services For All Your Residential And Commercial Needs.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Providing services for all your residential and commercial needs

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Residential And Commercial Projects

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lawn Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Driveway Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Deck Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Weed Control

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Grass Feed

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Best Landscaping
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Need Someone To Take Care Your Garden & Lawn?

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Make Appointment & Take Care Your Garden

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Work Process
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      We Complete Every Step Carefully

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Start Consultation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n 01 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Design Installation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n 02 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Start Consturction \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n 03 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Finished Work \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n 04 \n 0\n +\n Years of Experience\n 0\n +\n Projects Completed\n 0\n +\n Happy Customers\n 0\n +\n Expert Landscapers\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Our Projects
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Project We Have Done\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n All Projects\n \n \"Cutting\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Cutting Leaf

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n \"Home\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Home Garden

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \"Build\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Build Backyard

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Testimonials
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            What They Says About Us

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n \"Regan\n Regan Traynor\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Entrepreneur

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n \"Maisha\n Maisha Dunn\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Entrepreneur

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n \"Reis\n Reis Leonard\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Businessman

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Our Blog
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lates News and Articles

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n ','Home','','inherit','closed','closed','','24-revision-v1','','','2024-07-24 15:30:54','2024-07-24 15:30:54','',24,'https://victor-quintero.designsfunnelserver.com/?p=232',0,'revision','',0),(233,1,'2024-07-24 15:30:54','2024-07-24 15:30:54','

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Complete For All Landscape Service And Maintenance

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation \n \n Contact Us\n \n \n \n Watch Intro\n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  About Prestige Luxury Cleanings LLC
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  We Provide Landscaping And Garden Care Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit \n \"gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk\" \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • \n Public Liability Insurance\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • \n Environmentally Friendly\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • \n On Time, Every Time\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • \n Beautiful Garden Designs\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • \n Modern Machinery And Tool\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n \n More About Us\n \n \"gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w\" \n \"gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68\" \n 0\n +\n Projects Completed\n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Why Choose Us
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  We Have The Perfect Solution For Your Landscape Problems

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Variation Gardening

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Expert Landscapers

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Affordable Price

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Free Consultation

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Our Services
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Providing Services For All Your Residential And Commercial Needs.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Providing services for all your residential and commercial needs

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Residential And Commercial Projects

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lawn Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Driveway Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Deck Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Weed Control

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Grass Feed

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Best Landscaping
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Need Someone To Take Care Your Garden & Lawn?

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Make Appointment & Take Care Your Garden

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Work Process
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  We Complete Every Step Carefully

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Start Consultation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n 01 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Design Installation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n 02 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Start Consturction \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n 03 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Finished Work \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n 04 \n 0\n +\n Years of Experience\n 0\n +\n Projects Completed\n 0\n +\n Happy Customers\n 0\n +\n Expert Landscapers\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Our Projects
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Project We Have Done\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n All Projects\n \n \"Cutting\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Cutting Leaf

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n \"Home\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Home Garden

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n \"Build\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Build Backyard

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Testimonials
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        What They Says About Us

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \"Regan\n Regan Traynor\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Entrepreneur

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n \"Maisha\n Maisha Dunn\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Entrepreneur

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n \"Reis\n Reis Leonard\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Businessman

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Our Blog
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lates News and Articles

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n ','Home','','inherit','closed','closed','','24-revision-v1','','','2024-07-24 15:30:54','2024-07-24 15:30:54','',24,'https://victor-quintero.designsfunnelserver.com/?p=233',0,'revision','',0),(234,1,'2024-07-24 15:30:55','2024-07-24 15:30:55','

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Complete For All Landscape Service And Maintenance

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation \n \n Contact Us\n \n \n \n Watch Intro\n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              About Prestige Luxury Cleanings LLC
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              We Provide Landscaping And Garden Care Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit \n \"gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk\" \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • \n Public Liability Insurance\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • \n Environmentally Friendly\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • \n On Time, Every Time\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • \n Beautiful Garden Designs\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • \n Modern Machinery And Tool\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n \n More About Us\n \n \"gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w\" \n \"gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68\" \n 0\n +\n Projects Completed\n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Why Choose Us
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              We Have The Perfect Solution For Your Landscape Problems

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Variation Gardening

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Expert Landscapers

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Affordable Price

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Free Consultation

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Our Services
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Providing Services For All Your Residential And Commercial Needs.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Residential And Commercial Projects

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lawn Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Driveway Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Deck Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Weed Control

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Grass Feed

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Best Landscaping
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Need Someone To Take Care Your Garden & Lawn?

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Make Appointment & Take Care Your Garden

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Work Process
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              We Complete Every Step Carefully

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Start Consultation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n 01 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Design Installation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n 02 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Start Consturction \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n 03 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Finished Work \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n 04 \n 0\n +\n Years of Experience\n 0\n +\n Projects Completed\n 0\n +\n Happy Customers\n 0\n +\n Expert Landscapers\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Our Projects
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Project We Have Done\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n All Projects\n \n \"Cutting\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Cutting Leaf

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n \"Home\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Home Garden

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n \"Build\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Build Backyard

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Testimonials
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    What They Says About Us

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n \"Regan\n Regan Traynor\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Entrepreneur

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n \"Maisha\n Maisha Dunn\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Entrepreneur

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \"Reis\n Reis Leonard\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Businessman

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Our Blog
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lates News and Articles

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n ','Home','','inherit','closed','closed','','24-revision-v1','','','2024-07-24 15:30:55','2024-07-24 15:30:55','',24,'https://victor-quintero.designsfunnelserver.com/?p=234',0,'revision','',0),(235,1,'2024-07-24 15:31:26','2024-07-24 15:31:26',' \"\" \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Other Pages

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Quick Links

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Newsletter

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Get the latest news & updates\n \n \n Jki-facebook-f\n \n \n X-twitter\n \n \n Instagram\n \n \n Linkedin-in\n \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          © 2024 Prestige Luxury Cleanings LLC. All rights reserved.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Design and development by Design Funnel.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ','Footer','','inherit','closed','closed','','49-revision-v1','','','2024-07-24 15:31:26','2024-07-24 15:31:26','',49,'https://victor-quintero.designsfunnelserver.com/?p=235',0,'revision','',0),(236,1,'2024-07-24 15:31:26','2024-07-24 15:31:26',' \"\" \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Other Pages

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Quick Links

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Newsletter

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Get the latest news & updates\n \n \n Jki-facebook-f\n \n \n X-twitter\n \n \n Instagram\n \n \n Linkedin-in\n \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          © 2024 Prestige Luxury Cleanings LLC. All rights reserved.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Design and development by Design Funnel.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ','Footer','','inherit','closed','closed','','49-revision-v1','','','2024-07-24 15:31:26','2024-07-24 15:31:26','',49,'https://victor-quintero.designsfunnelserver.com/?p=236',0,'revision','',0),(237,1,'2024-07-24 15:31:27','2024-07-24 15:31:27',' \"\" \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Other Pages

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Quick Links

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Newsletter

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Get the latest news & updates\n \n \n Jki-facebook-f\n \n \n X-twitter\n \n \n Instagram\n \n \n Linkedin-in\n \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          © 2024 Prestige Luxury Cleanings LLC. All rights reserved.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Design and development by Designs Funnel.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ','Footer','','inherit','closed','closed','','49-revision-v1','','','2024-07-24 15:31:27','2024-07-24 15:31:27','',49,'https://victor-quintero.designsfunnelserver.com/?p=237',0,'revision','',0),(238,1,'2024-07-24 15:45:17','2024-07-24 15:45:17',' \"\" \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Location \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n 123 Wall St\nMiami, FL 12345

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Call Us \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n +1 505 555 5555

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n Make Appointment\n \n \n \n \"\"\n \n \n \n Jki-facebook-f\n \n \n X-twitter\n \n \n Instagram\n \n \n Linkedin-in\n ','Header','','inherit','closed','closed','','41-revision-v1','','','2024-07-24 15:45:17','2024-07-24 15:45:17','',41,'https://victor-quintero.designsfunnelserver.com/?p=238',0,'revision','',0),(239,1,'2024-07-24 15:45:17','2024-07-24 15:45:17',' \"\" \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Location \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n 123 Wall St\nMiami, FL 12345

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Call Us \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n +1 505 555 5555

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n Make Appointment\n \n \n \n \"\"\n \n \n \n Jki-facebook-f\n \n \n X-twitter\n \n \n Instagram\n \n \n Linkedin-in\n ','Header','','inherit','closed','closed','','41-revision-v1','','','2024-07-24 15:45:17','2024-07-24 15:45:17','',41,'https://victor-quintero.designsfunnelserver.com/?p=239',0,'revision','',0),(240,1,'2024-07-24 15:45:17','2024-07-24 15:45:17',' \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n 123 Wall St\nMiami, FL 12345

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n +1 505 555 5555

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n \n Jki-facebook-f\n \n \n X-twitter\n \n \n Instagram\n \n \n Linkedin-in\n \n \"\" \n \n \n \"\"\n \n \n Make Appointment\n ','Header','','inherit','closed','closed','','41-revision-v1','','','2024-07-24 15:45:17','2024-07-24 15:45:17','',41,'https://victor-quintero.designsfunnelserver.com/?p=240',0,'revision','',0),(241,1,'2024-07-24 15:56:19','2024-07-24 15:56:19',' \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n 123 Wall St\nMiami, FL 12345

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n +1 505 555 5555

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n \n Jki-facebook-f\n \n \n X-twitter\n \n \n Instagram\n \n \n Linkedin-in\n \n \"\" \n \n \n \"\"\n \n \n Make Appointment\n ','Header','','inherit','closed','closed','','41-revision-v1','','','2024-07-24 15:56:19','2024-07-24 15:56:19','',41,'https://victor-quintero.designsfunnelserver.com/?p=241',0,'revision','',0),(242,1,'2024-07-24 15:56:19','2024-07-24 15:56:19',' \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n 123 Wall St\nMiami, FL 12345

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n +1 505 555 5555

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n \n Jki-facebook-f\n \n \n X-twitter\n \n \n Instagram\n \n \n Linkedin-in\n \n \"\" \n \n \n \"\"\n \n \n Make Appointment\n ','Header','','inherit','closed','closed','','41-revision-v1','','','2024-07-24 15:56:19','2024-07-24 15:56:19','',41,'https://victor-quintero.designsfunnelserver.com/?p=242',0,'revision','',0),(243,1,'2024-07-24 15:56:20','2024-07-24 15:56:20',' \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n 123 Wall St\nMiami, FL 12345

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n +1 505 555 5555

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n \n Jki-facebook-f\n \n \n X-twitter\n \n \n Instagram\n \n \n Linkedin-in\n \n \"\" \n \n \n \"\"\n \n \n Make Appointment\n ','Header','','inherit','closed','closed','','41-revision-v1','','','2024-07-24 15:56:20','2024-07-24 15:56:20','',41,'https://victor-quintero.designsfunnelserver.com/?p=243',0,'revision','',0),(244,1,'2024-07-24 16:01:25','2024-07-24 16:01:25',' \"\" \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Other Pages

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Quick Links

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Newsletter

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Get the latest news & updates\n \n \n Jki-facebook-f\n \n \n X-twitter\n \n \n Instagram\n \n \n Linkedin-in\n \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          © 2024 Prestige Luxury Cleanings LLC. All rights reserved.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Design and development by Designs Funnel.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ','Footer','','inherit','closed','closed','','49-revision-v1','','','2024-07-24 16:01:25','2024-07-24 16:01:25','',49,'https://victor-quintero.designsfunnelserver.com/?p=244',0,'revision','',0),(245,1,'2024-07-24 16:01:25','2024-07-24 16:01:25',' \"\" \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Other Pages

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Quick Links

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Newsletter

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Get the latest news & updates\n \n \n Jki-facebook-f\n \n \n X-twitter\n \n \n Instagram\n \n \n Linkedin-in\n \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          © 2024 Prestige Luxury Cleanings LLC. All rights reserved.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Design and development by Designs Funnel.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ','Footer','','inherit','closed','closed','','49-revision-v1','','','2024-07-24 16:01:25','2024-07-24 16:01:25','',49,'https://victor-quintero.designsfunnelserver.com/?p=245',0,'revision','',0),(246,1,'2024-07-24 16:01:25','2024-07-24 16:01:25',' \"\" \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Other Pages

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Quick Links

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Newsletter

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Get the latest news & updates\n \n \n Jki-facebook-f\n \n \n X-twitter\n \n \n Instagram\n \n \n Linkedin-in\n \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          © 2024 Prestige Luxury Cleanings LLC. All rights reserved.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Design and development by DesignsFunnel.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ','Footer','','inherit','closed','closed','','49-revision-v1','','','2024-07-24 16:01:25','2024-07-24 16:01:25','',49,'https://victor-quintero.designsfunnelserver.com/?p=246',0,'revision','',0),(247,1,'2024-07-24 16:04:27','2024-07-24 16:04:27',' \"\" \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Other Pages

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Quick Links

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Newsletter

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Get the latest news & updates\n \n \n Jki-facebook-f\n \n \n X-twitter\n \n \n Instagram\n \n \n Linkedin-in\n \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          © 2024 Prestige Luxury Cleanings LLC. All rights reserved.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Design and development by DesignsFunnel.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ','Footer','','inherit','closed','closed','','49-revision-v1','','','2024-07-24 16:04:27','2024-07-24 16:04:27','',49,'https://victor-quintero.designsfunnelserver.com/?p=247',0,'revision','',0),(248,1,'2024-07-24 16:04:28','2024-07-24 16:04:28',' \"\" \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Other Pages

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Quick Links

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Newsletter

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Get the latest news & updates\n \n \n Jki-facebook-f\n \n \n X-twitter\n \n \n Instagram\n \n \n Linkedin-in\n \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          © 2024 Prestige Luxury Cleanings LLC. All rights reserved.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Design and development by DesignsFunnel.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ','Footer','','inherit','closed','closed','','49-revision-v1','','','2024-07-24 16:04:28','2024-07-24 16:04:28','',49,'https://victor-quintero.designsfunnelserver.com/?p=248',0,'revision','',0),(249,1,'2024-07-24 16:04:29','2024-07-24 16:04:29',' \"\" \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Other Pages

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Quick Links

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Newsletter

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Get the latest news & updates\n \n \n Jki-facebook-f\n \n \n X-twitter\n \n \n Instagram\n \n \n Linkedin-in\n \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          © 2024 Prestige Luxury Cleanings LLC. All rights reserved.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Design and development by DesignsFunnel.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ','Footer','','inherit','closed','closed','','49-revision-v1','','','2024-07-24 16:04:29','2024-07-24 16:04:29','',49,'https://victor-quintero.designsfunnelserver.com/?p=249',0,'revision','',0),(250,1,'2024-07-24 16:06:54','2024-07-24 16:06:54',' \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n 123 Wall St\nMiami, FL 12345

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n +1 505 555 5555

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n \n Jki-facebook-f\n \n \n X-twitter\n \n \n Instagram\n \n \n Linkedin-in\n \n \"\" \n \n \n \"\"\n \n \n Make Appointment\n ','Header','','inherit','closed','closed','','41-revision-v1','','','2024-07-24 16:06:54','2024-07-24 16:06:54','',41,'https://victor-quintero.designsfunnelserver.com/?p=250',0,'revision','',0),(251,1,'2024-07-24 16:06:55','2024-07-24 16:06:55',' \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n 123 Wall St\nMiami, FL 12345

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n +1 505 555 5555

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n \n Jki-facebook-f\n \n \n X-twitter\n \n \n Instagram\n \n \n Linkedin-in\n \n \"\" \n \n \n \"\"\n \n \n Make Appointment\n ','Header','','inherit','closed','closed','','41-revision-v1','','','2024-07-24 16:06:55','2024-07-24 16:06:55','',41,'https://victor-quintero.designsfunnelserver.com/?p=251',0,'revision','',0),(252,1,'2024-07-24 16:06:56','2024-07-24 16:06:56',' \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n 123 Wall St\nMiami, FL 12345

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n +1 505 555 5555

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n \n Jki-facebook-f\n \n \n X-twitter\n \n \n Instagram\n \n \n Linkedin-in\n \n \"\" \n \n \n \"\"\n \n \n Make Appointment\n ','Header','','inherit','closed','closed','','41-revision-v1','','','2024-07-24 16:06:56','2024-07-24 16:06:56','',41,'https://victor-quintero.designsfunnelserver.com/?p=252',0,'revision','',0),(253,1,'2024-07-24 16:11:00','2024-07-24 16:11:00',' \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n 123 Wall St\nMiami, FL 12345

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n +1 505 555 5555

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n \n Jki-facebook-f\n \n \n X-twitter\n \n \n Instagram\n \n \n Linkedin-in\n \n \"\" \n \n \n \"\"\n \n \n Make Appointment\n ','Header','','inherit','closed','closed','','41-revision-v1','','','2024-07-24 16:11:00','2024-07-24 16:11:00','',41,'https://victor-quintero.designsfunnelserver.com/?p=253',0,'revision','',0); INSERT INTO `victorq_posts` VALUES (254,1,'2024-07-24 16:11:01','2024-07-24 16:11:01',' \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n 123 Wall St\nMiami, FL 12345

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n +1 505 555 5555

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n \n Jki-facebook-f\n \n \n X-twitter\n \n \n Instagram\n \n \n Linkedin-in\n \n \"\" \n \n \n \"\"\n \n \n Make Appointment\n ','Header','','inherit','closed','closed','','41-revision-v1','','','2024-07-24 16:11:01','2024-07-24 16:11:01','',41,'https://victor-quintero.designsfunnelserver.com/?p=254',0,'revision','',0),(255,1,'2024-07-24 16:11:01','2024-07-24 16:11:01',' \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n 123 Wall St\nMiami, FL 12345

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n +1 505 555 5555

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n \n Jki-facebook-f\n \n \n X-twitter\n \n \n Instagram\n \n \n Linkedin-in\n \n \"\" \n \n \n \"\"\n \n \n Make Appointment\n ','Header','','inherit','closed','closed','','41-revision-v1','','','2024-07-24 16:11:01','2024-07-24 16:11:01','',41,'https://victor-quintero.designsfunnelserver.com/?p=255',0,'revision','',0),(256,1,'2024-07-24 16:12:35','2024-07-24 16:12:35',' \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n 123 Wall St\nMiami, FL 12345

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n +1 505 555 5555

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n \n Jki-facebook-f\n \n \n X-twitter\n \n \n Instagram\n \n \n Linkedin-in\n \n \"\" \n \n \n \"\"\n \n \n Make Appointment\n ','Header','','inherit','closed','closed','','41-revision-v1','','','2024-07-24 16:12:35','2024-07-24 16:12:35','',41,'https://victor-quintero.designsfunnelserver.com/?p=256',0,'revision','',0),(257,1,'2024-07-24 16:12:35','2024-07-24 16:12:35',' \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n 123 Wall St\nMiami, FL 12345

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n +1 505 555 5555

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n \n Jki-facebook-f\n \n \n X-twitter\n \n \n Instagram\n \n \n Linkedin-in\n \n \"\" \n \n \n \"\"\n \n \n Make Appointment\n ','Header','','inherit','closed','closed','','41-revision-v1','','','2024-07-24 16:12:35','2024-07-24 16:12:35','',41,'https://victor-quintero.designsfunnelserver.com/?p=257',0,'revision','',0),(258,1,'2024-07-24 16:12:36','2024-07-24 16:12:36',' \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n 123 Wall St\nMiami, FL 12345

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n +1 505 555 5555

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n \n Jki-facebook-f\n \n \n X-twitter\n \n \n Instagram\n \n \n Linkedin-in\n \n \"\" \n \n \n \"\"\n \n \n Make Appointment\n ','Header','','inherit','closed','closed','','41-revision-v1','','','2024-07-24 16:12:36','2024-07-24 16:12:36','',41,'https://victor-quintero.designsfunnelserver.com/?p=258',0,'revision','',0),(259,1,'2024-07-24 16:13:00','2024-07-24 16:13:00',' \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n 123 Wall St\nMiami, FL 12345

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n +1 505 555 5555

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n \n Jki-facebook-f\n \n \n X-twitter\n \n \n Instagram\n \n \n Linkedin-in\n \n \"\" \n \n \n \"\"\n \n \n Make Appointment\n ','Header','','inherit','closed','closed','','41-revision-v1','','','2024-07-24 16:13:00','2024-07-24 16:13:00','',41,'https://victor-quintero.designsfunnelserver.com/?p=259',0,'revision','',0),(260,1,'2024-07-24 16:13:00','2024-07-24 16:13:00',' \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n 123 Wall St\nMiami, FL 12345

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n +1 505 555 5555

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n \n Jki-facebook-f\n \n \n X-twitter\n \n \n Instagram\n \n \n Linkedin-in\n \n \"\" \n \n \n \"\"\n \n \n Make Appointment\n ','Header','','inherit','closed','closed','','41-revision-v1','','','2024-07-24 16:13:00','2024-07-24 16:13:00','',41,'https://victor-quintero.designsfunnelserver.com/?p=260',0,'revision','',0),(261,1,'2024-07-24 16:13:00','2024-07-24 16:13:00',' \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n 123 Wall St\nMiami, FL 12345

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n +1 505 555 5555

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n \n Jki-facebook-f\n \n \n X-twitter\n \n \n Instagram\n \n \n Linkedin-in\n \n \"\" \n \n \n \"\"\n \n \n Make Appointment\n ','Header','','inherit','closed','closed','','41-revision-v1','','','2024-07-24 16:13:00','2024-07-24 16:13:00','',41,'https://victor-quintero.designsfunnelserver.com/?p=261',0,'revision','',0),(262,1,'2024-07-24 16:14:46','2024-07-24 16:14:46',' \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n 123 Wall St\nMiami, FL 12345

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n +1 505 555 5555

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n \n Jki-facebook-f\n \n \n X-twitter\n \n \n Instagram\n \n \n Linkedin-in\n \n \"\" \n \n \n \"\"\n \n \n Make Appointment\n ','Header','','inherit','closed','closed','','41-revision-v1','','','2024-07-24 16:14:46','2024-07-24 16:14:46','',41,'https://victor-quintero.designsfunnelserver.com/?p=262',0,'revision','',0),(263,1,'2024-07-24 16:14:46','2024-07-24 16:14:46',' \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n 123 Wall St\nMiami, FL 12345

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n +1 505 555 5555

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n \n Jki-facebook-f\n \n \n X-twitter\n \n \n Instagram\n \n \n Linkedin-in\n \n \"\" \n \n \n \"\"\n \n \n Make Appointment\n ','Header','','inherit','closed','closed','','41-revision-v1','','','2024-07-24 16:14:46','2024-07-24 16:14:46','',41,'https://victor-quintero.designsfunnelserver.com/?p=263',0,'revision','',0),(264,1,'2024-07-24 16:14:46','2024-07-24 16:14:46',' \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n 123 Wall St\nMiami, FL 12345

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n +1 505 555 5555

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n \n Jki-facebook-f\n \n \n X-twitter\n \n \n Instagram\n \n \n Linkedin-in\n \n \"\" \n \n \n \"\"\n \n \n Make Appointment\n \n \"\" \n \n \n \"\"\n ','Header','','inherit','closed','closed','','41-revision-v1','','','2024-07-24 16:14:46','2024-07-24 16:14:46','',41,'https://victor-quintero.designsfunnelserver.com/?p=264',0,'revision','',0),(265,1,'2024-07-24 16:17:12','2024-07-24 16:17:12',' \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n 123 Wall St\nMiami, FL 12345

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n +1 505 555 5555

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n \n Jki-facebook-f\n \n \n X-twitter\n \n \n Instagram\n \n \n Linkedin-in\n \n \"\" \n \n \n \"\"\n \n \n Make Appointment\n \n \"\" \n \n \n \"\"\n ','Header','','inherit','closed','closed','','41-revision-v1','','','2024-07-24 16:17:12','2024-07-24 16:17:12','',41,'https://victor-quintero.designsfunnelserver.com/?p=265',0,'revision','',0),(266,1,'2024-07-24 16:17:12','2024-07-24 16:17:12',' \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n 123 Wall St\nMiami, FL 12345

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n +1 505 555 5555

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n \n Jki-facebook-f\n \n \n X-twitter\n \n \n Instagram\n \n \n Linkedin-in\n \n \"\" \n \n \n \"\"\n \n \n Make Appointment\n \n \"\" \n \n \n \"\"\n ','Header','','inherit','closed','closed','','41-revision-v1','','','2024-07-24 16:17:12','2024-07-24 16:17:12','',41,'https://victor-quintero.designsfunnelserver.com/?p=266',0,'revision','',0),(267,1,'2024-07-24 16:17:13','2024-07-24 16:17:13',' \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n 123 Wall St\nMiami, FL 12345

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n +1 505 555 5555

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n \n Jki-facebook-f\n \n \n X-twitter\n \n \n Instagram\n \n \n Linkedin-in\n \n \"\" \n \n \n \"\"\n \n \n Make Appointment\n \n \"\" \n \n \n \"\"\n ','Header','','inherit','closed','closed','','41-revision-v1','','','2024-07-24 16:17:13','2024-07-24 16:17:13','',41,'https://victor-quintero.designsfunnelserver.com/?p=267',0,'revision','',0),(268,1,'2024-07-24 16:17:34','2024-07-24 16:17:34',' \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n 123 Wall St\nMiami, FL 12345

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n +1 505 555 5555

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n \n Jki-facebook-f\n \n \n X-twitter\n \n \n Instagram\n \n \n Linkedin-in\n \n \"\" \n \n \n \"\"\n \n \n Make Appointment\n \n \"\" \n \n \n \"\"\n ','Header','','inherit','closed','closed','','41-revision-v1','','','2024-07-24 16:17:34','2024-07-24 16:17:34','',41,'https://victor-quintero.designsfunnelserver.com/?p=268',0,'revision','',0),(269,1,'2024-07-24 16:17:34','2024-07-24 16:17:34',' \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n 123 Wall St\nMiami, FL 12345

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n +1 505 555 5555

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n \n Jki-facebook-f\n \n \n X-twitter\n \n \n Instagram\n \n \n Linkedin-in\n \n \"\" \n \n \n \"\"\n \n \n Make Appointment\n \n \"\" \n \n \n \"\"\n ','Header','','inherit','closed','closed','','41-revision-v1','','','2024-07-24 16:17:34','2024-07-24 16:17:34','',41,'https://victor-quintero.designsfunnelserver.com/?p=269',0,'revision','',0),(270,1,'2024-07-24 16:17:34','2024-07-24 16:17:34',' \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n 123 Wall St\nMiami, FL 12345

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n +1 505 555 5555

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n \n Jki-facebook-f\n \n \n X-twitter\n \n \n Instagram\n \n \n Linkedin-in\n \n \"\" \n \n \n \"\"\n \n \n Make Appointment\n \n \"\" \n \n \n \"\"\n ','Header','','inherit','closed','closed','','41-revision-v1','','','2024-07-24 16:17:34','2024-07-24 16:17:34','',41,'https://victor-quintero.designsfunnelserver.com/?p=270',0,'revision','',0),(271,1,'2024-07-24 16:18:28','2024-07-24 16:18:28',' \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n 123 Wall St\nMiami, FL 12345

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n +1 505 555 5555

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n \n Jki-facebook-f\n \n \n X-twitter\n \n \n Instagram\n \n \n Linkedin-in\n \n \"\" \n \n \n \"\"\n \n \n Make Appointment\n \n \"\" \n \n \n \"\"\n ','Header','','inherit','closed','closed','','41-revision-v1','','','2024-07-24 16:18:28','2024-07-24 16:18:28','',41,'https://victor-quintero.designsfunnelserver.com/?p=271',0,'revision','',0),(272,1,'2024-07-24 16:18:28','2024-07-24 16:18:28',' \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n 123 Wall St\nMiami, FL 12345

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n +1 505 555 5555

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n \n Jki-facebook-f\n \n \n X-twitter\n \n \n Instagram\n \n \n Linkedin-in\n \n \"\" \n \n \n \"\"\n \n \n Make Appointment\n \n \"\" \n \n \n \"\"\n ','Header','','inherit','closed','closed','','41-revision-v1','','','2024-07-24 16:18:28','2024-07-24 16:18:28','',41,'https://victor-quintero.designsfunnelserver.com/?p=272',0,'revision','',0),(273,1,'2024-07-24 16:18:28','2024-07-24 16:18:28',' \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n 123 Wall St\nMiami, FL 12345

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n +1 505 555 5555

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n \n Jki-facebook-f\n \n \n X-twitter\n \n \n Instagram\n \n \n Linkedin-in\n \n \"\" \n \n \n \"\"\n \n \n Make Appointment\n \n \"\" \n \n \n \"\"\n ','Header','','inherit','closed','closed','','41-revision-v1','','','2024-07-24 16:18:28','2024-07-24 16:18:28','',41,'https://victor-quintero.designsfunnelserver.com/?p=273',0,'revision','',0),(274,1,'2024-07-24 16:19:22','2024-07-24 16:19:22',' \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n 123 Wall St\nMiami, FL 12345

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n +1 505 555 5555

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n \n Jki-facebook-f\n \n \n X-twitter\n \n \n Instagram\n \n \n Linkedin-in\n \n \"\" \n \n \n \"\"\n \n \n Make Appointment\n \n \"\" \n \n \n \"\"\n ','Header','','inherit','closed','closed','','41-revision-v1','','','2024-07-24 16:19:22','2024-07-24 16:19:22','',41,'https://victor-quintero.designsfunnelserver.com/?p=274',0,'revision','',0),(275,1,'2024-07-24 16:19:22','2024-07-24 16:19:22',' \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n 123 Wall St\nMiami, FL 12345

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n +1 505 555 5555

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n \n Jki-facebook-f\n \n \n X-twitter\n \n \n Instagram\n \n \n Linkedin-in\n \n \"\" \n \n \n \"\"\n \n \n Make Appointment\n \n \"\" \n \n \n \"\"\n ','Header','','inherit','closed','closed','','41-revision-v1','','','2024-07-24 16:19:22','2024-07-24 16:19:22','',41,'https://victor-quintero.designsfunnelserver.com/?p=275',0,'revision','',0),(276,1,'2024-07-24 16:19:23','2024-07-24 16:19:23',' \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n 123 Wall St\nMiami, FL 12345

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n +1 505 555 5555

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n \n Jki-facebook-f\n \n \n X-twitter\n \n \n Instagram\n \n \n Linkedin-in\n \n \"\" \n \n \n \"\"\n \n \n Make Appointment\n \n \"\" \n \n \n \"\"\n ','Header','','inherit','closed','closed','','41-revision-v1','','','2024-07-24 16:19:23','2024-07-24 16:19:23','',41,'https://victor-quintero.designsfunnelserver.com/?p=276',0,'revision','',0),(277,1,'2024-07-24 16:20:58','2024-07-24 16:20:58',' \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n 123 Wall St\nMiami, FL 12345

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n +1 505 555 5555

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n \n Jki-facebook-f\n \n \n X-twitter\n \n \n Instagram\n \n \n Linkedin-in\n \n \"\" \n \n \n \"\"\n \n \n Make Appointment\n \n \"\" \n \n \n \"\"\n ','Header','','inherit','closed','closed','','41-revision-v1','','','2024-07-24 16:20:58','2024-07-24 16:20:58','',41,'https://victor-quintero.designsfunnelserver.com/?p=277',0,'revision','',0),(278,1,'2024-07-24 16:20:59','2024-07-24 16:20:59',' \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n 123 Wall St\nMiami, FL 12345

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n +1 505 555 5555

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n \n Jki-facebook-f\n \n \n X-twitter\n \n \n Instagram\n \n \n Linkedin-in\n \n \"\" \n \n \n \"\"\n \n \n Make Appointment\n \n \"\" \n \n \n \"\"\n ','Header','','inherit','closed','closed','','41-revision-v1','','','2024-07-24 16:20:59','2024-07-24 16:20:59','',41,'https://victor-quintero.designsfunnelserver.com/?p=278',0,'revision','',0),(279,1,'2024-07-24 16:20:59','2024-07-24 16:20:59',' \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n 123 Wall St\nMiami, FL 12345

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n +1 505 555 5555

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n \n Jki-facebook-f\n \n \n X-twitter\n \n \n Instagram\n \n \n Linkedin-in\n \n \"\" \n \n \n \"\"\n \n \n Make Appointment\n \n \"\" \n \n \n \"\"\n ','Header','','inherit','closed','closed','','41-revision-v1','','','2024-07-24 16:20:59','2024-07-24 16:20:59','',41,'https://victor-quintero.designsfunnelserver.com/?p=279',0,'revision','',0),(280,1,'2024-07-24 16:22:54','2024-07-24 16:22:54','

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Complete For All Landscape Service And Maintenance

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation \n \n Contact Us\n \n \n \n Watch Intro\n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          About Prestige Luxury Cleanings LLC
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          We Provide Landscaping And Garden Care Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit \n \"gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk\" \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • \n Public Liability Insurance\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • \n Environmentally Friendly\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • \n On Time, Every Time\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • \n Beautiful Garden Designs\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • \n Modern Machinery And Tool\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n More About Us\n \n \"gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w\" \n \"gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68\" \n 0\n +\n Projects Completed\n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Why Choose Us
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          We Have The Perfect Solution For Your Landscape Problems

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Variation Gardening

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Expert Landscapers

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Affordable Price

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Free Consultation

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Our Services
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Providing Services For All Your Residential And Commercial Needs.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Residential And Commercial Projects

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lawn Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Driveway Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Deck Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Weed Control

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Grass Feed

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Best Landscaping
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Need Someone To Take Care Your Garden & Lawn?

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Make Appointment & Take Care Your Garden

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Work Process
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          We Complete Every Step Carefully

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Start Consultation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n 01 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Design Installation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n 02 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Start Consturction \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n 03 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Finished Work \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n 04 \n 0\n +\n Years of Experience\n 0\n +\n Projects Completed\n 0\n +\n Happy Customers\n 0\n +\n Expert Landscapers\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Our Projects
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Project We Have Done\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n All Projects\n \n \"Cutting\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Cutting Leaf

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n \"Home\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Home Garden

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n \"Build\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Build Backyard

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Testimonials
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                What They Says About Us

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n \"Regan\n Regan Traynor\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Entrepreneur

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n \"Maisha\n Maisha Dunn\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Entrepreneur

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n \"Reis\n Reis Leonard\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Businessman

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Our Blog
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lates News and Articles

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n ','Home','','inherit','closed','closed','','24-revision-v1','','','2024-07-24 16:22:54','2024-07-24 16:22:54','',24,'https://victor-quintero.designsfunnelserver.com/?p=280',0,'revision','',0),(281,1,'2024-07-24 16:22:55','2024-07-24 16:22:55','

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Complete For All Landscape Service And Maintenance

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation \n \n Contact Us\n \n \n \n Watch Intro\n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      About Prestige Luxury Cleanings LLC
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      We Provide Landscaping And Garden Care Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit \n \"gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk\" \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n Public Liability Insurance\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n Environmentally Friendly\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n On Time, Every Time\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n Beautiful Garden Designs\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n Modern Machinery And Tool\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n \n More About Us\n \n \"gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w\" \n \"gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68\" \n 0\n +\n Projects Completed\n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Why Choose Us
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      We Have The Perfect Solution For Your Landscape Problems

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Variation Gardening

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Expert Landscapers

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Affordable Price

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Free Consultation

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Our Services
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Providing Services For All Your Residential And Commercial Needs.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Residential And Commercial Projects

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lawn Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Driveway Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Deck Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Weed Control

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Grass Feed

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Best Landscaping
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Need Someone To Take Care Your Garden & Lawn?

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Make Appointment & Take Care Your Garden

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Work Process
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      We Complete Every Step Carefully

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Start Consultation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n 01 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Design Installation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n 02 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Start Consturction \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n 03 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Finished Work \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n 04 \n 0\n +\n Years of Experience\n 0\n +\n Projects Completed\n 0\n +\n Happy Customers\n 0\n +\n Expert Landscapers\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Our Projects
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Project We Have Done\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n All Projects\n \n \"Cutting\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Cutting Leaf

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n \"Home\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Home Garden

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \"Build\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Build Backyard

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Testimonials
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            What They Says About Us

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n \"Regan\n Regan Traynor\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Entrepreneur

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n \"Maisha\n Maisha Dunn\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Entrepreneur

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n \"Reis\n Reis Leonard\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Businessman

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Our Blog
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lates News and Articles

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n ','Home','','inherit','closed','closed','','24-revision-v1','','','2024-07-24 16:22:55','2024-07-24 16:22:55','',24,'https://victor-quintero.designsfunnelserver.com/?p=281',0,'revision','',0),(282,1,'2024-07-24 16:22:56','2024-07-24 16:22:56','

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Complete For All Landscape Service And Maintenance

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation \n \n Contact Us\n \n \n \n Watch Intro\n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  About Prestige Luxury Cleanings LLC
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  We Provide Landscaping And Garden Care Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit \n \"gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk\" \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • \n Public Liability Insurance\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • \n Environmentally Friendly\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • \n On Time, Every Time\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • \n Beautiful Garden Designs\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • \n Modern Machinery And Tool\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n \n More About Us\n \n \"gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w\" \n \"gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68\" \n 0\n +\n Projects Completed\n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Why Choose Us
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  We Have The Perfect Solution For Your Landscape Problems

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Variation Gardening

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Expert Landscapers

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Affordable Price

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Free Consultation

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Our Services
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Providing Services For All Your Residential And Commercial Needs.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Residential And Commercial Projects

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lawn Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Driveway Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Deck Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Weed Control

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Grass Feed

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Best Landscaping
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Need Someone To Take Care Your Garden & Lawn?

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Make Appointment & Take Care Your Garden

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Work Process
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  We Complete Every Step Carefully

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Start Consultation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n 01 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Design Installation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n 02 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Start Consturction \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n 03 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Finished Work \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n 04 \n 0\n +\n Years of Experience\n 0\n +\n Projects Completed\n 0\n +\n Happy Customers\n 0\n +\n Expert Landscapers\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Our Projects
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Project We Have Done\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n All Projects\n \n \"Cutting\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Cutting Leaf

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n \"Home\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Home Garden

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n \"Build\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Build Backyard

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Testimonials
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        What They Says About Us

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \"Regan\n Regan Traynor\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Entrepreneur

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n \"Maisha\n Maisha Dunn\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Entrepreneur

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n \"Reis\n Reis Leonard\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Businessman

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Our Blog
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lates News and Articles

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n ','Home','','inherit','closed','closed','','24-revision-v1','','','2024-07-24 16:22:56','2024-07-24 16:22:56','',24,'https://victor-quintero.designsfunnelserver.com/?p=282',0,'revision','',0),(283,1,'2024-07-24 16:26:45','2024-07-24 16:26:45','

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Complete For All Landscape Service And Maintenance

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation \n \n Contact Us\n \n \n \n Watch Intro\n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              About Prestige Luxury Cleanings LLC
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              We Provide Landscaping And Garden Care Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit \n \"gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk\" \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • \n Public Liability Insurance\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • \n Environmentally Friendly\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • \n On Time, Every Time\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • \n Beautiful Garden Designs\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • \n Modern Machinery And Tool\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n \n More About Us\n \n \"gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w\" \n \"gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68\" \n 0\n +\n Projects Completed\n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Why Choose Us
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              We Have The Perfect Solution For Your Landscape Problems

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Variation Gardening

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Expert Landscapers

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Affordable Price

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Free Consultation

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Our Services
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Providing Services For All Your Residential And Commercial Needs.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Residential And Commercial Projects

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lawn Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Driveway Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Deck Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Weed Control

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Grass Feed

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Best Landscaping
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Need Someone To Take Care Your Garden & Lawn?

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Make Appointment & Take Care Your Garden

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Work Process
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              We Complete Every Step Carefully

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Start Consultation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n 01 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Design Installation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n 02 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Start Consturction \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n 03 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Finished Work \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n 04 \n 0\n +\n Years of Experience\n 0\n +\n Projects Completed\n 0\n +\n Happy Customers\n 0\n +\n Expert Landscapers\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Our Projects
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Project We Have Done\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n All Projects\n \n \"Cutting\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Cutting Leaf

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n \"Home\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Home Garden

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n \"Build\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Build Backyard

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Testimonials
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    What They Says About Us

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n \"Regan\n Regan Traynor\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Entrepreneur

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n \"Maisha\n Maisha Dunn\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Entrepreneur

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \"Reis\n Reis Leonard\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Businessman

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Our Blog
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lates News and Articles

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n ','Home','','inherit','closed','closed','','24-revision-v1','','','2024-07-24 16:26:45','2024-07-24 16:26:45','',24,'https://victor-quintero.designsfunnelserver.com/?p=283',0,'revision','',0),(284,1,'2024-07-24 16:26:46','2024-07-24 16:26:46','

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Complete For All Landscape Service And Maintenance

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation \n \n Contact Us\n \n \n \n Watch Intro\n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          About Prestige Luxury Cleanings LLC
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          We Provide Landscaping And Garden Care Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit \n \"gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk\" \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • \n Public Liability Insurance\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • \n Environmentally Friendly\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • \n On Time, Every Time\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • \n Beautiful Garden Designs\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • \n Modern Machinery And Tool\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n More About Us\n \n \"gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w\" \n \"gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68\" \n 0\n +\n Projects Completed\n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Why Choose Us
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          We Have The Perfect Solution For Your Landscape Problems

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Variation Gardening

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Expert Landscapers

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Affordable Price

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Free Consultation

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Our Services
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Providing Services For All Your Residential And Commercial Needs.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Residential And Commercial Projects

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lawn Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Driveway Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Deck Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Weed Control

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Grass Feed

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Best Landscaping
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Need Someone To Take Care Your Garden & Lawn?

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Make Appointment & Take Care Your Garden

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Work Process
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          We Complete Every Step Carefully

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Start Consultation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n 01 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Design Installation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n 02 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Start Consturction \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n 03 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Finished Work \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n 04 \n 0\n +\n Years of Experience\n 0\n +\n Projects Completed\n 0\n +\n Happy Customers\n 0\n +\n Expert Landscapers\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Our Projects
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Project We Have Done\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n All Projects\n \n \"Cutting\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Cutting Leaf

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n \"Home\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Home Garden

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n \"Build\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Build Backyard

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Testimonials
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                What They Says About Us

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n \"Regan\n Regan Traynor\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Entrepreneur

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n \"Maisha\n Maisha Dunn\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Entrepreneur

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n \"Reis\n Reis Leonard\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Businessman

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Our Blog
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lates News and Articles

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n ','Home','','inherit','closed','closed','','24-revision-v1','','','2024-07-24 16:26:46','2024-07-24 16:26:46','',24,'https://victor-quintero.designsfunnelserver.com/?p=284',0,'revision','',0),(285,1,'2024-07-24 16:26:47','2024-07-24 16:26:47','

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Complete For All Landscape Service And Maintenance

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation \n \n Contact Us\n \n \n \n Watch Intro\n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      About Prestige Luxury Cleanings LLC
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      We Provide Landscaping And Garden Care Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit \n \"gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk\" \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n Public Liability Insurance\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n Environmentally Friendly\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n On Time, Every Time\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n Beautiful Garden Designs\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n Modern Machinery And Tool\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n \n More About Us\n \n \"gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w\" \n \"gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68\" \n 0\n +\n Projects Completed\n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Why Choose Us
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      We Have The Perfect Solution For Your Landscape Problems

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Variation Gardening

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Expert Landscapers

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Affordable Price

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Free Consultation

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Our Services
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Providing Services For All Your Residential And Commercial Needs.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Residential And Commercial Projects

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lawn Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Driveway Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Deck Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Weed Control

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Grass Feed

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Best Landscaping
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Need Someone To Take Care Your Garden & Lawn?

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Make Appointment & Take Care Your Garden

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Work Process
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      We Complete Every Step Carefully

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Start Consultation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n 01 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Design Installation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n 02 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Start Consturction \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n 03 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Finished Work \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n 04 \n 0\n +\n Years of Experience\n 0\n +\n Projects Completed\n 0\n +\n Happy Customers\n 0\n +\n Expert Landscapers\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Our Projects
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Project We Have Done\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n All Projects\n \n \"Cutting\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Cutting Leaf

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n \"Home\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Home Garden

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \"Build\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Build Backyard

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Testimonials
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            What They Says About Us

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n \"Regan\n Regan Traynor\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Entrepreneur

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n \"Maisha\n Maisha Dunn\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Entrepreneur

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n \"Reis\n Reis Leonard\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Businessman

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Our Blog
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lates News and Articles

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n ','Home','','inherit','closed','closed','','24-revision-v1','','','2024-07-24 16:26:47','2024-07-24 16:26:47','',24,'https://victor-quintero.designsfunnelserver.com/?p=285',0,'revision','',0),(286,1,'2024-07-24 16:27:33','2024-07-24 16:27:33','

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Complete For All Landscape Service And Maintenance

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation \n \n Contact Us\n \n \n \n Watch Intro\n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  About Prestige Luxury Cleanings LLC
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  We Provide Landscaping And Garden Care Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit \n \"gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk\" \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • \n Public Liability Insurance\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • \n Environmentally Friendly\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • \n On Time, Every Time\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • \n Beautiful Garden Designs\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • \n Modern Machinery And Tool\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n \n More About Us\n \n \"gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w\" \n \"gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68\" \n 0\n +\n Projects Completed\n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Why Choose Us
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  We Have The Perfect Solution For Your Landscape Problems

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Variation Gardening

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Expert Landscapers

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Affordable Price

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Free Consultation

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Our Services
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Providing Services For All Your Residential And Commercial Needs.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Residential And Commercial Projects

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lawn Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Driveway Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Deck Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Weed Control

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Grass Feed

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Best Landscaping
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Need Someone To Take Care Your Garden & Lawn?

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Make Appointment & Take Care Your Garden

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Work Process
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  We Complete Every Step Carefully

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Start Consultation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n 01 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Design Installation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n 02 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Start Consturction \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n 03 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Finished Work \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n 04 \n 0\n +\n Years of Experience\n 0\n +\n Projects Completed\n 0\n +\n Happy Customers\n 0\n +\n Expert Landscapers\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Our Projects
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Project We Have Done\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n All Projects\n \n \"Cutting\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Cutting Leaf

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n \"Home\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Home Garden

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n \"Build\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Build Backyard

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Testimonials
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        What They Says About Us

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \"Regan\n Regan Traynor\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Entrepreneur

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n \"Maisha\n Maisha Dunn\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Entrepreneur

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n \"Reis\n Reis Leonard\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Businessman

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Our Blog
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lates News and Articles

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n ','Home','','inherit','closed','closed','','24-revision-v1','','','2024-07-24 16:27:33','2024-07-24 16:27:33','',24,'https://victor-quintero.designsfunnelserver.com/?p=286',0,'revision','',0),(287,1,'2024-07-24 16:27:33','2024-07-24 16:27:33','

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Complete For All Landscape Service And Maintenance

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation \n \n Contact Us\n \n \n \n Watch Intro\n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              About Prestige Luxury Cleanings LLC
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              We Provide Landscaping And Garden Care Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit \n \"gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk\" \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • \n Public Liability Insurance\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • \n Environmentally Friendly\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • \n On Time, Every Time\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • \n Beautiful Garden Designs\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • \n Modern Machinery And Tool\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n \n More About Us\n \n \"gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w\" \n \"gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68\" \n 0\n +\n Projects Completed\n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Why Choose Us
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              We Have The Perfect Solution For Your Landscape Problems

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Variation Gardening

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Expert Landscapers

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Affordable Price

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Free Consultation

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Our Services
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Providing Services For All Your Residential And Commercial Needs.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Residential And Commercial Projects

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lawn Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Driveway Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Deck Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Weed Control

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Grass Feed

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Best Landscaping
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Need Someone To Take Care Your Garden & Lawn?

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Make Appointment & Take Care Your Garden

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Work Process
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              We Complete Every Step Carefully

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Start Consultation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n 01 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Design Installation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n 02 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Start Consturction \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n 03 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Finished Work \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n 04 \n 0\n +\n Years of Experience\n 0\n +\n Projects Completed\n 0\n +\n Happy Customers\n 0\n +\n Expert Landscapers\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Our Projects
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Project We Have Done\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n All Projects\n \n \"Cutting\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Cutting Leaf

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n \"Home\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Home Garden

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n \"Build\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Build Backyard

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Testimonials
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    What They Says About Us

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n \"Regan\n Regan Traynor\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Entrepreneur

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n \"Maisha\n Maisha Dunn\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Entrepreneur

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \"Reis\n Reis Leonard\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Businessman

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Our Blog
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lates News and Articles

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n ','Home','','inherit','closed','closed','','24-revision-v1','','','2024-07-24 16:27:33','2024-07-24 16:27:33','',24,'https://victor-quintero.designsfunnelserver.com/?p=287',0,'revision','',0),(288,1,'2024-07-24 16:27:34','2024-07-24 16:27:34','

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Complete For All Landscape Service And Maintenance

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation \n \n Contact Us\n \n \n \n Watch Intro\n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          About Prestige Luxury Cleanings LLC
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          We Provide Landscaping And Garden Care Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit \n \"gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk\" \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • \n Public Liability Insurance\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • \n Environmentally Friendly\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • \n On Time, Every Time\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • \n Beautiful Garden Designs\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • \n Modern Machinery And Tool\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n More About Us\n \n \"gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w\" \n \"gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68\" \n 0\n +\n Projects Completed\n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Why Choose Us
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          We Have The Perfect Solution For Your Landscape Problems

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Variation Gardening

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Expert Landscapers

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Affordable Price

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Free Consultation

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Our Services
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Providing Services For All Your Residential And Commercial Needs.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Residential And Commercial Projects

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lawn Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Driveway Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Deck Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Weed Control

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Grass Feed

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Best Landscaping
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Need Someone To Take Care Your Garden & Lawn?

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Make Appointment & Take Care Your Garden

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Work Process
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          We Complete Every Step Carefully

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Start Consultation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n 01 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Design Installation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n 02 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Start Consturction \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n 03 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Finished Work \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n 04 \n 0\n +\n Years of Experience\n 0\n +\n Projects Completed\n 0\n +\n Happy Customers\n 0\n +\n Expert Landscapers\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Our Projects
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Project We Have Done\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n All Projects\n \n \"Cutting\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Cutting Leaf

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n \"Home\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Home Garden

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n \"Build\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Build Backyard

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Testimonials
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                What They Says About Us

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n \"Regan\n Regan Traynor\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Entrepreneur

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n \"Maisha\n Maisha Dunn\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Entrepreneur

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n \"Reis\n Reis Leonard\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Businessman

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Our Blog
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lates News and Articles

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n ','Home','','inherit','closed','closed','','24-revision-v1','','','2024-07-24 16:27:34','2024-07-24 16:27:34','',24,'https://victor-quintero.designsfunnelserver.com/?p=288',0,'revision','',0),(289,1,'2024-07-24 16:31:18','2024-07-24 16:31:18','

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Complete For All Landscape Service And Maintenance

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation \n \n Contact Us\n \n \n \n Watch Intro\n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      About Prestige Luxury Cleanings LLC
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      We Provide Landscaping And Garden Care Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit \n \"gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk\" \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n Public Liability Insurance\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n Environmentally Friendly\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n On Time, Every Time\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n Beautiful Garden Designs\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n Modern Machinery And Tool\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n \n More About Us\n \n \"gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w\" \n \"gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68\" \n 0\n +\n Projects Completed\n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Why Choose Us
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      We Have The Perfect Solution For Your Landscape Problems

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Variation Gardening

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Expert Landscapers

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Affordable Price

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Free Consultation

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Our Services
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Providing Services For All Your Residential And Commercial Needs.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Residential And Commercial Projects

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lawn Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Driveway Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Deck Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Weed Control

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Grass Feed

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Best Landscaping
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Need Someone To Take Care Your Garden & Lawn?

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Make Appointment & Take Care Your Garden

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Work Process
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      We Complete Every Step Carefully

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Start Consultation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n 01 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Design Installation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n 02 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Start Consturction \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n 03 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Finished Work \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n 04 \n 0\n +\n Years of Experience\n 0\n +\n Projects Completed\n 0\n +\n Happy Customers\n 0\n +\n Expert Landscapers\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Our Projects
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Project We Have Done\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n All Projects\n \n \"Cutting\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Cutting Leaf

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n \"Home\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Home Garden

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \"Build\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Build Backyard

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Testimonials
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            What They Says About Us

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n \"Regan\n Regan Traynor\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Entrepreneur

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n \"Maisha\n Maisha Dunn\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Entrepreneur

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n \"Reis\n Reis Leonard\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Businessman

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Our Blog
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lates News and Articles

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n ','Home','','inherit','closed','closed','','24-revision-v1','','','2024-07-24 16:31:18','2024-07-24 16:31:18','',24,'https://victor-quintero.designsfunnelserver.com/?p=289',0,'revision','',0),(290,1,'2024-07-24 16:31:20','2024-07-24 16:31:20','

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Complete For All Landscape Service And Maintenance

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation \n \n Contact Us\n \n \n \n Watch Intro\n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  About Prestige Luxury Cleanings LLC
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  We Provide Landscaping And Garden Care Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit \n \"gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk\" \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • \n Public Liability Insurance\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • \n Environmentally Friendly\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • \n On Time, Every Time\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • \n Beautiful Garden Designs\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • \n Modern Machinery And Tool\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n \n More About Us\n \n \"gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w\" \n \"gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68\" \n 0\n +\n Projects Completed\n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Why Choose Us
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  We Have The Perfect Solution For Your Landscape Problems

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Variation Gardening

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Expert Landscapers

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Affordable Price

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Free Consultation

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Our Services
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Providing Services For All Your Residential And Commercial Needs.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Residential And Commercial Projects

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lawn Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Driveway Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Deck Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Weed Control

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Grass Feed

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Best Landscaping
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Need Someone To Take Care Your Garden & Lawn?

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Make Appointment & Take Care Your Garden

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Work Process
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  We Complete Every Step Carefully

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Start Consultation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n 01 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Design Installation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n 02 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Start Consturction \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n 03 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Finished Work \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n 04 \n 0\n +\n Years of Experience\n 0\n +\n Projects Completed\n 0\n +\n Happy Customers\n 0\n +\n Expert Landscapers\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Our Projects
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Project We Have Done\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n All Projects\n \n \"Cutting\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Cutting Leaf

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n \"Home\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Home Garden

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n \"Build\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Build Backyard

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Testimonials
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        What They Says About Us

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \"Regan\n Regan Traynor\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Entrepreneur

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n \"Maisha\n Maisha Dunn\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Entrepreneur

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n \"Reis\n Reis Leonard\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Businessman

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Our Blog
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lates News and Articles

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n ','Home','','inherit','closed','closed','','24-revision-v1','','','2024-07-24 16:31:20','2024-07-24 16:31:20','',24,'https://victor-quintero.designsfunnelserver.com/?p=290',0,'revision','',0),(291,1,'2024-07-24 16:31:22','2024-07-24 16:31:22','

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Complete For All Landscape Service And Maintenance

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation \n \n Contact Us\n \n \n \n Watch Intro\n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              About Prestige Luxury Cleanings LLC
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              We Provide Landscaping And Garden Care Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit \n \"gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk\" \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • \n Public Liability Insurance\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • \n Environmentally Friendly\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • \n On Time, Every Time\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • \n Beautiful Garden Designs\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • \n Modern Machinery And Tool\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n \n More About Us\n \n \"gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w\" \n \"gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68\" \n 0\n +\n Projects Completed\n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Why Choose Us
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              We Have The Perfect Solution For Your Landscape Problems

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Variation Gardening

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Expert Landscapers

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Affordable Price

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Free Consultation

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Our Services
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Providing Services For All Your Residential And Commercial Needs.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lawn Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Driveway Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Deck Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Weed Control

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Grass Feed

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Best Landscaping
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Need Someone To Take Care Your Garden & Lawn?

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Make Appointment & Take Care Your Garden

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Work Process
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              We Complete Every Step Carefully

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Start Consultation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n 01 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Design Installation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n 02 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Start Consturction \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n 03 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Finished Work \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n 04 \n 0\n +\n Years of Experience\n 0\n +\n Projects Completed\n 0\n +\n Happy Customers\n 0\n +\n Expert Landscapers\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Our Projects
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Project We Have Done\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n All Projects\n \n \"Cutting\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Cutting Leaf

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n \"Home\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Home Garden

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n \"Build\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Build Backyard

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Testimonials
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    What They Says About Us

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n \"Regan\n Regan Traynor\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Entrepreneur

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n \"Maisha\n Maisha Dunn\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Entrepreneur

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \"Reis\n Reis Leonard\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Businessman

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Our Blog
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lates News and Articles

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n ','Home','','inherit','closed','closed','','24-revision-v1','','','2024-07-24 16:31:22','2024-07-24 16:31:22','',24,'https://victor-quintero.designsfunnelserver.com/?p=291',0,'revision','',0),(292,1,'2024-07-24 16:35:44','2024-07-24 16:35:44',' \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lawn Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n Book Now','service 1','','publish','closed','closed','','service-1','','','2024-07-24 19:00:45','2024-07-24 19:00:45','',0,'https://victor-quintero.designsfunnelserver.com/?post_type=elementor_library&p=292',0,'elementor_library','',0),(293,1,'2024-07-24 16:35:44','2024-07-24 16:35:44','','service 1','','inherit','closed','closed','','292-revision-v1','','','2024-07-24 16:35:44','2024-07-24 16:35:44','',292,'https://victor-quintero.designsfunnelserver.com/?p=293',0,'revision','',0),(294,1,'2024-07-24 16:37:05','2024-07-24 16:37:05','','service 1','','inherit','closed','closed','','292-revision-v1','','','2024-07-24 16:37:05','2024-07-24 16:37:05','',292,'https://victor-quintero.designsfunnelserver.com/?p=294',0,'revision','',0),(295,1,'2024-07-24 16:37:06','2024-07-24 16:37:06',' \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lawn Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n ','service 1','','inherit','closed','closed','','292-revision-v1','','','2024-07-24 16:37:06','2024-07-24 16:37:06','',292,'https://victor-quintero.designsfunnelserver.com/?p=295',0,'revision','',0),(296,1,'2024-07-24 16:37:33','2024-07-24 16:37:33',' \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lawn Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n Book Now','service 1','','inherit','closed','closed','','292-revision-v1','','','2024-07-24 16:37:33','2024-07-24 16:37:33','',292,'https://victor-quintero.designsfunnelserver.com/?p=296',0,'revision','',0),(297,1,'2024-07-24 16:38:00','2024-07-24 16:38:00',' \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Driveway Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n Book Now','Service 2','','publish','closed','closed','','service-2','','','2024-07-24 19:03:09','2024-07-24 19:03:09','',0,'https://victor-quintero.designsfunnelserver.com/?post_type=elementor_library&p=297',0,'elementor_library','',0),(298,1,'2024-07-24 16:38:00','2024-07-24 16:38:00','','Service 2','','inherit','closed','closed','','297-revision-v1','','','2024-07-24 16:38:00','2024-07-24 16:38:00','',297,'https://victor-quintero.designsfunnelserver.com/?p=298',0,'revision','',0),(299,1,'2024-07-24 16:38:35','2024-07-24 16:38:35',' \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Deck Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n Book Now','Service 3','','publish','closed','closed','','service-3','','','2024-07-24 19:03:15','2024-07-24 19:03:15','',0,'https://victor-quintero.designsfunnelserver.com/?post_type=elementor_library&p=299',0,'elementor_library','',0),(300,1,'2024-07-24 16:38:42','2024-07-24 16:38:42',' \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Weed Control

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n Book Now','Service 4','','publish','closed','closed','','service-4','','','2024-07-24 19:03:22','2024-07-24 19:03:22','',0,'https://victor-quintero.designsfunnelserver.com/?post_type=elementor_library&p=300',0,'elementor_library','',0),(301,1,'2024-07-24 16:38:35','2024-07-24 16:38:35','','Service 3','','inherit','closed','closed','','299-revision-v1','','','2024-07-24 16:38:35','2024-07-24 16:38:35','',299,'https://victor-quintero.designsfunnelserver.com/?p=301',0,'revision','',0),(302,1,'2024-07-24 16:38:42','2024-07-24 16:38:42','','Service 4','','inherit','closed','closed','','300-revision-v1','','','2024-07-24 16:38:42','2024-07-24 16:38:42','',300,'https://victor-quintero.designsfunnelserver.com/?p=302',0,'revision','',0),(303,1,'2024-07-24 16:39:08','2024-07-24 16:39:08',' \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Grass Feed

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n Book Now','Service 5','','publish','closed','closed','','service-5','','','2024-07-24 19:03:29','2024-07-24 19:03:29','',0,'https://victor-quintero.designsfunnelserver.com/?post_type=elementor_library&p=303',0,'elementor_library','',0),(304,1,'2024-07-24 16:39:08','2024-07-24 16:39:08','','Service 5','','inherit','closed','closed','','303-revision-v1','','','2024-07-24 16:39:08','2024-07-24 16:39:08','',303,'https://victor-quintero.designsfunnelserver.com/?p=304',0,'revision','',0),(305,1,'2024-07-24 16:40:06','2024-07-24 16:40:06','','Service 2','','inherit','closed','closed','','297-revision-v1','','','2024-07-24 16:40:06','2024-07-24 16:40:06','',297,'https://victor-quintero.designsfunnelserver.com/?p=305',0,'revision','',0),(306,1,'2024-07-24 16:40:06','2024-07-24 16:40:06',' \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Driveway Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n Book Now','Service 2','','inherit','closed','closed','','297-revision-v1','','','2024-07-24 16:40:06','2024-07-24 16:40:06','',297,'https://victor-quintero.designsfunnelserver.com/?p=306',0,'revision','',0),(307,1,'2024-07-24 16:40:49','2024-07-24 16:40:49','','Service 3','','inherit','closed','closed','','299-revision-v1','','','2024-07-24 16:40:49','2024-07-24 16:40:49','',299,'https://victor-quintero.designsfunnelserver.com/?p=307',0,'revision','',0),(308,1,'2024-07-24 16:40:50','2024-07-24 16:40:50',' \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Deck Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n Book Now','Service 3','','inherit','closed','closed','','299-revision-v1','','','2024-07-24 16:40:50','2024-07-24 16:40:50','',299,'https://victor-quintero.designsfunnelserver.com/?p=308',0,'revision','',0),(309,1,'2024-07-24 16:41:32','2024-07-24 16:41:32','','Service 4','','inherit','closed','closed','','300-revision-v1','','','2024-07-24 16:41:32','2024-07-24 16:41:32','',300,'https://victor-quintero.designsfunnelserver.com/?p=309',0,'revision','',0),(310,1,'2024-07-24 16:41:32','2024-07-24 16:41:32',' \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Weed Control

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n Book Now','Service 4','','inherit','closed','closed','','300-revision-v1','','','2024-07-24 16:41:32','2024-07-24 16:41:32','',300,'https://victor-quintero.designsfunnelserver.com/?p=310',0,'revision','',0),(311,1,'2024-07-24 16:42:41','2024-07-24 16:42:41','','Service 5','','inherit','closed','closed','','303-revision-v1','','','2024-07-24 16:42:41','2024-07-24 16:42:41','',303,'https://victor-quintero.designsfunnelserver.com/?p=311',0,'revision','',0),(312,1,'2024-07-24 16:42:41','2024-07-24 16:42:41',' \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Grass Feed

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n Book Now','Service 5','','inherit','closed','closed','','303-revision-v1','','','2024-07-24 16:42:41','2024-07-24 16:42:41','',303,'https://victor-quintero.designsfunnelserver.com/?p=312',0,'revision','',0),(313,1,'2024-07-24 16:43:55','2024-07-24 16:43:55','

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Complete For All Landscape Service And Maintenance

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation \n \n Contact Us\n \n \n \n Watch Intro\n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          About Prestige Luxury Cleanings LLC
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          We Provide Landscaping And Garden Care Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit \n \"gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk\" \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • \n Public Liability Insurance\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • \n Environmentally Friendly\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • \n On Time, Every Time\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • \n Beautiful Garden Designs\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • \n Modern Machinery And Tool\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n More About Us\n \n \"gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w\" \n \"gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68\" \n 0\n +\n Projects Completed\n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Why Choose Us
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          We Have The Perfect Solution For Your Landscape Problems

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Variation Gardening

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Expert Landscapers

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Affordable Price

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Free Consultation

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Our Services
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Providing Services For All Your Residential And Commercial Needs.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lawn Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Driveway Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Deck Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Weed Control

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Grass Feed

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Best Landscaping
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Need Someone To Take Care Your Garden & Lawn?

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Make Appointment & Take Care Your Garden

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Work Process
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          We Complete Every Step Carefully

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Start Consultation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n 01 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Design Installation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n 02 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Start Consturction \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n 03 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Finished Work \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n 04 \n 0\n +\n Years of Experience\n 0\n +\n Projects Completed\n 0\n +\n Happy Customers\n 0\n +\n Expert Landscapers\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Our Projects
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Project We Have Done\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n All Projects\n \n \"Cutting\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Cutting Leaf

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n \"Home\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Home Garden

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n \"Build\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Build Backyard

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Testimonials
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                What They Says About Us

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n \"Regan\n Regan Traynor\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Entrepreneur

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n \"Maisha\n Maisha Dunn\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Entrepreneur

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n \"Reis\n Reis Leonard\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Businessman

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Our Blog
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lates News and Articles

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n ','Home','','inherit','closed','closed','','24-revision-v1','','','2024-07-24 16:43:55','2024-07-24 16:43:55','',24,'https://victor-quintero.designsfunnelserver.com/?p=313',0,'revision','',0),(314,1,'2024-07-24 16:43:56','2024-07-24 16:43:56','

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Complete For All Landscape Service And Maintenance

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation \n \n Contact Us\n \n \n \n Watch Intro\n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      About Prestige Luxury Cleanings LLC
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      We Provide Landscaping And Garden Care Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit \n \"gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk\" \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n Public Liability Insurance\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n Environmentally Friendly\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n On Time, Every Time\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n Beautiful Garden Designs\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n Modern Machinery And Tool\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n \n More About Us\n \n \"gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w\" \n \"gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68\" \n 0\n +\n Projects Completed\n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Why Choose Us
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      We Have The Perfect Solution For Your Landscape Problems

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Variation Gardening

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Expert Landscapers

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Affordable Price

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Free Consultation

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Our Services
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Providing Services For All Your Residential And Commercial Needs.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lawn Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Driveway Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Deck Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Weed Control

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Grass Feed

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Best Landscaping
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Need Someone To Take Care Your Garden & Lawn?

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Make Appointment & Take Care Your Garden

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Work Process
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      We Complete Every Step Carefully

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Start Consultation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n 01 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Design Installation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n 02 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Start Consturction \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n 03 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Finished Work \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n 04 \n 0\n +\n Years of Experience\n 0\n +\n Projects Completed\n 0\n +\n Happy Customers\n 0\n +\n Expert Landscapers\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Our Projects
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Project We Have Done\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n All Projects\n \n \"Cutting\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Cutting Leaf

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n \"Home\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Home Garden

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \"Build\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Build Backyard

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Testimonials
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            What They Says About Us

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n \"Regan\n Regan Traynor\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Entrepreneur

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n \"Maisha\n Maisha Dunn\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Entrepreneur

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n \"Reis\n Reis Leonard\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Businessman

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Our Blog
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lates News and Articles

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n ','Home','','inherit','closed','closed','','24-revision-v1','','','2024-07-24 16:43:56','2024-07-24 16:43:56','',24,'https://victor-quintero.designsfunnelserver.com/?p=314',0,'revision','',0),(315,1,'2024-07-24 16:43:57','2024-07-24 16:43:57','

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Complete For All Landscape Service And Maintenance

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation \n \n Contact Us\n \n \n \n Watch Intro\n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  About Prestige Luxury Cleanings LLC
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  We Provide Landscaping And Garden Care Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit \n \"gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk\" \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • \n Public Liability Insurance\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • \n Environmentally Friendly\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • \n On Time, Every Time\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • \n Beautiful Garden Designs\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • \n Modern Machinery And Tool\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n \n More About Us\n \n \"gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w\" \n \"gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68\" \n 0\n +\n Projects Completed\n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Why Choose Us
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  We Have The Perfect Solution For Your Landscape Problems

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Variation Gardening

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Expert Landscapers

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Affordable Price

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Free Consultation

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Our Services
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Providing Services For All Your Residential And Commercial Needs.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lawn Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Driveway Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Deck Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Weed Control

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Grass Feed

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Best Landscaping
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Need Someone To Take Care Your Garden & Lawn?

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Make Appointment & Take Care Your Garden

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Work Process
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  We Complete Every Step Carefully

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Start Consultation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n 01 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Design Installation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n 02 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Start Consturction \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n 03 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Finished Work \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n 04 \n 0\n +\n Years of Experience\n 0\n +\n Projects Completed\n 0\n +\n Happy Customers\n 0\n +\n Expert Landscapers\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Our Projects
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Project We Have Done\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n All Projects\n \n \"Cutting\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Cutting Leaf

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n \"Home\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Home Garden

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n \"Build\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Build Backyard

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Testimonials
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        What They Says About Us

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \"Regan\n Regan Traynor\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Entrepreneur

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n \"Maisha\n Maisha Dunn\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Entrepreneur

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n \"Reis\n Reis Leonard\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Businessman

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Our Blog
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lates News and Articles

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n ','Home','','inherit','closed','closed','','24-revision-v1','','','2024-07-24 16:43:57','2024-07-24 16:43:57','',24,'https://victor-quintero.designsfunnelserver.com/?p=315',0,'revision','',0),(318,1,'2024-07-24 16:53:49','2024-07-24 16:53:49','

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Complete For All Landscape Service And Maintenance

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation \n \n Contact Us\n \n \n \n Watch Intro\n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              About Prestige Luxury Cleanings LLC
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              We Provide Landscaping And Garden Care Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit \n \"gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk\" \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • \n Public Liability Insurance\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • \n Environmentally Friendly\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • \n On Time, Every Time\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • \n Beautiful Garden Designs\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • \n Modern Machinery And Tool\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n \n More About Us\n \n \"gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w\" \n \"gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68\" \n 0\n +\n Projects Completed\n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Why Choose Us
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              We Have The Perfect Solution For Your Landscape Problems

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Variation Gardening

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Expert Landscapers

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Affordable Price

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Free Consultation

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Our Services
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Providing Services For All Your Residential And Commercial Needs.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lawn Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Driveway Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Deck Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Weed Control

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Grass Feed

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Best Landscaping
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Need Someone To Take Care Your Garden & Lawn?

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Make Appointment & Take Care Your Garden

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Work Process
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              We Complete Every Step Carefully

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Start Consultation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n 01 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Design Installation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n 02 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Start Consturction \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n 03 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Finished Work \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n 04 \n 0\n +\n Years of Experience\n 0\n +\n Projects Completed\n 0\n +\n Happy Customers\n 0\n +\n Expert Landscapers\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Our Projects
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Project We Have Done\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n All Projects\n \n \"Cutting\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Cutting Leaf

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n \"Home\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Home Garden

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n \"Build\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Build Backyard

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Testimonials
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    What They Says About Us

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n \"Regan\n Regan Traynor\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Entrepreneur

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n \"Maisha\n Maisha Dunn\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Entrepreneur

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \"Reis\n Reis Leonard\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Businessman

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Our Blog
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lates News and Articles

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n ','Home','','inherit','closed','closed','','24-revision-v1','','','2024-07-24 16:53:49','2024-07-24 16:53:49','',24,'https://victor-quintero.designsfunnelserver.com/?p=318',0,'revision','',0),(319,1,'2024-07-24 16:53:50','2024-07-24 16:53:50','

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Complete For All Landscape Service And Maintenance

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation \n \n Contact Us\n \n \n \n Watch Intro\n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          About Prestige Luxury Cleanings LLC
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          We Provide Landscaping And Garden Care Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit \n \"gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk\" \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • \n Public Liability Insurance\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • \n Environmentally Friendly\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • \n On Time, Every Time\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • \n Beautiful Garden Designs\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • \n Modern Machinery And Tool\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n More About Us\n \n \"gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w\" \n \"gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68\" \n 0\n +\n Projects Completed\n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Why Choose Us
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          We Have The Perfect Solution For Your Landscape Problems

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Variation Gardening

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Expert Landscapers

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Affordable Price

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Free Consultation

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Our Services
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Providing Services For All Your Residential And Commercial Needs.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lawn Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Driveway Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Deck Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Weed Control

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Grass Feed

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Best Landscaping
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Need Someone To Take Care Your Garden & Lawn?

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Make Appointment & Take Care Your Garden

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Work Process
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          We Complete Every Step Carefully

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Start Consultation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n 01 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Design Installation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n 02 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Start Consturction \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n 03 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Finished Work \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n 04 \n 0\n +\n Years of Experience\n 0\n +\n Projects Completed\n 0\n +\n Happy Customers\n 0\n +\n Expert Landscapers\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Our Projects
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Project We Have Done\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n All Projects\n \n \"Cutting\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Cutting Leaf

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n \"Home\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Home Garden

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n \"Build\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Build Backyard

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Testimonials
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                What They Says About Us

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n \"Regan\n Regan Traynor\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Entrepreneur

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n \"Maisha\n Maisha Dunn\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Entrepreneur

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n \"Reis\n Reis Leonard\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Businessman

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Our Blog
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lates News and Articles

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n ','Home','','inherit','closed','closed','','24-revision-v1','','','2024-07-24 16:53:50','2024-07-24 16:53:50','',24,'https://victor-quintero.designsfunnelserver.com/?p=319',0,'revision','',0),(320,1,'2024-07-24 16:53:51','2024-07-24 16:53:51','

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Complete For All Landscape Service And Maintenance

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation \n \n Contact Us\n \n \n \n Watch Intro\n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      About Prestige Luxury Cleanings LLC
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      We Provide Landscaping And Garden Care Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit \n \"gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk\" \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n Public Liability Insurance\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n Environmentally Friendly\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n On Time, Every Time\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n Beautiful Garden Designs\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n Modern Machinery And Tool\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n \n More About Us\n \n \"gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w\" \n \"gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68\" \n 0\n +\n Projects Completed\n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Why Choose Us
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      We Have The Perfect Solution For Your Landscape Problems

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Variation Gardening

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Expert Landscapers

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Affordable Price

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Free Consultation

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Our Services
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Providing Services For All Your Residential And Commercial Needs.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Grass Feed

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n Book Now \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Weed Control

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n Book Now \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Deck Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n Book Now \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Driveway Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n Book Now \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lawn Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n Book Now \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lawn Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Driveway Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Deck Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Weed Control

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Grass Feed

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Best Landscaping
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Need Someone To Take Care Your Garden & Lawn?

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Make Appointment & Take Care Your Garden

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Work Process
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      We Complete Every Step Carefully

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Start Consultation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n 01 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Design Installation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n 02 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Start Consturction \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n 03 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Finished Work \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n 04 \n 0\n +\n Years of Experience\n 0\n +\n Projects Completed\n 0\n +\n Happy Customers\n 0\n +\n Expert Landscapers\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Our Projects
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Project We Have Done\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n All Projects\n \n \"Cutting\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Cutting Leaf

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n \"Home\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Home Garden

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \"Build\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Build Backyard

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Testimonials
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            What They Says About Us

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n \"Regan\n Regan Traynor\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Entrepreneur

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n \"Maisha\n Maisha Dunn\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Entrepreneur

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n \"Reis\n Reis Leonard\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Businessman

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Our Blog
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lates News and Articles

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n ','Home','','inherit','closed','closed','','24-revision-v1','','','2024-07-24 16:53:51','2024-07-24 16:53:51','',24,'https://victor-quintero.designsfunnelserver.com/?p=320',0,'revision','',0),(321,1,'2024-07-24 16:55:03','2024-07-24 16:55:03','

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Complete For All Landscape Service And Maintenance

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation \n \n Contact Us\n \n \n \n Watch Intro\n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  About Prestige Luxury Cleanings LLC
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  We Provide Landscaping And Garden Care Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit \n \"gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk\" \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • \n Public Liability Insurance\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • \n Environmentally Friendly\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • \n On Time, Every Time\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • \n Beautiful Garden Designs\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • \n Modern Machinery And Tool\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n \n More About Us\n \n \"gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w\" \n \"gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68\" \n 0\n +\n Projects Completed\n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Why Choose Us
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  We Have The Perfect Solution For Your Landscape Problems

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Variation Gardening

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Expert Landscapers

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Affordable Price

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Free Consultation

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Our Services
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Providing Services For All Your Residential And Commercial Needs.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Grass Feed

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet \n Book Now \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Weed Control

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet \n Book Now \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Deck Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet \n Book Now \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Driveway Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet \n Book Now \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lawn Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet \n Book Now \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lawn Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Driveway Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Deck Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Weed Control

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Grass Feed

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Best Landscaping
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Need Someone To Take Care Your Garden & Lawn?

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Make Appointment & Take Care Your Garden

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Work Process
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  We Complete Every Step Carefully

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Start Consultation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n 01 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Design Installation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n 02 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Start Consturction \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n 03 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Finished Work \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n 04 \n 0\n +\n Years of Experience\n 0\n +\n Projects Completed\n 0\n +\n Happy Customers\n 0\n +\n Expert Landscapers\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Our Projects
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Project We Have Done\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n All Projects\n \n \"Cutting\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Cutting Leaf

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n \"Home\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Home Garden

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n \"Build\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Build Backyard

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Testimonials
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        What They Says About Us

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \"Regan\n Regan Traynor\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Entrepreneur

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n \"Maisha\n Maisha Dunn\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Entrepreneur

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n \"Reis\n Reis Leonard\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Businessman

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Our Blog
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lates News and Articles

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n ','Home','','inherit','closed','closed','','24-revision-v1','','','2024-07-24 16:55:03','2024-07-24 16:55:03','',24,'https://victor-quintero.designsfunnelserver.com/?p=321',0,'revision','',0),(322,1,'2024-07-24 16:55:03','2024-07-24 16:55:03','

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Complete For All Landscape Service And Maintenance

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation \n \n Contact Us\n \n \n \n Watch Intro\n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              About Prestige Luxury Cleanings LLC
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              We Provide Landscaping And Garden Care Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit \n \"gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk\" \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • \n Public Liability Insurance\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • \n Environmentally Friendly\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • \n On Time, Every Time\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • \n Beautiful Garden Designs\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • \n Modern Machinery And Tool\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n \n More About Us\n \n \"gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w\" \n \"gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68\" \n 0\n +\n Projects Completed\n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Why Choose Us
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              We Have The Perfect Solution For Your Landscape Problems

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Variation Gardening

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Expert Landscapers

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Affordable Price

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Free Consultation

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Our Services
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Providing Services For All Your Residential And Commercial Needs.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Grass Feed

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet \n Book Now \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Weed Control

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet \n Book Now \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Deck Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet \n Book Now \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Driveway Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet \n Book Now \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lawn Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet \n Book Now \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lawn Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Driveway Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Deck Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Weed Control

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Grass Feed

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Best Landscaping
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Need Someone To Take Care Your Garden & Lawn?

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Make Appointment & Take Care Your Garden

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Work Process
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              We Complete Every Step Carefully

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Start Consultation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n 01 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Design Installation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n 02 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Start Consturction \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n 03 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Finished Work \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n 04 \n 0\n +\n Years of Experience\n 0\n +\n Projects Completed\n 0\n +\n Happy Customers\n 0\n +\n Expert Landscapers\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Our Projects
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Project We Have Done\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n All Projects\n \n \"Cutting\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Cutting Leaf

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n \"Home\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Home Garden

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n \"Build\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Build Backyard

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Testimonials
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    What They Says About Us

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n \"Regan\n Regan Traynor\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Entrepreneur

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n \"Maisha\n Maisha Dunn\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Entrepreneur

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \"Reis\n Reis Leonard\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Businessman

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Our Blog
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lates News and Articles

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n ','Home','','inherit','closed','closed','','24-revision-v1','','','2024-07-24 16:55:03','2024-07-24 16:55:03','',24,'https://victor-quintero.designsfunnelserver.com/?p=322',0,'revision','',0),(323,1,'2024-07-24 16:55:06','2024-07-24 16:55:06','

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Complete For All Landscape Service And Maintenance

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation \n \n Contact Us\n \n \n \n Watch Intro\n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          About Prestige Luxury Cleanings LLC
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          We Provide Landscaping And Garden Care Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit \n \"gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk\" \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • \n Public Liability Insurance\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • \n Environmentally Friendly\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • \n On Time, Every Time\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • \n Beautiful Garden Designs\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • \n Modern Machinery And Tool\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n More About Us\n \n \"gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w\" \n \"gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68\" \n 0\n +\n Projects Completed\n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Why Choose Us
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          We Have The Perfect Solution For Your Landscape Problems

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Variation Gardening

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Expert Landscapers

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Affordable Price

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Free Consultation

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Our Services
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Providing Services For All Your Residential And Commercial Needs.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Grass Feed

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n Book Now \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Weed Control

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n Book Now \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Deck Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n Book Now \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Driveway Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n Book Now \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lawn Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n Book Now \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n View All \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lawn Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Driveway Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Deck Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Weed Control

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Grass Feed

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Best Landscaping
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Need Someone To Take Care Your Garden & Lawn?

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Make Appointment & Take Care Your Garden

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Work Process
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          We Complete Every Step Carefully

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Start Consultation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n 01 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Design Installation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n 02 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Start Consturction \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n 03 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Finished Work \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n 04 \n 0\n +\n Years of Experience\n 0\n +\n Projects Completed\n 0\n +\n Happy Customers\n 0\n +\n Expert Landscapers\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Our Projects
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Project We Have Done\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n All Projects\n \n \"Cutting\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Cutting Leaf

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n \"Home\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Home Garden

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n \"Build\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Build Backyard

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Testimonials
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                What They Says About Us

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n \"Regan\n Regan Traynor\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Entrepreneur

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n \"Maisha\n Maisha Dunn\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Entrepreneur

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n \"Reis\n Reis Leonard\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Businessman

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Our Blog
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lates News and Articles

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n ','Home','','inherit','closed','closed','','24-revision-v1','','','2024-07-24 16:55:06','2024-07-24 16:55:06','',24,'https://victor-quintero.designsfunnelserver.com/?p=323',0,'revision','',0),(324,1,'2024-07-24 18:10:46','2024-07-24 18:10:46',' \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Driveway Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n Book Now','Service 2','','inherit','closed','closed','','297-revision-v1','','','2024-07-24 18:10:46','2024-07-24 18:10:46','',297,'https://victor-quintero.designsfunnelserver.com/?p=324',0,'revision','',0),(325,1,'2024-07-24 18:10:54','2024-07-24 18:10:54',' \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lawn Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n Book Now','service 1','','inherit','closed','closed','','292-revision-v1','','','2024-07-24 18:10:54','2024-07-24 18:10:54','',292,'https://victor-quintero.designsfunnelserver.com/?p=325',0,'revision','',0),(326,1,'2024-07-24 18:11:04','2024-07-24 18:11:04',' \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Deck Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n Book Now','Service 3','','inherit','closed','closed','','299-revision-v1','','','2024-07-24 18:11:04','2024-07-24 18:11:04','',299,'https://victor-quintero.designsfunnelserver.com/?p=326',0,'revision','',0),(327,1,'2024-07-24 18:11:12','2024-07-24 18:11:12',' \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Weed Control

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n Book Now','Service 4','','inherit','closed','closed','','300-revision-v1','','','2024-07-24 18:11:12','2024-07-24 18:11:12','',300,'https://victor-quintero.designsfunnelserver.com/?p=327',0,'revision','',0),(328,1,'2024-07-24 18:11:31','2024-07-24 18:11:31',' \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Grass Feed

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n Book Now','Service 5','','inherit','closed','closed','','303-revision-v1','','','2024-07-24 18:11:31','2024-07-24 18:11:31','',303,'https://victor-quintero.designsfunnelserver.com/?p=328',0,'revision','',0),(329,1,'2024-07-24 18:12:02','2024-07-24 18:12:02',' \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Driveway Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n Book Now','Service 2','','inherit','closed','closed','','297-revision-v1','','','2024-07-24 18:12:02','2024-07-24 18:12:02','',297,'https://victor-quintero.designsfunnelserver.com/?p=329',0,'revision','',0),(330,1,'2024-07-24 18:12:42','2024-07-24 18:12:42',' \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Driveway Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n Book Now','Service 2','','inherit','closed','closed','','297-revision-v1','','','2024-07-24 18:12:42','2024-07-24 18:12:42','',297,'https://victor-quintero.designsfunnelserver.com/?p=330',0,'revision','',0),(331,1,'2024-07-24 18:14:00','2024-07-24 18:14:00',' \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Driveway Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n Book Now','Service 2','','inherit','closed','closed','','297-revision-v1','','','2024-07-24 18:14:00','2024-07-24 18:14:00','',297,'https://victor-quintero.designsfunnelserver.com/?p=331',0,'revision','',0),(332,1,'2024-07-24 18:14:15','2024-07-24 18:14:15',' \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lawn Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n Book Now','service 1','','inherit','closed','closed','','292-revision-v1','','','2024-07-24 18:14:15','2024-07-24 18:14:15','',292,'https://victor-quintero.designsfunnelserver.com/?p=332',0,'revision','',0),(333,1,'2024-07-24 18:14:22','2024-07-24 18:14:22',' \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Deck Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n Book Now','Service 3','','inherit','closed','closed','','299-revision-v1','','','2024-07-24 18:14:22','2024-07-24 18:14:22','',299,'https://victor-quintero.designsfunnelserver.com/?p=333',0,'revision','',0),(334,1,'2024-07-24 18:14:32','2024-07-24 18:14:32',' \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Grass Feed

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n Book Now','Service 5','','inherit','closed','closed','','303-revision-v1','','','2024-07-24 18:14:32','2024-07-24 18:14:32','',303,'https://victor-quintero.designsfunnelserver.com/?p=334',0,'revision','',0),(335,1,'2024-07-24 18:14:34','2024-07-24 18:14:34',' \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Weed Control

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n Book Now','Service 4','','inherit','closed','closed','','300-revision-v1','','','2024-07-24 18:14:34','2024-07-24 18:14:34','',300,'https://victor-quintero.designsfunnelserver.com/?p=335',0,'revision','',0),(336,1,'2024-07-24 18:58:34','2024-07-24 18:58:34','

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Complete For All Landscape Service And Maintenance

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation \n \n Contact Us\n \n \n \n Watch Intro\n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      About Prestige Luxury Cleanings LLC
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      We Provide Landscaping And Garden Care Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit \n \"gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk\" \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n Public Liability Insurance\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n Environmentally Friendly\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n On Time, Every Time\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n Beautiful Garden Designs\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n Modern Machinery And Tool\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n \n More About Us\n \n \"gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w\" \n \"gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68\" \n 0\n +\n Projects Completed\n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Why Choose Us
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      We Have The Perfect Solution For Your Landscape Problems

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Variation Gardening

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Expert Landscapers

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Affordable Price

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Free Consultation

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Our Services
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Providing Services For All Your Residential And Commercial Needs.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Grass Feed

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n Book Now \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Weed Control

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n Book Now \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Deck Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n Book Now \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Driveway Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n Book Now \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lawn Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n Book Now \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n View All \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lawn Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Driveway Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Deck Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Weed Control

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Grass Feed

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Best Landscaping
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Need Someone To Take Care Your Garden & Lawn?

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Make Appointment & Take Care Your Garden

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Work Process
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      We Complete Every Step Carefully

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Start Consultation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n 01 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Design Installation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n 02 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Start Consturction \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n 03 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Finished Work \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n 04 \n 0\n +\n Years of Experience\n 0\n +\n Projects Completed\n 0\n +\n Happy Customers\n 0\n +\n Expert Landscapers\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Our Projects
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Project We Have Done\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n All Projects\n \n \"Cutting\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Cutting Leaf

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n \"Home\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Home Garden

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \"Build\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Build Backyard

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Testimonials
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            What They Says About Us

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n \"Regan\n Regan Traynor\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Entrepreneur

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n \"Maisha\n Maisha Dunn\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Entrepreneur

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n \"Reis\n Reis Leonard\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Businessman

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Our Blog
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lates News and Articles

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n ','Home','','inherit','closed','closed','','24-revision-v1','','','2024-07-24 18:58:34','2024-07-24 18:58:34','',24,'https://victor-quintero.designsfunnelserver.com/?p=336',0,'revision','',0),(337,1,'2024-07-24 18:58:34','2024-07-24 18:58:34','

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Complete For All Landscape Service And Maintenance

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation \n \n Contact Us\n \n \n \n Watch Intro\n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  About Prestige Luxury Cleanings LLC
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  We Provide Landscaping And Garden Care Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit \n \"gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk\" \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • \n Public Liability Insurance\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • \n Environmentally Friendly\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • \n On Time, Every Time\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • \n Beautiful Garden Designs\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • \n Modern Machinery And Tool\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n \n More About Us\n \n \"gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w\" \n \"gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68\" \n 0\n +\n Projects Completed\n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Why Choose Us
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  We Have The Perfect Solution For Your Landscape Problems

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Variation Gardening

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Expert Landscapers

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Affordable Price

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Free Consultation

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Our Services
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Providing Services For All Your Residential And Commercial Needs.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Grass Feed

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet \n Book Now \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Weed Control

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet \n Book Now \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Deck Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet \n Book Now \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Driveway Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet \n Book Now \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lawn Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet \n Book Now \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n View All \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lawn Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Driveway Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Deck Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Weed Control

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Grass Feed

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Best Landscaping
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Need Someone To Take Care Your Garden & Lawn?

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Make Appointment & Take Care Your Garden

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Work Process
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  We Complete Every Step Carefully

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Start Consultation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n 01 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Design Installation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n 02 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Start Consturction \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n 03 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Finished Work \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n 04 \n 0\n +\n Years of Experience\n 0\n +\n Projects Completed\n 0\n +\n Happy Customers\n 0\n +\n Expert Landscapers\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Our Projects
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Project We Have Done\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n All Projects\n \n \"Cutting\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Cutting Leaf

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n \"Home\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Home Garden

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n \"Build\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Build Backyard

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Testimonials
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        What They Says About Us

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \"Regan\n Regan Traynor\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Entrepreneur

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n \"Maisha\n Maisha Dunn\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Entrepreneur

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n \"Reis\n Reis Leonard\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Businessman

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Our Blog
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lates News and Articles

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n ','Home','','inherit','closed','closed','','24-revision-v1','','','2024-07-24 18:58:34','2024-07-24 18:58:34','',24,'https://victor-quintero.designsfunnelserver.com/?p=337',0,'revision','',0),(338,1,'2024-07-24 18:58:36','2024-07-24 18:58:36','

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Complete For All Landscape Service And Maintenance

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation \n \n Contact Us\n \n \n \n Watch Intro\n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              About Prestige Luxury Cleanings LLC
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              We Provide Landscaping And Garden Care Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit \n \"gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk\" \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • \n Public Liability Insurance\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • \n Environmentally Friendly\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • \n On Time, Every Time\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • \n Beautiful Garden Designs\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • \n Modern Machinery And Tool\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n \n More About Us\n \n \"gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w\" \n \"gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68\" \n 0\n +\n Projects Completed\n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Why Choose Us
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              We Have The Perfect Solution For Your Landscape Problems

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Variation Gardening

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Expert Landscapers

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Affordable Price

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Free Consultation

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Our Services
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Providing Services For All Your Residential And Commercial Needs.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n \n \n \n \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Grass Feed

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet \n Book Now \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Weed Control

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet \n Book Now \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Deck Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet \n Book Now \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Driveway Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet \n Book Now \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lawn Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet \n Book Now \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n View All \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lawn Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Driveway Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Deck Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Weed Control

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Grass Feed

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Best Landscaping
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Need Someone To Take Care Your Garden & Lawn?

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Make Appointment & Take Care Your Garden

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Work Process
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              We Complete Every Step Carefully

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Start Consultation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n 01 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Design Installation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n 02 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Start Consturction \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n 03 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Finished Work \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n 04 \n 0\n +\n Years of Experience\n 0\n +\n Projects Completed\n 0\n +\n Happy Customers\n 0\n +\n Expert Landscapers\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Our Projects
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Project We Have Done\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n All Projects\n \n \"Cutting\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Cutting Leaf

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n \"Home\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Home Garden

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n \"Build\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Build Backyard

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Testimonials
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    What They Says About Us

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n \"Regan\n Regan Traynor\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Entrepreneur

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n \"Maisha\n Maisha Dunn\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Entrepreneur

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \"Reis\n Reis Leonard\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Businessman

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Our Blog
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lates News and Articles

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n ','Home','','inherit','closed','closed','','24-revision-v1','','','2024-07-24 18:58:36','2024-07-24 18:58:36','',24,'https://victor-quintero.designsfunnelserver.com/?p=338',0,'revision','',0); INSERT INTO `victorq_posts` VALUES (339,1,'2024-07-24 19:00:45','2024-07-24 19:00:45',' \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lawn Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n Book Now','service 1','','inherit','closed','closed','','292-revision-v1','','','2024-07-24 19:00:45','2024-07-24 19:00:45','',292,'https://victor-quintero.designsfunnelserver.com/?p=339',0,'revision','',0),(340,1,'2024-07-24 19:03:09','2024-07-24 19:03:09',' \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Driveway Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n Book Now','Service 2','','inherit','closed','closed','','297-revision-v1','','','2024-07-24 19:03:09','2024-07-24 19:03:09','',297,'https://victor-quintero.designsfunnelserver.com/?p=340',0,'revision','',0),(341,1,'2024-07-24 19:03:15','2024-07-24 19:03:15',' \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Deck Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n Book Now','Service 3','','inherit','closed','closed','','299-revision-v1','','','2024-07-24 19:03:15','2024-07-24 19:03:15','',299,'https://victor-quintero.designsfunnelserver.com/?p=341',0,'revision','',0),(342,1,'2024-07-24 19:03:22','2024-07-24 19:03:22',' \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Weed Control

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n Book Now','Service 4','','inherit','closed','closed','','300-revision-v1','','','2024-07-24 19:03:22','2024-07-24 19:03:22','',300,'https://victor-quintero.designsfunnelserver.com/?p=342',0,'revision','',0),(343,1,'2024-07-24 19:03:29','2024-07-24 19:03:29',' \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Grass Feed

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n Book Now','Service 5','','inherit','closed','closed','','303-revision-v1','','','2024-07-24 19:03:29','2024-07-24 19:03:29','',303,'https://victor-quintero.designsfunnelserver.com/?p=343',0,'revision','',0),(345,1,'2024-07-24 19:54:04','2024-07-24 19:54:04','','Pressure Wash','','inherit','open','closed','','pressure-wash','','','2024-07-24 19:54:04','2024-07-24 19:54:04','',24,'https://victor-quintero.designsfunnelserver.com/wp-content/uploads/2024/07/Pressure-Wash.jpg',0,'attachment','image/jpeg',0),(346,1,'2024-07-24 19:54:37','2024-07-24 19:54:37','

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Complete For All Landscape Service And Maintenance

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation \n \n Contact Us\n \n \n \n Watch Intro\n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          About Prestige Luxury Cleanings LLC
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          We Provide Landscaping And Garden Care Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit \n \"gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk\" \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • \n Public Liability Insurance\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • \n Environmentally Friendly\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • \n On Time, Every Time\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • \n Beautiful Garden Designs\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • \n Modern Machinery And Tool\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n More About Us\n \n \"gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w\" \n \"gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68\" \n 0\n +\n Projects Completed\n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Why Choose Us
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          We Have The Perfect Solution For Your Landscape Problems

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Variation Gardening

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Expert Landscapers

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Affordable Price

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Free Consultation

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Our Services
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Providing Services For All Your Residential And Commercial Needs.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n \n \n \n \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Grass Feed

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n Book Now \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Weed Control

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n Book Now \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Deck Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n Book Now \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Driveway Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n Book Now \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lawn Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n Book Now \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n View All \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lawn Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Driveway Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Deck Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Weed Control

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Grass Feed

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Best Landscaping
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Need Someone To Take Care Your Garden & Lawn?

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Make Appointment & Take Care Your Garden

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Work Process
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          We Complete Every Step Carefully

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Start Consultation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n 01 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Design Installation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n 02 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Start Consturction \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n 03 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Finished Work \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n 04 \n 0\n +\n Years of Experience\n 0\n +\n Projects Completed\n 0\n +\n Happy Customers\n 0\n +\n Expert Landscapers\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Our Projects
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Project We Have Done\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n All Projects\n \n \"Cutting\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Cutting Leaf

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n \"Home\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Home Garden

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n \"Build\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Build Backyard

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Testimonials
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                What They Says About Us

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n \"Regan\n Regan Traynor\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Entrepreneur

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n \"Maisha\n Maisha Dunn\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Entrepreneur

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n \"Reis\n Reis Leonard\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Businessman

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Our Blog
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lates News and Articles

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n ','Home','','inherit','closed','closed','','24-revision-v1','','','2024-07-24 19:54:37','2024-07-24 19:54:37','',24,'https://victor-quintero.designsfunnelserver.com/?p=346',0,'revision','',0),(347,1,'2024-07-24 19:54:37','2024-07-24 19:54:37','

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Complete For All Landscape Service And Maintenance

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation \n \n Contact Us\n \n \n \n Watch Intro\n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      About Prestige Luxury Cleanings LLC
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      We Provide Landscaping And Garden Care Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit \n \"gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk\" \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n Public Liability Insurance\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n Environmentally Friendly\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n On Time, Every Time\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n Beautiful Garden Designs\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n Modern Machinery And Tool\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n \n More About Us\n \n \"gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w\" \n \"gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68\" \n 0\n +\n Projects Completed\n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Why Choose Us
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      We Have The Perfect Solution For Your Landscape Problems

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Variation Gardening

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Expert Landscapers

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Affordable Price

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Free Consultation

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Our Services
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Providing Services For All Your Residential And Commercial Needs.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n \n \n \n \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Grass Feed

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n Book Now \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Weed Control

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n Book Now \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Deck Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n Book Now \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Driveway Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n Book Now \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lawn Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n Book Now \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n View All \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lawn Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Driveway Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Deck Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Weed Control

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Grass Feed

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Best Landscaping
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Need Someone To Take Care Your Garden & Lawn?

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Make Appointment & Take Care Your Garden

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Work Process
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      We Complete Every Step Carefully

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Start Consultation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n 01 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Design Installation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n 02 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Start Consturction \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n 03 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Finished Work \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n 04 \n 0\n +\n Years of Experience\n 0\n +\n Projects Completed\n 0\n +\n Happy Customers\n 0\n +\n Expert Landscapers\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Our Projects
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Project We Have Done\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n All Projects\n \n \"Cutting\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Cutting Leaf

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n \"Home\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Home Garden

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \"Build\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Build Backyard

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Testimonials
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            What They Says About Us

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n \"Regan\n Regan Traynor\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Entrepreneur

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n \"Maisha\n Maisha Dunn\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Entrepreneur

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n \"Reis\n Reis Leonard\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Businessman

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Our Blog
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lates News and Articles

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n ','Home','','inherit','closed','closed','','24-revision-v1','','','2024-07-24 19:54:37','2024-07-24 19:54:37','',24,'https://victor-quintero.designsfunnelserver.com/?p=347',0,'revision','',0),(348,1,'2024-07-24 19:54:39','2024-07-24 19:54:39','

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  For All LuxuryCleaning And Maintenance Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation \n \n Contact Us\n \n \n \n Watch Intro\n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  About Prestige Luxury Cleanings LLC
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  We Provide Lawn and Driveway Cleaning Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit \n \"gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk\" \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • \n Public Liability Insurance\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • \n Environmentally Friendly\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • \n On Time, Every Time\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • \n Beautiful Garden Designs\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • \n Modern Machinery And Tool\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n \n More About Us\n \n \"gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w\" \n \"gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68\" \n 0\n +\n Projects Completed\n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Why Choose Us
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  We Have The Perfect Solution For Your Lawn and Driveway Problems

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Variation Gardening

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Expert Landscapers

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Affordable Price

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Free Consultation

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Our Services
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Providing Services For All Your Residential And Commercial Needs

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n \n \n \n \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Grass Feed

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet \n Book Now \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Weed Control

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet \n Book Now \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Deck Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet \n Book Now \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Driveway Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet \n Book Now \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lawn Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet \n Book Now \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n View All \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lawn Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Driveway Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Deck Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Weed Control

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Grass Feed

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Best Landscaping
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Need Someone To Take Care Your Lawn and Driveway?

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Make Appointment & Take Care Your Garden

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Work Process
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  We Complete Every Step Carefully

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Start Consultation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n 01 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Design Installation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n 02 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Start Consturction \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n 03 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Finished Work \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n 04 \n 0\n +\n Years of Experience\n 0\n +\n Projects Completed\n 0\n +\n Happy Customers\n 0\n +\n Expert Landscapers\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Our Projects
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Project We Have Done\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n All Projects\n \n \"Cutting\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Cutting Leaf

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n \"Home\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Home Garden

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n \"Build\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Build Backyard

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Testimonials
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        What They Says About Us

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \"Regan\n Regan Traynor\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Entrepreneur

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n \"Maisha\n Maisha Dunn\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Entrepreneur

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n \"Reis\n Reis Leonard\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Businessman

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Our Blog
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lates News and Articles

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n ','Home','','inherit','closed','closed','','24-revision-v1','','','2024-07-24 19:54:39','2024-07-24 19:54:39','',24,'https://victor-quintero.designsfunnelserver.com/?p=348',0,'revision','',0),(349,1,'2024-07-24 20:07:25','2024-07-24 20:07:25','

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              For All LuxuryCleaning And Maintenance Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation \n \n Contact Us\n \n \n \n Watch Intro\n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              About Prestige Luxury Cleanings LLC
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              We Provide Lawn and Driveway Cleaning Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit \n \"gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk\" \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • \n Public Liability Insurance\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • \n Environmentally Friendly\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • \n On Time, Every Time\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • \n Beautiful Garden Designs\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • \n Modern Machinery And Tool\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n \n More About Us\n \n \"gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w\" \n \"gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68\" \n 0\n +\n Projects Completed\n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Why Choose Us
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              We Have The Perfect Solution For Your Lawn and Driveway Problems

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Variation Gardening

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Expert Landscapers

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Affordable Price

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Free Consultation

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Our Services
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Providing Services For All Your Residential And Commercial Needs

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n \n \n \n \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Grass Feed

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet \n Book Now \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Weed Control

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet \n Book Now \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Deck Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet \n Book Now \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Driveway Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet \n Book Now \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lawn Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet \n Book Now \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n View All \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lawn Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Driveway Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Deck Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Weed Control

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Grass Feed

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Best Landscaping
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Need Someone To Take Care Your Lawn and Driveway?

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Make Appointment & Take Care Your Garden

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Work Process
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              We Complete Every Step Carefully

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Start Consultation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n 01 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Design Installation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n 02 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Start Consturction \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n 03 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Finished Work \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n 04 \n 0\n +\n Years of Experience\n 0\n +\n Projects Completed\n 0\n +\n Happy Customers\n 0\n +\n Expert Landscapers\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Our Projects
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Project We Have Done\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n All Projects\n \n \"Cutting\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Cutting Leaf

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n \"Home\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Home Garden

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n \"Build\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Build Backyard

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Testimonials
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    What They Says About Us

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n \"Regan\n Regan Traynor\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Entrepreneur

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n \"Maisha\n Maisha Dunn\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Entrepreneur

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \"Reis\n Reis Leonard\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Businessman

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Our Blog
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lates News and Articles

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n ','Home','','inherit','closed','closed','','24-revision-v1','','','2024-07-24 20:07:25','2024-07-24 20:07:25','',24,'https://victor-quintero.designsfunnelserver.com/?p=349',0,'revision','',0),(350,1,'2024-07-24 20:07:26','2024-07-24 20:07:26','

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          For All LuxuryCleaning And Maintenance Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation \n \n Contact Us\n \n \n \n Watch Intro\n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          About Prestige Luxury Cleanings LLC
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          We Provide Lawn and Driveway Cleaning Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit \n \"gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk\" \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • \n Public Liability Insurance\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • \n Environmentally Friendly\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • \n On Time, Every Time\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • \n Beautiful Garden Designs\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • \n Modern Machinery And Tool\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n More About Us\n \n \"gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w\" \n \"gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68\" \n 0\n +\n Projects Completed\n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Why Choose Us
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          We Have The Perfect Solution For Your Lawn and Driveway Problems

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Variation Gardening

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Expert Landscapers

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Affordable Price

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Free Consultation

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Our Services
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Providing Services For All Your Residential And Commercial Needs

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n \n \n \n \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Grass Feed

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n Book Now \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Weed Control

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n Book Now \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Deck Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n Book Now \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Driveway Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n Book Now \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lawn Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n Book Now \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n View All \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lawn Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Driveway Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Deck Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Weed Control

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Grass Feed

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Best Landscaping
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Need Someone To Take Care Your Lawn and Driveway?

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Make Appointment & Take Care Your Garden

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Work Process
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          We Complete Every Step Carefully

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Start Consultation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n 01 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Design Installation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n 02 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Start Consturction \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n 03 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Finished Work \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n 04 \n 0\n +\n Years of Experience\n 0\n +\n Projects Completed\n 0\n +\n Happy Customers\n 0\n +\n Expert Landscapers\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Our Projects
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Project We Have Done\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n All Projects\n \n \"Cutting\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Cutting Leaf

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n \"Home\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Home Garden

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n \"Build\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Build Backyard

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Testimonials
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                What They Says About Us

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n \"Regan\n Regan Traynor\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Entrepreneur

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n \"Maisha\n Maisha Dunn\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Entrepreneur

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n \"Reis\n Reis Leonard\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Businessman

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Our Blog
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lates News and Articles

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n ','Home','','inherit','closed','closed','','24-revision-v1','','','2024-07-24 20:07:26','2024-07-24 20:07:26','',24,'https://victor-quintero.designsfunnelserver.com/?p=350',0,'revision','',0),(351,1,'2024-07-24 20:07:28','2024-07-24 20:07:28','

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      For All LuxuryCleaning And Maintenance Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation \n \n Contact Us\n \n \n \n Watch Intro\n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      About Prestige Luxury Cleanings LLC
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      We Provide Lawn and Driveway Cleaning Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit \n \"gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk\" \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n Public Liability Insurance\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n Environmentally Friendly\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n On Time, Every Time\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n Beautiful Garden Designs\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n Modern Machinery And Tool\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n \n More About Us\n \n \"gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w\" \n \"gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68\" \n 0\n +\n Projects Completed\n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Why Choose Us
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      We Have The Perfect Solution For Your Lawn and Driveway Problems

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Variation Gardening

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Expert Landscapers

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Affordable Price

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Free Consultation

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Our Services
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Providing Services For All Your Residential And Commercial Needs

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n \n \n \n \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Grass Feed

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n Book Now \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Weed Control

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n Book Now \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Deck Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n Book Now \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Driveway Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n Book Now \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lawn Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n Book Now \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n View All \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lawn Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Driveway Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Deck Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Weed Control

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Grass Feed

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Best Landscaping
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Need Someone To Take Care Your Lawn and Driveway?

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Make Appointment & Take Care Your Garden

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Work Process
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      We Complete Every Step Carefully

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Start Consultation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n 01 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Design Installation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n 02 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Start Consturction \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n 03 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Finished Work \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n 04 \n 0\n +\n Years of Experience\n 0\n +\n Projects Completed\n 0\n +\n Happy Customers\n 0\n +\n Expert Landscapers\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Our Projects
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Project We Have Done\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n All Projects\n \n \"Cutting\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Cutting Leaf

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n \"Home\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Home Garden

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \"Build\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Build Backyard

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Testimonials
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            What They Say About Us

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n \"Regan\n Regan Traynor\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Entrepreneur

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n \"Maisha\n Maisha Dunn\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Entrepreneur

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n \"Reis\n Reis Leonard\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Businessman

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Our Blog
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lates News and Articles

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n ','Home','','inherit','closed','closed','','24-revision-v1','','','2024-07-24 20:07:28','2024-07-24 20:07:28','',24,'https://victor-quintero.designsfunnelserver.com/?p=351',0,'revision','',0),(352,1,'2024-07-24 20:09:28','2024-07-24 20:09:28','

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  For All LuxuryCleaning And Maintenance Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation \n \n Contact Us\n \n \n \n Watch Intro\n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  About Prestige Luxury Cleanings LLC
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  We Provide Lawn and Driveway Cleaning Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit \n \"gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk\" \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • \n Public Liability Insurance\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • \n Environmentally Friendly\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • \n On Time, Every Time\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • \n Beautiful Garden Designs\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • \n Modern Machinery And Tool\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n \n More About Us\n \n \"gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w\" \n \"gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68\" \n 0\n +\n Projects Completed\n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Why Choose Us
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  We Have The Perfect Solution For Your Lawn and Driveway Problems

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Variation Gardening

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Expert Landscapers

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Affordable Price

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Free Consultation

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Our Services
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Providing Services For All Your Residential And Commercial Needs

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n \n \n \n \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Grass Feed

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet \n Book Now \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Weed Control

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet \n Book Now \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Deck Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet \n Book Now \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Driveway Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet \n Book Now \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lawn Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet \n Book Now \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n View All \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lawn Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Driveway Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Deck Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Weed Control

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Grass Feed

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Best Landscaping
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Need Someone To Take Care Your Lawn and Driveway?

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Make Appointment & Take Care Your Garden

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Work Process
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  We Complete Every Step Carefully

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Start Consultation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n 01 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Design Installation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n 02 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Start Consturction \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n 03 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Finished Work \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n 04 \n 0\n +\n Years of Experience\n 0\n +\n Projects Completed\n 0\n +\n Happy Customers\n 0\n +\n Expert Landscapers\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Our Projects
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Project We Have Done\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n All Projects\n \n \"Cutting\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Cutting Leaf

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n \"Home\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Home Garden

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n \"Build\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Build Backyard

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Testimonials
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        What They Say About Us

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \"Regan\n Regan Traynor\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Entrepreneur

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n \"Maisha\n Maisha Dunn\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Entrepreneur

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n \"Reis\n Reis Leonard\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Businessman

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Our Blog
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lates News and Articles

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n ','Home','','inherit','closed','closed','','24-revision-v1','','','2024-07-24 20:09:28','2024-07-24 20:09:28','',24,'https://victor-quintero.designsfunnelserver.com/?p=352',0,'revision','',0),(353,1,'2024-07-24 20:09:28','2024-07-24 20:09:28','

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              For All LuxuryCleaning And Maintenance Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation \n \n Contact Us\n \n \n \n Watch Intro\n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              About Prestige Luxury Cleanings LLC
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              We Provide Lawn and Driveway Cleaning Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit \n \"gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk\" \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • \n Public Liability Insurance\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • \n Environmentally Friendly\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • \n On Time, Every Time\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • \n Beautiful Garden Designs\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • \n Modern Machinery And Tool\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n \n More About Us\n \n \"gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w\" \n \"gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68\" \n 0\n +\n Projects Completed\n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Why Choose Us
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              We Have The Perfect Solution For Your Lawn and Driveway Problems

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Variation Gardening

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Expert Landscapers

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Affordable Price

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Free Consultation

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Our Services
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Providing Services For All Your Residential And Commercial Needs

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n \n \n \n \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Grass Feed

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet \n Book Now \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Weed Control

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet \n Book Now \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Deck Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet \n Book Now \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Driveway Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet \n Book Now \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lawn Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet \n Book Now \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n View All \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lawn Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Driveway Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Deck Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Weed Control

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Grass Feed

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Best Landscaping
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Need Someone To Take Care Your Lawn and Driveway?

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Make Appointment & Take Care Your Garden

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Work Process
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              We Complete Every Step Carefully

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Start Consultation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n 01 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Design Installation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n 02 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Start Consturction \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n 03 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Finished Work \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n 04 \n 0\n +\n Years of Experience\n 0\n +\n Projects Completed\n 0\n +\n Happy Customers\n 0\n +\n Expert Landscapers\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Our Projects
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Project We Have Done\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n All Projects\n \n \"Cutting\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Cutting Leaf

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n \"Home\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Home Garden

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n \"Build\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Build Backyard

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Testimonials
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    What They Say About Us

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n \"Regan\n Regan Traynor\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Entrepreneur

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n \"Maisha\n Maisha Dunn\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Entrepreneur

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \"Reis\n Reis Leonard\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Businessman

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Our Blog
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lates News and Articles

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n ','Home','','inherit','closed','closed','','24-revision-v1','','','2024-07-24 20:09:28','2024-07-24 20:09:28','',24,'https://victor-quintero.designsfunnelserver.com/?p=353',0,'revision','',0),(354,1,'2024-07-24 20:09:30','2024-07-24 20:09:30','

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          For All LuxuryCleaning And Maintenance Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation \n \n Contact Us\n \n \n \n Watch Intro\n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          About Prestige Luxury Cleanings LLC
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          We Provide Lawn and Driveway Cleaning Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit \n \"gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk\" \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • \n Public Liability Insurance\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • \n Environmentally Friendly\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • \n On Time, Every Time\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • \n Beautiful Garden Designs\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • \n Modern Machinery And Tool\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n More About Us\n \n \"gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w\" \n \"gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68\" \n 0\n +\n Projects Completed\n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Why Choose Us
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          We Have The Perfect Solution For Your Lawn and Driveway Problems

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Variation Gardening

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Expert Landscapers

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Affordable Price

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Free Consultation

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Our Services
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Providing Services For All Your Residential And Commercial Needs

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n \n \n \n \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Grass Feed

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n Book Now \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Weed Control

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n Book Now \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Deck Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n Book Now \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Driveway Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n Book Now \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lawn Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n Book Now \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n View All \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lawn Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Driveway Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Deck Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Weed Control

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Grass Feed

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Best Landscaping
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Need Someone To Take Care Your Lawn and Driveway?

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Make Appointment & Take Care Your Garden

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Work Process
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          We Complete Every Step Carefully

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Start Consultation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n 01 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Design Installation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n 02 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Start Consturction \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n 03 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Finished Work \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n 04 \n 0\n +\n Years of Experience\n 0\n +\n Projects Completed\n 0\n +\n Happy Customers\n 0\n +\n Expert Landscapers\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Our Projects
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Project We Have Done\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n All Projects\n \n \"Cutting\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Cutting Leaf

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n \"Home\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Home Garden

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n \"Build\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Build Backyard

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Testimonials
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                What They Say About Us

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n \"Regan\n Regan Traynor\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Entrepreneur

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n \"Maisha\n Maisha Dunn\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Entrepreneur

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n \"Reis\n Reis Leonard\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Businessman

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Our Blog
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lates News and Articles

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n ','Home','','inherit','closed','closed','','24-revision-v1','','','2024-07-24 20:09:30','2024-07-24 20:09:30','',24,'https://victor-quintero.designsfunnelserver.com/?p=354',0,'revision','',0),(355,1,'2024-07-24 20:10:34','2024-07-24 20:10:34','

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      For All LuxuryCleaning And Maintenance Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation \n \n Contact Us\n \n \n \n Watch Intro\n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      About Prestige Luxury Cleanings LLC
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      We Provide Lawn and Driveway Cleaning Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit \n \"gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk\" \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n Public Liability Insurance\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n Environmentally Friendly\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n On Time, Every Time\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n Beautiful Garden Designs\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n Modern Machinery And Tool\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n \n More About Us\n \n \"gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w\" \n \"gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68\" \n 0\n +\n Projects Completed\n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Why Choose Us
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      We Have The Perfect Solution For Your Lawn and Driveway Problems

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Variation Gardening

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Expert Landscapers

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Affordable Price

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Free Consultation

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Our Services
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Providing Services For All Your Residential And Commercial Needs

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n \n \n \n \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Grass Feed

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n Book Now \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Weed Control

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n Book Now \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Deck Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n Book Now \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Driveway Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n Book Now \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lawn Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n Book Now \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n View All \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lawn Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Driveway Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Deck Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Weed Control

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Grass Feed

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Best Landscaping
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Need Someone To Take Care Your Lawn and Driveway?

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Make Appointment & Take Care Your Garden

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Work Process
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      We Complete Every Step Carefully

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Start Consultation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n 01 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Design Installation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n 02 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Start Consturction \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n 03 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Finished Work \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n 04 \n 0\n +\n Years of Experience\n 0\n +\n Projects Completed\n 0\n +\n Happy Customers\n 0\n +\n Expert Landscapers\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Our Projects
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Project We Have Done\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n All Projects\n \n \"Cutting\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Cutting Leaf

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n \"Home\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Home Garden

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \"Build\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Build Backyard

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Testimonials
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            What They Say About Us

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n \"Regan\n Regan Traynor\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Entrepreneur

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n \"Maisha\n Maisha Dunn\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Entrepreneur

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n \"Reis\n Reis Leonard\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Businessman

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Our Blog
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lates News and Articles

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n ','Home','','inherit','closed','closed','','24-revision-v1','','','2024-07-24 20:10:34','2024-07-24 20:10:34','',24,'https://victor-quintero.designsfunnelserver.com/?p=355',0,'revision','',0),(356,1,'2024-07-24 20:10:34','2024-07-24 20:10:34','

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  For All LuxuryCleaning And Maintenance Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation \n \n Contact Us\n \n \n \n Watch Intro\n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  About Prestige Luxury Cleanings LLC
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  We Provide Lawn and Driveway Cleaning Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit \n \"gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk\" \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • \n Public Liability Insurance\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • \n Environmentally Friendly\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • \n On Time, Every Time\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • \n Beautiful Garden Designs\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • \n Modern Machinery And Tool\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n \n More About Us\n \n \"gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w\" \n \"gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68\" \n 0\n +\n Projects Completed\n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Why Choose Us
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  We Have The Perfect Solution For Your Lawn and Driveway Problems

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Variation Gardening

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Expert Landscapers

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Affordable Price

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Free Consultation

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Our Services
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Providing Services For All Your Residential And Commercial Needs

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n \n \n \n \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Grass Feed

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet \n Book Now \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Weed Control

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet \n Book Now \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Deck Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet \n Book Now \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Driveway Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet \n Book Now \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lawn Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet \n Book Now \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n View All \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lawn Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Driveway Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Deck Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Weed Control

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Grass Feed

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Best Landscaping
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Need Someone To Take Care Your Lawn and Driveway?

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Make Appointment & Take Care Your Garden

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Work Process
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  We Complete Every Step Carefully

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Start Consultation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n 01 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Design Installation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n 02 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Start Consturction \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n 03 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Finished Work \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n 04 \n 0\n +\n Years of Experience\n 0\n +\n Projects Completed\n 0\n +\n Happy Customers\n 0\n +\n Expert Landscapers\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Our Projects
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Project We Have Done\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n All Projects\n \n \"Cutting\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Cutting Leaf

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n \"Home\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Home Garden

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n \"Build\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Build Backyard

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Testimonials
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        What They Say About Us

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \"Regan\n Regan Traynor\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Entrepreneur

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n \"Maisha\n Maisha Dunn\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Entrepreneur

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n \"Reis\n Reis Leonard\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Businessman

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Our Blog
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lates News and Articles

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n ','Home','','inherit','closed','closed','','24-revision-v1','','','2024-07-24 20:10:34','2024-07-24 20:10:34','',24,'https://victor-quintero.designsfunnelserver.com/?p=356',0,'revision','',0),(357,1,'2024-07-24 20:10:36','2024-07-24 20:10:36','

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              For All LuxuryCleaning And Maintenance Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation \n \n Contact Us\n \n \n \n Watch Intro\n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              About Prestige Luxury Cleanings LLC
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              We Provide Lawn and Driveway Cleaning Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit \n \"gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk\" \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • \n Public Liability Insurance\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • \n Environmentally Friendly\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • \n On Time, Every Time\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • \n Beautiful Garden Designs\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • \n Modern Machinery And Tool\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n \n More About Us\n \n \"gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w\" \n \"gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68\" \n 0\n +\n Projects Completed\n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Why Choose Us
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              We Have The Perfect Solution For Your Lawn and Driveway Problems

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Variation Gardening

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Expert Landscapers

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Affordable Price

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Free Consultation

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Our Services
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Providing Services For All Your Residential And Commercial Needs

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n \n \n \n \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Grass Feed

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet \n Book Now \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Weed Control

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet \n Book Now \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Deck Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet \n Book Now \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Driveway Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet \n Book Now \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lawn Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet \n Book Now \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n View All \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lawn Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Driveway Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Deck Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Weed Control

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Grass Feed

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Best Landscaping
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Need Someone To Take Care Your Lawn and Driveway?

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Make Appointment & Take Care Your Garden

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Work Process
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              We Complete Every Step Carefully

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Start Consultation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n 01 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Design Installation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n 02 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Start Consturction \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n 03 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Finished Work \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n 04 \n 0\n +\n Years of Experience\n 0\n +\n Projects Completed\n 0\n +\n Happy Customers\n 0\n +\n Expert Landscapers\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Our Projects
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Project We Have Done\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n All Projects\n \n \"Cutting\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Cutting Leaf

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n \"Home\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Home Garden

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n \"Build\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Build Backyard

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Testimonials
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    What They Say About Us

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n \"Regan\n Regan Traynor\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Entrepreneur

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n \"Maisha\n Maisha Dunn\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Entrepreneur

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \"Reis\n Reis Leonard\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Businessman

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Our Blog
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lates News and Articles

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n ','Home','','inherit','closed','closed','','24-revision-v1','','','2024-07-24 20:10:36','2024-07-24 20:10:36','',24,'https://victor-quintero.designsfunnelserver.com/?p=357',0,'revision','',0),(358,1,'2024-07-25 19:25:18','2024-07-25 19:25:18','

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          For All LuxuryCleaning And Maintenance Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation \n \n Contact Us\n \n \n \n Watch Intro\n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          About Prestige Luxury Cleanings LLC
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          We Provide Lawn and Driveway Cleaning Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit \n \"gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk\" \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • \n Public Liability Insurance\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • \n Environmentally Friendly\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • \n On Time, Every Time\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • \n Beautiful Garden Designs\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • \n Modern Machinery And Tool\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n More About Us\n \n \"gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w\" \n \"gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68\" \n 0\n +\n Projects Completed\n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Why Choose Us
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          We Have The Perfect Solution For Your Lawn and Driveway Problems

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Variation Gardening

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Expert Landscapers

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Affordable Price

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Free Consultation

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Our Services
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Providing Services For All Your Residential And Commercial Needs

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n \n \n \n \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Grass Feed

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n Book Now \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Weed Control

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n Book Now \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Deck Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n Book Now \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Driveway Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n Book Now \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lawn Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n Book Now \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n View All \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lawn Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Driveway Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Deck Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Weed Control

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Grass Feed

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Best Landscaping
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Need Someone To Take Care Your Lawn and Driveway?

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Make Appointment & Take Care Your Garden

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Work Process
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          We Complete Every Step Carefully

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Start Consultation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n 01 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Design Installation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n 02 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Start Consturction \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n 03 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Finished Work \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n 04 \n 0\n +\n Years of Experience\n 0\n +\n Projects Completed\n 0\n +\n Happy Customers\n 0\n +\n Expert Landscapers\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Our Projects
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Project We Have Done\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n All Projects\n \n \"Cutting\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Cutting Leaf

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n \"Home\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Home Garden

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n \"Build\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Build Backyard

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Testimonials
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                What They Say About Us

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n \"Regan\n Regan Traynor\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Entrepreneur

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n \"Maisha\n Maisha Dunn\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Entrepreneur

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n \"Reis\n Reis Leonard\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Businessman

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Our Blog
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lates News and Articles

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n ','Home','','inherit','closed','closed','','24-revision-v1','','','2024-07-25 19:25:18','2024-07-25 19:25:18','',24,'https://victor-quintero.designsfunnelserver.com/?p=358',0,'revision','',0),(359,1,'2024-07-25 19:25:18','2024-07-25 19:25:18','

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      For All LuxuryCleaning And Maintenance Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation \n \n Contact Us\n \n \n \n Watch Intro\n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      About Prestige Luxury Cleanings LLC
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      We Provide Lawn and Driveway Cleaning Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit \n \"gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk\" \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n Public Liability Insurance\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n Environmentally Friendly\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n On Time, Every Time\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n Beautiful Garden Designs\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n Modern Machinery And Tool\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n \n More About Us\n \n \"gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w\" \n \"gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68\" \n 0\n +\n Projects Completed\n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Why Choose Us
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      We Have The Perfect Solution For Your Lawn and Driveway Problems

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Variation Gardening

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Expert Landscapers

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Affordable Price

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Free Consultation

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Our Services
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Providing Services For All Your Residential And Commercial Needs

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n \n \n \n \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Grass Feed

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n Book Now \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Weed Control

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n Book Now \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Deck Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n Book Now \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Driveway Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n Book Now \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lawn Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n Book Now \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n View All \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lawn Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Driveway Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Deck Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Weed Control

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Grass Feed

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Best Landscaping
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Need Someone To Take Care Your Lawn and Driveway?

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Make Appointment & Take Care Your Garden

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Work Process
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      We Complete Every Step Carefully

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Start Consultation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n 01 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Design Installation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n 02 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Start Consturction \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n 03 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Finished Work \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n 04 \n 0\n +\n Years of Experience\n 0\n +\n Projects Completed\n 0\n +\n Happy Customers\n 0\n +\n Expert Landscapers\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Our Projects
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Project We Have Done\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n All Projects\n \n \"Cutting\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Cutting Leaf

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n \"Home\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Home Garden

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \"Build\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Build Backyard

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Testimonials
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            What They Say About Us

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n \"Regan\n Regan Traynor\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Entrepreneur

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n \"Maisha\n Maisha Dunn\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Entrepreneur

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n \"Reis\n Reis Leonard\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Businessman

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Our Blog
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lates News and Articles

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n ','Home','','inherit','closed','closed','','24-revision-v1','','','2024-07-25 19:25:18','2024-07-25 19:25:18','',24,'https://victor-quintero.designsfunnelserver.com/?p=359',0,'revision','',0),(360,1,'2024-07-25 19:25:20','2024-07-25 19:25:20','

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  For All LuxuryCleaning And Maintenance Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation \n \n Contact Us\n \n \n \n Watch Intro\n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  About Prestige Luxury Cleanings LLC
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  We Provide Lawn and Driveway Cleaning Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit \n \"gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk\" \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • \n Public Liability Insurance\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • \n Environmentally Friendly\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • \n On Time, Every Time\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • \n Beautiful Garden Designs\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • \n Modern Machinery And Tool\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n \n More About Us\n \n \"gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w\" \n \"gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68\" \n 0\n +\n Projects Completed\n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Why Choose Us
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  We Have The Perfect Solution For Your Lawn and Driveway Problems

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Variation Gardening

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Expert Landscapers

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Affordable Price

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Free Consultation

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Our Services
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Providing Services For All Your Residential And Commercial Needs

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n \n \n \n \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Weed Control

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet \n Book Now \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Deck Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet \n Book Now \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Driveway Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet \n Book Now \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lawn Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet \n Book Now \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n View All \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lawn Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Driveway Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Deck Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Weed Control

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Grass Feed

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Best Landscaping
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Need Someone To Take Care Your Lawn and Driveway?

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Make Appointment & Take Care Your Garden

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Work Process
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  We Complete Every Step Carefully

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Start Consultation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n 01 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Design Installation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n 02 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Start Consturction \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n 03 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Finished Work \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n 04 \n 0\n +\n Years of Experience\n 0\n +\n Projects Completed\n 0\n +\n Happy Customers\n 0\n +\n Expert Landscapers\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Our Projects
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Project We Have Done\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n All Projects\n \n \"Cutting\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Cutting Leaf

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n \"Home\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Home Garden

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n \"Build\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Build Backyard

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Testimonials
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        What They Say About Us

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \"Regan\n Regan Traynor\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Entrepreneur

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n \"Maisha\n Maisha Dunn\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Entrepreneur

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n \"Reis\n Reis Leonard\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Businessman

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Our Blog
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lates News and Articles

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n ','Home','','inherit','closed','closed','','24-revision-v1','','','2024-07-25 19:25:20','2024-07-25 19:25:20','',24,'https://victor-quintero.designsfunnelserver.com/?p=360',0,'revision','',0),(362,1,'2024-07-25 19:27:13','2024-07-25 19:27:13','','9e95ba14a10415ba80a97fb9792d1b71','','inherit','open','closed','','9e95ba14a10415ba80a97fb9792d1b71','','','2024-07-25 19:27:13','2024-07-25 19:27:13','',24,'https://victor-quintero.designsfunnelserver.com/wp-content/uploads/2024/07/9e95ba14a10415ba80a97fb9792d1b71.jpg',0,'attachment','image/jpeg',0),(363,1,'2024-07-25 19:28:04','2024-07-25 19:28:04','','iStock-492496468','','inherit','open','closed','','istock-492496468','','','2024-07-25 19:28:04','2024-07-25 19:28:04','',24,'https://victor-quintero.designsfunnelserver.com/wp-content/uploads/2024/07/iStock-492496468.webp',0,'attachment','image/webp',0),(364,1,'2024-07-25 19:28:19','2024-07-25 19:28:19','

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              For All LuxuryCleaning And Maintenance Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation \n \n Contact Us\n \n \n \n Watch Intro\n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              About Prestige Luxury Cleanings LLC
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              We Provide Lawn and Driveway Cleaning Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit \n \"gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk\" \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • \n Public Liability Insurance\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • \n Environmentally Friendly\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • \n On Time, Every Time\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • \n Beautiful Garden Designs\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • \n Modern Machinery And Tool\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n \n More About Us\n \n \"gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w\" \n \"gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68\" \n 0\n +\n Projects Completed\n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Why Choose Us
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              We Have The Perfect Solution For Your Lawn and Driveway Problems

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Variation Gardening

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Expert Landscapers

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Affordable Price

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Free Consultation

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Our Services
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Providing Services For All Your Residential And Commercial Needs

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n \n \n \n \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Weed Control

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet \n Book Now \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Deck Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet \n Book Now \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Driveway Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet \n Book Now \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lawn Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet \n Book Now \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n View All \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lawn Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Driveway Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Deck Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Weed Control

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Grass Feed

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Best Landscaping
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Need Someone To Take Care Your Lawn and Driveway?

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Make Appointment & Take Care Your Garden

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Work Process
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              We Complete Every Step Carefully

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Start Consultation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n 01 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Design Installation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n 02 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Start Consturction \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n 03 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Finished Work \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n 04 \n 0\n +\n Years of Experience\n 0\n +\n Projects Completed\n 0\n +\n Happy Customers\n 0\n +\n Expert Landscapers\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Our Projects
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Project We Have Done\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n All Projects\n \n \"Cutting\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Cutting Leaf

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n \"Home\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Home Garden

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n \"Build\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Build Backyard

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Testimonials
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    What They Say About Us

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n \"Regan\n Regan Traynor\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Entrepreneur

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n \"Maisha\n Maisha Dunn\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Entrepreneur

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \"Reis\n Reis Leonard\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Businessman

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Our Blog
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lates News and Articles

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n ','Home','','inherit','closed','closed','','24-revision-v1','','','2024-07-25 19:28:19','2024-07-25 19:28:19','',24,'https://victor-quintero.designsfunnelserver.com/?p=364',0,'revision','',0),(365,1,'2024-07-25 19:28:19','2024-07-25 19:28:19','

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          For All LuxuryCleaning And Maintenance Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation \n \n Contact Us\n \n \n \n Watch Intro\n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          About Prestige Luxury Cleanings LLC
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          We Provide Lawn and Driveway Cleaning Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit \n \"gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk\" \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • \n Public Liability Insurance\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • \n Environmentally Friendly\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • \n On Time, Every Time\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • \n Beautiful Garden Designs\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • \n Modern Machinery And Tool\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n More About Us\n \n \"gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w\" \n \"gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68\" \n 0\n +\n Projects Completed\n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Why Choose Us
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          We Have The Perfect Solution For Your Lawn and Driveway Problems

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Variation Gardening

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Expert Landscapers

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Affordable Price

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Free Consultation

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Our Services
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Providing Services For All Your Residential And Commercial Needs

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n \n \n \n \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Weed Control

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n Book Now \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Deck Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n Book Now \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Driveway Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n Book Now \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lawn Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n Book Now \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n View All \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lawn Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Driveway Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Deck Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Weed Control

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Grass Feed

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Best Landscaping
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Need Someone To Take Care Your Lawn and Driveway?

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Make Appointment & Take Care Your Garden

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Work Process
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          We Complete Every Step Carefully

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Start Consultation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n 01 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Design Installation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n 02 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Start Consturction \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n 03 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Finished Work \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n 04 \n 0\n +\n Years of Experience\n 0\n +\n Projects Completed\n 0\n +\n Happy Customers\n 0\n +\n Expert Landscapers\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Our Projects
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Project We Have Done\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n All Projects\n \n \"Cutting\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Cutting Leaf

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n \"Home\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Home Garden

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n \"Build\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Build Backyard

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Testimonials
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                What They Say About Us

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n \"Regan\n Regan Traynor\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Entrepreneur

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n \"Maisha\n Maisha Dunn\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Entrepreneur

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n \"Reis\n Reis Leonard\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Businessman

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Our Blog
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lates News and Articles

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n ','Home','','inherit','closed','closed','','24-revision-v1','','','2024-07-25 19:28:19','2024-07-25 19:28:19','',24,'https://victor-quintero.designsfunnelserver.com/?p=365',0,'revision','',0),(366,1,'2024-07-25 19:28:21','2024-07-25 19:28:21','

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      For All LuxuryCleaning And Maintenance Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim exercitation \n \n Contact Us\n \n \n \n Watch Intro\n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      About Prestige Luxury Cleanings LLC
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      We Provide Lawn and Driveway Cleaning Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit \n \"gardener-and-his-flowers-qrjqfeyw7reajmpyb3zkiw8ubxf3668nb7hkadvadk\" \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n Public Liability Insurance\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n Environmentally Friendly\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n On Time, Every Time\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n Beautiful Garden Designs\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n Modern Machinery And Tool\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n \n More About Us\n \n \"gardener-topiary-job-qrjqfiq9gn1samw9qahk8gi0yv7izb5dz1qfuvam2w\" \n \"gardener-in-newly-build-backyard-garden-qrjqfmhlqfou4m1pso99mrpqgawo8qqmckq3f3mq68\" \n 0\n +\n Projects Completed\n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Why Choose Us
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      We Have The Perfect Solution For Your Lawn and Driveway Problems

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Variation Gardening

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Expert Landscapers

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Affordable Price

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Free Consultation

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet conse adipisci elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Our Services
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Providing Services For All Your Residential And Commercial Needs

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n \n \n \n \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Weed Control

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n Book Now \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Deck Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n Book Now \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Driveway Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n Book Now \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lawn Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n Book Now \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n View All \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lawn Services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Driveway Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Deck Pressure Washing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Weed Control

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Grass Feed

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Best Landscaping
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Need Someone To Take Care Your Lawn and Driveway?

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat dolore magna aliqua \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Make Appointment & Take Care Your Garden

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Work Process
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      We Complete Every Step Carefully

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Start Consultation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n 01 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Design Installation \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n 02 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Start Consturction \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n 03 \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Finished Work \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n 04 \n 0\n +\n Years of Experience\n 0\n +\n Projects Completed\n 0\n +\n Happy Customers\n 0\n +\n Expert Landscapers\n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Our Projects
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Project We Have Done\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n \n All Projects\n \n \"Cutting\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Cutting Leaf

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n \"Home\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Home Garden

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n \"Build\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Build Backyard

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Testimonials
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            What They Say About Us

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n \"Regan\n Regan Traynor\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Entrepreneur

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n \"Maisha\n Maisha Dunn\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Entrepreneur

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua Ut enim ad minim veniam

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n \"Reis\n Reis Leonard\n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Businessman

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Our Blog
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lates News and Articles

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua \n ','Home','','inherit','closed','closed','','24-revision-v1','','','2024-07-25 19:28:21','2024-07-25 19:28:21','',24,'https://victor-quintero.designsfunnelserver.com/?p=366',0,'revision','',0),(367,1,'2025-06-17 17:36:20','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2025-06-17 17:36:20','0000-00-00 00:00:00','',0,'https://victor-quintero.designsfunnelserver.com/?p=367',0,'post','',0); /*!40000 ALTER TABLE `victorq_posts` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `victorq_term_relationships` -- DROP TABLE IF EXISTS `victorq_term_relationships`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `victorq_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 `victorq_term_relationships` -- LOCK TABLES `victorq_term_relationships` WRITE; /*!40000 ALTER TABLE `victorq_term_relationships` DISABLE KEYS */; INSERT INTO `victorq_term_relationships` VALUES (20,3,0),(35,2,0),(44,2,0),(53,2,0),(78,2,0),(83,4,0),(84,4,0),(85,4,0),(86,4,0),(87,4,0),(133,1,0),(134,1,0),(135,1,0),(169,2,0),(292,5,0),(297,5,0),(299,5,0),(300,5,0),(303,5,0); /*!40000 ALTER TABLE `victorq_term_relationships` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `victorq_term_taxonomy` -- DROP TABLE IF EXISTS `victorq_term_taxonomy`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `victorq_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 `victorq_term_taxonomy` -- LOCK TABLES `victorq_term_taxonomy` WRITE; /*!40000 ALTER TABLE `victorq_term_taxonomy` DISABLE KEYS */; INSERT INTO `victorq_term_taxonomy` VALUES (1,1,'category','',0,3),(2,2,'elementor_library_type','',0,5),(3,3,'elementor_library_type','',0,0),(4,4,'nav_menu','',0,5),(5,5,'elementor_library_type','',0,5); /*!40000 ALTER TABLE `victorq_term_taxonomy` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `victorq_termmeta` -- DROP TABLE IF EXISTS `victorq_termmeta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `victorq_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 `victorq_termmeta` -- LOCK TABLES `victorq_termmeta` WRITE; /*!40000 ALTER TABLE `victorq_termmeta` DISABLE KEYS */; /*!40000 ALTER TABLE `victorq_termmeta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `victorq_terms` -- DROP TABLE IF EXISTS `victorq_terms`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `victorq_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 `victorq_terms` -- LOCK TABLES `victorq_terms` WRITE; /*!40000 ALTER TABLE `victorq_terms` DISABLE KEYS */; INSERT INTO `victorq_terms` VALUES (1,'Uncategorized','uncategorized',0),(2,'section','section',0),(3,'header','header',0),(4,'Main Menu','main-menu',0),(5,'page','page',0); /*!40000 ALTER TABLE `victorq_terms` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `victorq_usermeta` -- DROP TABLE IF EXISTS `victorq_usermeta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `victorq_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=35 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `victorq_usermeta` -- LOCK TABLES `victorq_usermeta` WRITE; /*!40000 ALTER TABLE `victorq_usermeta` DISABLE KEYS */; INSERT INTO `victorq_usermeta` VALUES (1,1,'nickname','designsfunnel'),(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,'victorq_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(13,1,'victorq_user_level','10'),(14,1,'dismissed_wp_pointers','theme_editor_notice'),(15,1,'show_welcome_panel','0'),(16,1,'session_tokens','a:1:{s:64:\"d073344cf3023650aa239043f09e030dbef41c7450f9e8b604cd7eae17cee8d8\";a:4:{s:10:\"expiration\";i:1750354577;s:2:\"ip\";s:13:\"103.244.179.4\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.0.0 Safari/537.36\";s:5:\"login\";i:1750181777;}}'),(17,1,'victorq_dashboard_quick_press_last_post_id','367'),(18,1,'community-events-location','a:1:{s:2:\"ip\";s:13:\"103.244.179.0\";}'),(19,1,'closedpostboxes_dashboard','a:0:{}'),(20,1,'metaboxhidden_dashboard','a:7:{i:0;s:13:\"wpmet-stories\";i:1;s:20:\"e-dashboard-overview\";i:2;s:21:\"dashboard_site_health\";i:3;s:19:\"dashboard_right_now\";i:4;s:18:\"dashboard_activity\";i:5;s:21:\"dashboard_quick_press\";i:6;s:17:\"dashboard_primary\";}'),(21,1,'elementor_admin_notices','a:2:{s:20:\"design_not_appearing\";a:2:{s:9:\"is_viewed\";b:1;s:4:\"meta\";a:1:{s:7:\"version\";s:6:\"3.23.2\";}}s:20:\"experiment_promotion\";a:2:{s:9:\"is_viewed\";b:1;s:4:\"meta\";a:0:{}}}'),(22,1,'elementor_introduction','a:3:{s:27:\"ai-get-started-announcement\";b:1;s:20:\"globals_introduction\";b:1;s:6:\"e-apps\";b:1;}'),(23,1,'hfe-popup','dismissed'),(24,1,'header-footer-elementor-rating','delayed-notice'),(25,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\";}'),(26,1,'metaboxhidden_nav-menus','a:2:{i:0;s:28:\"add-post-type-e-landing-page\";i:1;s:12:\"add-post_tag\";}'),(27,1,'victorq_user-settings','editor=tinymce&libraryContent=browse'),(28,1,'victorq_user-settings-time','1721838902'),(29,1,'elementor_dismissed_editor_notices','a:1:{i:0;s:20:\"image_optimizer_hint\";}'),(30,2,'victorq_capabilities','a:1:{s:13:\"administrator\";s:1:\"1\";}'),(31,2,'victorq_user_level','10'),(32,1,'victorq_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-07-24T13:05:11.217Z\";}'),(33,3,'victorq_capabilities','a:1:{s:13:\"administrator\";s:1:\"1\";}'),(34,3,'victorq_user_level','10'); /*!40000 ALTER TABLE `victorq_usermeta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `victorq_users` -- DROP TABLE IF EXISTS `victorq_users`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `victorq_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 `victorq_users` -- LOCK TABLES `victorq_users` WRITE; /*!40000 ALTER TABLE `victorq_users` DISABLE KEYS */; INSERT INTO `victorq_users` VALUES (1,'designsfunnel','$P$BGKK7LftbpQbghFZH/0.OyBiluDDfX0','designsfunnel','designsfunnel@gmail.com','https://victor-quintero.designsfunnelserver.com','2024-07-23 18:31:32','',0,'designsfunnel'),(2,'wp_update-1721822064','a69e7cf331fd0f90a7f1a19b190f025f','wp_update-1721822064','','','1979-01-01 00:00:00','',0,'wp_update-1721822064'),(3,'deleted-7ES6N0Wx','83853657bdf23e2b08b46e24d98fe64c','deleted-7ES6N0Wx','','','1979-01-01 00:00:00','',0,'deleted-7ES6N0Wx'); /*!40000 ALTER TABLE `victorq_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 2025-06-18 21:50:52